24 lines
306 B
C
24 lines
306 B
C
|
#ifndef _ESP32_RGB_H
|
||
|
#define _ESP32_RGB_H
|
||
|
|
||
|
#ifndef PIN_BUTTON_1
|
||
|
#define PIN_BUTTON_1 0
|
||
|
#endif
|
||
|
|
||
|
#ifndef RGB_LED_PIN
|
||
|
#define RGB_LED_PIN 48
|
||
|
#endif
|
||
|
|
||
|
#ifndef RGB_LED_CLASS
|
||
|
#define RGB_LED_CLASS WS2812B
|
||
|
#endif
|
||
|
|
||
|
#ifndef RGB_LED_ORDER
|
||
|
#define RGB_LED_ORDER BGR
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#define LED_DISPLAY
|
||
|
#define USE_LED
|
||
|
|
||
|
#endif
|