mirror of https://github.com/arendst/Tasmota.git
Enable DALI in ESP32 Tasmota
This commit is contained in:
parent
98b04f5029
commit
227e5f24b6
|
@ -702,6 +702,7 @@
|
|||
#define USE_TASMOTA_DISCOVERY // Enable Tasmota Discovery support (+2k code)
|
||||
#undef USE_MQTT_TLS // Disable TLS support won't work as the MQTTHost is not set
|
||||
#undef USE_KNX // Disable KNX IP Protocol Support
|
||||
#undef USE_DALI // Disable support for DALI gateway (+5k code)
|
||||
//#undef USE_WEBSERVER // Disable Webserver
|
||||
#undef USE_ENHANCED_GUI_WIFI_SCAN // Disable wifi scan output with BSSID (+0k5 code)
|
||||
#undef USE_WEBSEND_RESPONSE // Disable command WebSend response message (+1k code)
|
||||
|
@ -867,6 +868,7 @@
|
|||
#undef USE_TELEGRAM // Disable support for Telegram protocol (+49k code, +7.0k mem and +4.8k additional during connection handshake)
|
||||
//#undef USE_MQTT_TLS // Disable TLS support won't work as the MQTTHost is not set
|
||||
#undef USE_KNX // Disable KNX IP Protocol Support
|
||||
#undef USE_DALI // Disable support for DALI gateway (+5k code)
|
||||
//#undef USE_WEBSERVER // Disable Webserver
|
||||
#undef USE_GPIO_VIEWER // Disable GPIO Viewer to see realtime GPIO states (+5k6 code)
|
||||
#undef USE_ENHANCED_GUI_WIFI_SCAN // Disable wifi scan output with BSSID (+0k5 code)
|
||||
|
|
|
@ -60,6 +60,7 @@
|
|||
#undef USE_TELEGRAM // Disable support for Telegram protocol (+49k code, +7.0k mem and +4.8k additional during connection handshake)
|
||||
//#undef USE_MQTT_TLS // Disable TLS support won't work as the MQTTHost is not set
|
||||
#undef USE_KNX // Disable KNX IP Protocol Support
|
||||
#undef USE_DALI // Disable support for DALI gateway (+5k code)
|
||||
//#undef USE_WEBSERVER // Disable Webserver
|
||||
#undef USE_GPIO_VIEWER // Enable GPIO Viewer to see realtime GPIO states (+5k6 code)
|
||||
#undef USE_ENHANCED_GUI_WIFI_SCAN // Disable wifi scan output with BSSID (+0k5 code)
|
||||
|
@ -800,6 +801,7 @@
|
|||
#ifndef USE_KNX
|
||||
#define USE_KNX // Enable KNX IP Protocol Support (+23k code, +3k3 mem)
|
||||
#endif
|
||||
#define USE_DALI // Add support for DALI gateway (+5k code)
|
||||
|
||||
#endif // FIRMWARE_TASMOTA32
|
||||
|
||||
|
|
|
@ -880,13 +880,13 @@
|
|||
//#define USE_VINDRIKTNING // Add support for IKEA VINDRIKTNING particle concentration sensor (+0k6 code)
|
||||
// #define VINDRIKTNING_SHOW_PM1 // Display undocumented/supposed PM1.0 values
|
||||
// #define VINDRIKTNING_SHOW_PM10 // Display undocumented/supposed PM10 values
|
||||
//#define USE_LD2410 // Add support for HLK-LD2410 24GHz smart wave motion sensor (+3k7 code)
|
||||
//#define USE_LD2410S // Add support for HLK-LD2410S 24GHz smart wave motion sensor (+4k6 code)
|
||||
//#define USE_LD2410 // Add support for HLK-LD2410 24GHz smart wave motion sensor (+2k8 code)
|
||||
//#define USE_LOX_O2 // Add support for LuminOx LOX O2 Sensor (+0k8 code)
|
||||
//#define USE_GM861 // Add support for GM861 1D and 2D Bar Code Reader (+1k3 code)
|
||||
// #define GM861_DECODE_AIM // Decode AIM-id (+0k3 code)
|
||||
// #define GM861_HEARTBEAT // Enable heartbeat (+0k2 code)
|
||||
//#define USE_WOOLIIS // Add support for Wooliis Hall Effect Coulometer or Battery capacity monitor (+1k6 code)
|
||||
//#define USE_DALI // Add support for DALI gateway (+5k code)
|
||||
|
||||
// -- Power monitoring sensors --------------------
|
||||
#define USE_ENERGY_SENSOR // Add support for Energy Monitors (+14k code)
|
||||
|
@ -1079,10 +1079,6 @@
|
|||
|
||||
//#define USE_FLOWRATEMETER // Add support for water flow meter YF-DN50 and similary (+1k7 code)
|
||||
|
||||
// #define USE_DALI // Add support for DALI 1 bridge (+2k1 code)
|
||||
#define DALI_IN_INVERT 0 // DALI RX inverted
|
||||
#define DALI_OUT_INVERT 0 // DALI TX inverted
|
||||
|
||||
// -- Thermostat control ----------------------------
|
||||
//#define USE_THERMOSTAT // Add support for Thermostat
|
||||
#define THERMOSTAT_CONTROLLER_OUTPUTS 1 // Number of outputs to be controlled independently
|
||||
|
|
Loading…
Reference in New Issue