mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-24 14:57:16 +00:00
Add DS1624 support
This commit is contained in:
parent
b56ef33412
commit
7295b66310
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user