You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
349 B
17 lines
349 B
// LED
|
|
#define NUM_LEDS 6
|
|
#define LED_PIN 5 // = D1
|
|
#define CHIPSET WS2812B
|
|
#define COLOR_ORDER GRB
|
|
#define BRIGHTNESS 96
|
|
#define FRAMES_PER_SECOND 120
|
|
|
|
// WIFI
|
|
#define wifi_ssid "XXX"
|
|
#define wifi_password "XXX"
|
|
|
|
// MQTT
|
|
#define mqtt_server "XXX"
|
|
#define mqtt_port 1883
|
|
#define mqtt_user "XXX"
|
|
#define mqtt_password "XXX"
|