diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 212e3a7da..a98f96b33 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -79,9 +79,11 @@ See [Tasmota ESP/Arduino library version related issues](https://github.com/aren | USE_LM75AD | - | - | x | x | x | | USE_APDS9960 | - | - | - | - | - | | USE_MCP230xx | - | - | - | - | - | +| USE_PCA9685 | - | - | - | - | - | | USE_MPR121 | - | - | - | - | - | | USE_CCS811 | - | - | - | - | - | | USE_MPU6050 | - | - | - | - | - | +| USE_DS3231 | - | - | - | - | - | | | | | | | | | Feature or Sensor | minimal | classic | sonoff | knx | sensors | | USE_SPI | - | - | - | - | - | @@ -90,9 +92,13 @@ See [Tasmota ESP/Arduino library version related issues](https://github.com/aren | USE_PMS5003 | - | - | x | x | x | | USE_NOVA_SDS | - | - | x | x | x | | USE_PZEM004T | - | - | x | x | x | +| USE_PZEM_AC | - | - | x | x | x | +| USE_PZEM_DC | - | - | x | x | x | +| USE_MCP39F501 | - | - | x | x | x | | USE_SERIAL_BRIDGE | - | - | x | x | x | | USE_SDM120 | - | - | - | - | x | | USE_SDM630 | - | - | - | - | x | +| USE_MP3_PLAYER | - | - | - | - | - | | USE_IR_REMOTE | - | - | x | x | x | | USE_IR_HVAC | - | - | - | - | x | | USE_IR_RECEIVE | - | - | x | x | x | @@ -101,7 +107,11 @@ See [Tasmota ESP/Arduino library version related issues](https://github.com/aren | USE_ARILUX_RF | - | - | x | x | x | | USE_SR04 | - | - | x | x | x | | USE_TM1638 | - | - | - | - | - | +| USE_HX711 | - | - | x | x | x | | USE_RF_FLASH | - | - | x | x | x | +| USE_TUYA_DIMMER | - | - | x | x | x | +| USE_TX20_WIND_SENSOR | - | - | x | x | x | +| USE_DISPLAY | - | - | - | - | - | ## Changelog Version 6.2.1 20180905 diff --git a/sonoff/sonoff_post.h b/sonoff/sonoff_post.h index 3db21b48f..62b3fc88a 100755 --- a/sonoff/sonoff_post.h +++ b/sonoff/sonoff_post.h @@ -148,6 +148,8 @@ void KNX_CB_Action(message_t const &msg, void *arg); #undef USE_TM1638 // Disable support for TM1638 switches copying Switch1 .. Switch8 #undef USE_HX711 // Disable support for HX711 load cell #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_TUYA_DIMMER // Disable support for Tuya Serial Dimmer +#undef USE_TX20_WIND_SENSOR // Disable support for La Crosse TX20 anemometer #undef DEBUG_THEO // Disable debug code #undef USE_DEBUG_DRIVER // Disable debug code #endif // USE_CLASSIC @@ -243,6 +245,8 @@ void KNX_CB_Action(message_t const &msg, void *arg); #undef USE_TM1638 // Disable support for TM1638 switches copying Switch1 .. Switch8 #undef USE_HX711 // Disable support for HX711 load cell #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_TUYA_DIMMER // Disable support for Tuya Serial Dimmer +#undef USE_TX20_WIND_SENSOR // Disable support for La Crosse TX20 anemometer #undef DEBUG_THEO // Disable debug code #undef USE_DEBUG_DRIVER // Disable debug code #endif // BE_MINIMAL