Fabian Schlenz
0e82f94846
* More animations with generalized code to display them. * The hostname will now include a unique id of the ESP. * Effect can now be restricted to a smaller "window". * Clock is now BigClock, SmallClock is now Clock. * Clock shows the time as well as the sinematrix effect. Closes #8. * If the loop takes too long too often, the ESP will automatically be rebooted. Closes #12. * The text drawing methods are now much more generalized. #5.
31 lines
708 B
C
31 lines
708 B
C
//#define DEBUG
|
|
|
|
#define WIFI_SSID "....."
|
|
#define WIFI_PASS "....."
|
|
|
|
#define LED_WIDTH 16
|
|
#define LED_HEIGHT 16
|
|
#define LED_COUNT 256
|
|
#define LED_TYPE WS2812B
|
|
#define DATA_PIN 14
|
|
#define COLOR_ORDER GRB
|
|
|
|
#define NTP_SERVER "pool.ntp.org"
|
|
#define NTP_INTERVAL 60000
|
|
#define NTP_OFFSET 7200
|
|
|
|
#define MQTT_SERVER "....."
|
|
#define MQTT_PORT 1883
|
|
#define MQTT_USER "pitrix"
|
|
#define MQTT_PASS "....."
|
|
#define MQTT_TOPIC_MODE "pitrix/mode"
|
|
#define MQTT_TOPIC_STATUS "pitrix/status"
|
|
#define MQTT_TOPIC_LOG "pitrix/log"
|
|
|
|
#define HOSTNAME "pitrix-%08X"
|
|
#define OTA_STARTUP_DELAY 5 // How many seconds to wait at startup. Set to 0 to disable.
|
|
|
|
#define FPS 50
|
|
#define SHOW_TEXT_DELAY 100
|
|
#define EFFECT_CYCLE_TIME 60000
|