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.
19 lines
380 B
19 lines
380 B
#define SERIAL_SPEED 115200
|
|
|
|
// LED
|
|
#define NUM_LEDS 300
|
|
#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"
|