We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdb67d3 commit fe9be6bCopy full SHA for fe9be6b
.github/workflows/build.yml
@@ -32,4 +32,4 @@ jobs:
32
33
- name: Compile firmware
34
run: |
35
- arduino-cli compile --fqbn esp32:esp32:esp32 ./code/code.ino
+ arduino-cli compile --fqbn esp32:esp32:esp32c3 ./code/code.ino
code/code.ino
@@ -20,6 +20,11 @@
20
#define RXD 4
21
#define MODEM_EN_PIN 5
22
23
+// LED引脚定义(用于通过CI验证,给个假的)
24
+#ifndef LED_BUILTIN
25
+#define LED_BUILTIN 8
26
+#endif
27
+
28
// 推送通道类型
29
enum PushType {
30
PUSH_TYPE_NONE = 0, // 未启用
0 commit comments