File tree 3 files changed +7
-8
lines changed
variants/adafruit_camera_esp32s3
3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 19
19
#define digitalPinToInterrupt (p ) (((p)<48)?(p):-1)
20
20
#define digitalPinHasPWM (p ) (p < 46)
21
21
22
- #define LED_BUILTIN 1
22
+ static const uint8_t PIN_NEOPIXEL = 1 ;
23
+ static const uint8_t NEOPIXEL_PIN = 1 ;
23
24
24
- static const uint8_t PIN_NEOPIXEL = 21 ;
25
-
26
- static const uint8_t TFT_BACKLIGHT = 41 ;
25
+ //static const uint8_t TFT_BACKLIGHT = 41;
27
26
static const uint8_t TFT_DC = 40 ;
28
27
static const uint8_t TFT_CS = 39 ;
29
28
static const uint8_t TFT_RESET = 38 ;
30
29
static const uint8_t TFT_RST = 38 ;
31
30
32
- static const uint8_t SD_CS = 2 ;
33
- static const uint8_t SD_CHIP_SELECT = 2 ;
34
- static const uint8_t SPEAKER = 45 ;
31
+ static const uint8_t SD_CS = 48 ;
32
+ static const uint8_t SD_CHIP_SELECT = 48 ;
33
+ static const uint8_t SPEAKER = 41 ;
35
34
36
35
static const uint8_t SDA = 33 ;
37
36
static const uint8_t SCL = 34 ;
38
37
39
- static const uint8_t SS = 39 ;
38
+ static const uint8_t SS = 48 ;
40
39
static const uint8_t MOSI = 35 ;
41
40
static const uint8_t SCK = 36 ;
42
41
static const uint8_t MISO = 37 ;
You can’t perform that action at this time.
0 commit comments