Add DS1624 support

This commit is contained in:
Theo Arends 2019-12-28 10:42:00 +01:00
parent b56ef33412
commit 7295b66310
3 changed files with 7 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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