diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 16e5d63c2..e3b1e0fb4 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -50,13 +50,13 @@ The following binary downloads have been compiled with ESP8266/Arduino library c [Complete list](BUILDS.md) of available feature and sensors. -For merge for Changelog: -- Add support for DS1624, DS1621 Temperature sensor by Leonid Myravjev ## Changelog ### Version 8.1.0.1 +- Change Lights: simplified gamma correction and 10 bits internal computation - Fix Sonoff Bridge, Sc, L1, iFan03 and CSE7766 serial interface to forced speed, config and disable logging - Fix commands ``Display`` and ``Counter`` from overruling command processing (#7322) - Add SerialConfig to ``Status 1`` - Add WifiPower to ``Status 5`` +- Add support for DS1624, DS1621 Temperature sensor by Leonid Myravjev diff --git a/tasmota/CHANGELOG.md b/tasmota/CHANGELOG.md index 077384325..530b8c198 100644 --- a/tasmota/CHANGELOG.md +++ b/tasmota/CHANGELOG.md @@ -2,11 +2,12 @@ ### 8.1.0.1 20191225 +- Change Lights: simplified gamma correction and 10 bits internal computation - Fix Sonoff Bridge, Sc, L1, iFan03 and CSE7766 serial interface to forced speed, config and disable logging - Fix commands ``Display`` and ``Counter`` from overruling command processing (#7322) - Add SerialConfig to ``Status 1`` - Add WifiPower to ``Status 5`` -- Change Lights: simplified gamma correction and 10 bits internal computation +- Add support for DS1624, DS1621 Temperature sensor by Leonid Myravjev ## Released diff --git a/tasmota/support_features.ino b/tasmota/support_features.ino index dcc24de0b..696e5ee5d 100644 --- a/tasmota/support_features.ino +++ b/tasmota/support_features.ino @@ -492,7 +492,9 @@ void GetFeatures(void) #ifdef USE_DHT12 feature5 |= 0x00100000; #endif -// feature5 |= 0x00200000; +#ifdef USE_DS1624 + feature5 |= 0x00200000; +#endif #ifdef USE_GPS feature5 |= 0x00400000; #endif