File tree 1 file changed +7
-7
lines changed
variants/cezerio_dev_esp32c6
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 13
13
#define PIN_RGB_LED 3
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
- #define BUILTIN_LED LED_BUILTIN // backward compatibility
17
- #define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
16
+ #define BUILTIN_LED LED_BUILTIN // backward compatibility
17
+ #define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
18
18
// RGB_BUILTIN and RGB_BRIGHTNESS can be used in new Arduino API rgbLedWrite()
19
- #define RGB_BUILTIN LED_BUILTIN
20
- #define RGBLED LED_BUILTIN
19
+ #define RGB_BUILTIN LED_BUILTIN
20
+ #define RGBLED LED_BUILTIN
21
21
#define RGB_BRIGHTNESS 64
22
22
23
23
static const uint8_t BUT_BUILTIN = 9 ;
24
- #define BUILTIN_BUT BUT_BUILTIN // backward compatibility
25
- #define BUT_BUILTIN BUT_BUILTIN // allow testing #ifdef BUT_BUILTIN
26
- #define BOOT BUT_BUILTIN
24
+ #define BUILTIN_BUT BUT_BUILTIN // backward compatibility
25
+ #define BUT_BUILTIN BUT_BUILTIN // allow testing #ifdef BUT_BUILTIN
26
+ #define BOOT BUT_BUILTIN
27
27
28
28
static const uint8_t TX = 16 ;
29
29
static const uint8_t RX = 17 ;
You can’t perform that action at this time.
0 commit comments