File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
variants/fri3d_2024_esp32s3 Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 14
14
// Some boards have too low voltage on this pin (board design bug)
15
15
// Use different pin with 3V and connect with 48
16
16
// and change this setup for the chosen pin (for example 38)
17
- static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT + 48 ;
17
+ static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT + 7 ;
18
18
#define BUILTIN_LED LED_BUILTIN // backward compatibility
19
19
#define LED_BUILTIN LED_BUILTIN
20
20
#define RGB_BUILTIN LED_BUILTIN
@@ -27,13 +27,13 @@ static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT+48;
27
27
static const uint8_t TX = 43 ;
28
28
static const uint8_t RX = 44 ;
29
29
30
- static const uint8_t SDA = 8 ;
31
- static const uint8_t SCL = 9 ;
30
+ static const uint8_t SDA = 9 ;
31
+ static const uint8_t SCL = 18 ;
32
32
33
- static const uint8_t SS = 10 ;
34
- static const uint8_t MOSI = 11 ;
35
- static const uint8_t MISO = 13 ;
36
- static const uint8_t SCK = 12 ;
33
+ static const uint8_t SS = 14 ;
34
+ static const uint8_t MOSI = 6 ;
35
+ static const uint8_t MISO = 8 ;
36
+ static const uint8_t SCK = 7 ;
37
37
38
38
static const uint8_t A0 = 1 ;
39
39
static const uint8_t A1 = 2 ;
You can’t perform that action at this time.
0 commit comments