We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97dcea2 commit 18832bbCopy full SHA for 18832bb
variants/m5stack_timer_cam/pins_arduino.h
@@ -11,12 +11,20 @@
11
#define digitalPinToInterrupt(p) (((p)<40)?(p):-1)
12
#define digitalPinHasPWM(p) (p < 34)
13
14
+static const uint8_t LED_BUILTIN = 2;
15
+#define BUILTIN_LED LED_BUILTIN // backward compatibility
16
+
17
static const uint8_t TX = 1;
18
static const uint8_t RX = 3;
19
20
static const uint8_t SDA = 4;
21
static const uint8_t SCL = 13;
22
23
+static const uint8_t SS = 5;
24
+static const uint8_t MOSI = 23;
25
+static const uint8_t MISO = 19;
26
+static const uint8_t SCK = 18;
27
28
static const uint8_t G23 = 23;
29
static const uint8_t G25 = 25;
30
static const uint8_t G27 = 27;
0 commit comments