mirror of https://github.com/arendst/Tasmota.git
parent
fc7c1ac6b7
commit
26d60e5dd7
|
@ -81,6 +81,7 @@ Module | Description
|
|||
57 SK03 Outdoor | SK03 Outdoor Wifi Smart Switch with Energy Monitoring
|
||||
58 PS-16-DZ | PS-16-DZ Wifi dimmer for Incandescent Lights and Led
|
||||
59 Teckin US | Teckin US and ZooZee SA102 Wifi Smart Switch with Energy Monitoring
|
||||
60 Manzoku strip | Manzoku Wifi Smart Power Strip with four Relays
|
||||
|
||||
## Provided Binary Downloads
|
||||
The following binary downloads have been compiled with ESP8266/Arduino library core version **2.4.2** patched with the Alexa fix.
|
||||
|
@ -97,8 +98,8 @@ The following binary downloads have been compiled with ESP8266/Arduino library c
|
|||
|
||||
| Feature or Sensor | minimal | basic | classic | sonoff | knx | sensors | Remarks
|
||||
|--------------------------------|---------|-------|---------|--------|------|---------|--------
|
||||
| ESP/Arduino lib v2.3.0 | 343k | 425k | 484k | 490k | 508k | 517k |
|
||||
| ESP/Arduino lib v2.4.2 | 371k | 449k | 510k | 522k | 538k | 549k |
|
||||
| ESP/Arduino lib v2.3.0 | 346k | 429k | 482k | 504k | 522k | 535k |
|
||||
| ESP/Arduino lib v2.4.2 | 366k | 446k | 496k | 522k | 538k | 551k |
|
||||
| | | | | | | |
|
||||
| MY_LANGUAGE en-GB | x | x | x | x | x | x |
|
||||
| MQTT_LIBRARY_TYPE PUBSUBCLIENT | x | x | x | x | x | x |
|
||||
|
@ -106,7 +107,7 @@ The following binary downloads have been compiled with ESP8266/Arduino library c
|
|||
| USE_SMARTCONFIG | - | - | x | - | - | - | SmartConfig
|
||||
| USE_ARDUINO_OTA | - | - | - | - | - | - |
|
||||
| USE_DOMOTICZ | - | - | x | x | x | x |
|
||||
| USE_HOME_ASSISTANT | - | - | x | x | x | x |
|
||||
| USE_HOME_ASSISTANT | - | - | - | x | x | x |
|
||||
| USE_MQTT_TLS | - | - | - | - | - | - |
|
||||
| USE_KNX | - | - | - | - | x | - |
|
||||
| USE_WEBSERVER | x | x | x | x | x | x | WifiManager
|
||||
|
@ -165,6 +166,8 @@ The following binary downloads have been compiled with ESP8266/Arduino library c
|
|||
| USE_SDM630 | - | - | - | - | - | x |
|
||||
| USE_MP3_PLAYER | - | - | - | - | - | x |
|
||||
| USE_TUYA_DIMMER | - | x | - | x | x | x |
|
||||
| USE_ARMTRONIX_DIMMERS | - | x | - | x | x | x |
|
||||
| USE_PS_16_DZ | - | x | - | x | x | x |
|
||||
| USE_IR_REMOTE | - | - | - | x | x | x |
|
||||
| USE_IR_HVAC | - | - | - | - | - | x |
|
||||
| USE_IR_RECEIVE | - | - | - | x | x | x |
|
||||
|
|
|
@ -133,7 +133,7 @@ void ESPKNXIP::send_2byte_float(address_t const &receiver, knx_command_type_t ct
|
|||
++e;
|
||||
for (; v > 2047.0f; v /= 2)
|
||||
++e;
|
||||
long m = round(v) & 0x7FF;
|
||||
long m = (long)round(v) & 0x7FF;
|
||||
short msb = (short) (e << 3 | m >> 8);
|
||||
if (val < 0.0f)
|
||||
msb |= 0x80;
|
||||
|
|
|
@ -365,7 +365,7 @@
|
|||
#define USE_TUYA_DIMMER // Add support for Tuya Serial Dimmer
|
||||
#define TUYA_DIMMER_ID 0 // Default dimmer Id
|
||||
#define USE_ARMTRONIX_DIMMERS // Add support for Armtronix Dimmers (+1k4 code)
|
||||
#define USE_PS_16_DZ // ADD support for PS-16-DZ Dimmer
|
||||
#define USE_PS_16_DZ // Add support for PS-16-DZ Dimmer
|
||||
|
||||
// Power monitoring sensors -----------------------
|
||||
#define USE_PZEM004T // Add support for PZEM004T Energy monitor (+2k code)
|
||||
|
|
|
@ -132,6 +132,9 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
#define USE_RF_FLASH // Add support for flashing the EFM8BB1 chip on the Sonoff RF Bridge. C2CK must be connected to GPIO4, C2D to GPIO5 on the PCB (+3k code)
|
||||
#define USE_TX20_WIND_SENSOR // Add support for La Crosse TX20 anemometer (+2k code)
|
||||
#define USE_RC_SWITCH // Add support for RF transceiver using library RcSwitch (+2k7 code, 460 iram)
|
||||
#define USE_RF_SENSOR // Add support for RF sensor receiver (434MHz or 868MHz) (+0k8 code)
|
||||
// #define USE_THEO_V2 // Add support for decoding Theo V2 sensors as documented on https://sidweb.nl using 434MHz RF sensor receiver (+1k4 code)
|
||||
#define USE_ALECTO_V2 // Add support for decoding Alecto V2 sensors like ACH2010, WS3000 and DKW2012 using 868MHz RF sensor receiver (+1k7 code)
|
||||
#endif // USE_SENSORS
|
||||
|
||||
/*********************************************************************************************\
|
||||
|
@ -153,6 +156,8 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
#undef MQTT_LIBRARY_TYPE
|
||||
#define MQTT_LIBRARY_TYPE MQTT_PUBSUBCLIENT // Use PubSubClient library
|
||||
#undef USE_ARDUINO_OTA // Disable support for Arduino OTA
|
||||
//#undef USE_DOMOTICZ // Disable Domoticz
|
||||
#undef USE_HOME_ASSISTANT // Disable Home Assistant
|
||||
#undef USE_KNX // Disable KNX IP Protocol Support
|
||||
#undef USE_CUSTOM // Disable Custom features
|
||||
#undef USE_TIMERS // Disable support for up to 16 timers
|
||||
|
@ -168,11 +173,14 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
#undef USE_PZEM004T // Disable PZEM004T energy sensor
|
||||
#undef USE_PZEM_AC // Disable PZEM014,016 Energy monitor
|
||||
#undef USE_PZEM_DC // Disable PZEM003,017 Energy monitor
|
||||
#undef USE_MCP39F501 // Disable support for MCP39F501 Energy monitor as used in Shelly 2 (+3k1 code)
|
||||
#undef USE_SERIAL_BRIDGE // Disable support for software Serial Bridge
|
||||
#undef USE_SDM120 // Disable support for Eastron SDM120-Modbus energy meter
|
||||
#undef USE_SDM630 // Disable support for Eastron SDM630-Modbus energy meter
|
||||
#undef USE_MP3_PLAYER // Disable DFPlayer Mini MP3 Player RB-DFR-562 commands: play, volume and stop
|
||||
#undef USE_TUYA_DIMMER // Disable support for Tuya Serial Dimmer
|
||||
#undef USE_ARMTRONIX_DIMMERS // Disable support for Armtronix Dimmers (+1k4 code)
|
||||
#undef USE_PS_16_DZ // Disable support for PS-16-DZ Dimmer
|
||||
#undef USE_IR_REMOTE // Disable IR remote commands using library IRremoteESP8266 and ArduinoJson
|
||||
#undef USE_IR_RECEIVE // Disable support for IR receiver
|
||||
#undef USE_ARILUX_RF // Disable support for Arilux RF remote controller
|
||||
|
@ -182,6 +190,7 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
#undef USE_RF_FLASH // Disable support for flashing the EFM8BB1 chip on the Sonoff RF Bridge. C2CK must be connected to GPIO4, C2D to GPIO5 on the PCB
|
||||
#undef USE_TX20_WIND_SENSOR // Disable support for La Crosse TX20 anemometer
|
||||
#undef USE_RC_SWITCH // Disable support for RF transceiver using library RcSwitch
|
||||
#undef USE_RF_SENSOR // Disable support for RF sensor receiver (434MHz or 868MHz) (+0k8 code)
|
||||
#undef DEBUG_THEO // Disable debug code
|
||||
#undef USE_DEBUG_DRIVER // Disable debug code
|
||||
#endif // USE_CLASSIC
|
||||
|
@ -214,6 +223,8 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
|
||||
#undef USE_ENERGY_SENSOR // Disable energy sensors (-14k code)
|
||||
#undef USE_EMULATION // Disable Belkin WeMo and Hue Bridge emulation for Alexa (-16k code, -2k mem)
|
||||
#undef USE_DOMOTICZ // Disable Domoticz
|
||||
#undef USE_HOME_ASSISTANT // Disable Home Assistant
|
||||
|
||||
#define USE_I2C // I2C using library wire (+10k code, 0k2 mem, 124 iram)
|
||||
#define USE_DISPLAY // Add I2C Display Support (+2k code)
|
||||
|
@ -224,6 +235,7 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
|
||||
#define USE_SPI // Hardware SPI using GPIO12(MISO), GPIO13(MOSI) and GPIO14(CLK) in addition to two user selectable GPIOs(CS and DC)
|
||||
#define USE_DISPLAY_ILI9341 // [DisplayModel 4] Enable ILI9341 Tft 480x320 display (+19k code)
|
||||
#define USE_DISPLAY_EPAPER_29 // [DisplayModel 5] Enable e-paper 2.9 inch display (+19k code)
|
||||
|
||||
#undef USE_ARILUX_RF // Remove support for Arilux RF remote controller (-0k8 code, 252 iram (non 2.3.0))
|
||||
#undef USE_RF_FLASH // Remove support for flashing the EFM8BB1 chip on the Sonoff RF Bridge. C2CK must be connected to GPIO4, C2D to GPIO5 on the PCB (-3k code)
|
||||
|
@ -283,6 +295,8 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
#undef USE_SDM630 // Disable support for Eastron SDM630-Modbus energy meter
|
||||
#undef USE_MP3_PLAYER // Disable DFPlayer Mini MP3 Player RB-DFR-562 commands: play, volume and stop
|
||||
//#undef USE_TUYA_DIMMER // Disable support for Tuya Serial Dimmer
|
||||
#undef USE_ARMTRONIX_DIMMERS // Disable support for Armtronix Dimmers (+1k4 code)
|
||||
#undef USE_PS_16_DZ // Disable support for PS-16-DZ Dimmer
|
||||
#undef USE_PZEM004T // Disable PZEM004T energy sensor
|
||||
#undef USE_PZEM_AC // Disable PZEM014,016 Energy monitor
|
||||
#undef USE_PZEM_DC // Disable PZEM003,017 Energy monitor
|
||||
|
@ -296,6 +310,7 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
#undef USE_RF_FLASH // Disable support for flashing the EFM8BB1 chip on the Sonoff RF Bridge. C2CK must be connected to GPIO4, C2D to GPIO5 on the PCB
|
||||
#undef USE_TX20_WIND_SENSOR // Disable support for La Crosse TX20 anemometer
|
||||
#undef USE_RC_SWITCH // Disable support for RF transceiver using library RcSwitch
|
||||
#undef USE_RF_SENSOR // Disable support for RF sensor receiver (434MHz or 868MHz) (+0k8 code)
|
||||
#undef DEBUG_THEO // Disable debug code
|
||||
#undef USE_DEBUG_DRIVER // Disable debug code
|
||||
#endif // USE_BASIC
|
||||
|
@ -342,6 +357,8 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
#undef USE_SDM630 // Disable support for Eastron SDM630-Modbus energy meter
|
||||
#undef USE_MP3_PLAYER // Disable DFPlayer Mini MP3 Player RB-DFR-562 commands: play, volume and stop
|
||||
#undef USE_TUYA_DIMMER // Disable support for Tuya Serial Dimmer
|
||||
#undef USE_ARMTRONIX_DIMMERS // Disable support for Armtronix Dimmers (+1k4 code)
|
||||
#undef USE_PS_16_DZ // Disable support for PS-16-DZ Dimmer
|
||||
#undef USE_PZEM004T // Disable PZEM004T energy sensor
|
||||
#undef USE_PZEM_AC // Disable PZEM014,016 Energy monitor
|
||||
#undef USE_PZEM_DC // Disable PZEM003,017 Energy monitor
|
||||
|
@ -355,6 +372,7 @@ void KNX_CB_Action(message_t const &msg, void *arg);
|
|||
#undef USE_RF_FLASH // Disable support for flashing the EFM8BB1 chip on the Sonoff RF Bridge. C2CK must be connected to GPIO4, C2D to GPIO5 on the PCB
|
||||
#undef USE_TX20_WIND_SENSOR // Disable support for La Crosse TX20 anemometer
|
||||
#undef USE_RC_SWITCH // Disable support for RF transceiver using library RcSwitch
|
||||
#undef USE_RF_SENSOR // Disable support for RF sensor receiver (434MHz or 868MHz) (+0k8 code)
|
||||
#undef DEBUG_THEO // Disable debug code
|
||||
#undef USE_DEBUG_DRIVER // Disable debug code
|
||||
#endif // BE_MINIMAL
|
||||
|
|
Loading…
Reference in New Issue