lumini_p30_control/firmware/config.h

22 lines
927 B
C
Raw Normal View History

2023-04-24 20:26:49 +02:00
#define USE_STATIC_IP //! uncomment to enable Static IP Adress
#define SERIAL_BAUD_RATE 115200
#define light_name "Dimmable Hue Light" //default light name
2023-04-25 14:32:42 +02:00
#define LIGHTS_COUNT 4 // do not modify because luminie p30 only has 4 channel, never set above 80
2023-04-24 20:26:49 +02:00
2023-04-25 14:32:42 +02:00
#define EEPROM_LAST_STATE_STARTUP_ADDRESS 0 // startup behavior is used for all lights
#define EEPROM_SCENE_ADDRESS 1 // scene is used for all of the lights
#define EEPROM_TIMING_CONTROL_ENABLED_ADDRESS 2
#define EEPROM_DYNAMIC_IP_ADDRESS 3
#define EEPROM_LAST_STATE_ADDRESS 4 // the first "last state" information for the first light
#define EEPROM_TIMING_DATA_ADDRESS (EEPROM_LAST_STATE_ADDRESS + LIGHTS_COUNT) // Stored data date per light ELE_USED; HH; MM; CH1; CH2; CH3; CH4;
2023-04-24 20:26:49 +02:00
2023-04-25 14:32:42 +02:00
#define TIME_CHECK_INTERVAL_MS (10000UL) // 600000
#define MY_NTP_SERVER "de.pool.ntp.org"
#define DISABLE_WEB_CONTROL