File tree 1 file changed +6
-6
lines changed
variants/cezerio_mini_dev_esp32c6
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 10
10
#define USB_PRODUCT "cezerio mini dev ESP32C6"
11
11
#define USB_SERIAL ""
12
12
13
- #define PIN_RGB_LED 15
13
+ #define PIN_RGB_LED 20
14
14
// BUILTIN_LED can be used in new Arduino API digitalWrite() like in Blink.ino
15
15
static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT + PIN_RGB_LED ;
16
16
#define BUILTIN_LED LED_BUILTIN // backward compatibility
@@ -28,12 +28,12 @@ static const uint8_t BUT_BUILTIN = 9;
28
28
static const uint8_t TX = 16 ;
29
29
static const uint8_t RX = 17 ;
30
30
31
- static const uint8_t SDA = 8 ;
32
- static const uint8_t SCL = 7 ;
31
+ static const uint8_t SDA = 22 ;
32
+ static const uint8_t SCL = 23 ;
33
33
34
34
static const uint8_t SS = 14 ;
35
- static const uint8_t MOSI = 22 ;
36
- static const uint8_t MISO = 23 ;
35
+ static const uint8_t MOSI = 18 ;
36
+ static const uint8_t MISO = 19 ;
37
37
static const uint8_t SCK = 21 ;
38
38
39
39
static const uint8_t A0 = 0 ;
@@ -42,6 +42,6 @@ static const uint8_t A2 = 2;
42
42
static const uint8_t A3 = 3 ;
43
43
static const uint8_t A6 = 6 ;
44
44
45
- static const uint8_t MATRIX = 8 ;
45
+ static const uint8_t MATRIX = 4 ;
46
46
47
47
#endif /* Pins_Arduino_h */
You can’t perform that action at this time.
0 commit comments