mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-27 20:56:35 +00:00
Add support for EZO PRS sensors
Add support for EZO PRS sensors by Christopher Tremblay (#9659)
This commit is contained in:
parent
8cc11c89ae
commit
6f7a20e2ec
@ -119,6 +119,8 @@
|
|||||||
| USE_CHIRP | - | - | - | - | - | - | - |
|
| USE_CHIRP | - | - | - | - | - | - | - |
|
||||||
| USE_PAJ7620 | - | - | - | - | - | - | - |
|
| USE_PAJ7620 | - | - | - | - | - | - | - |
|
||||||
| USE_PCF8574 | - | - | - | - | - | - | - |
|
| USE_PCF8574 | - | - | - | - | - | - | - |
|
||||||
|
| | | | | | | | |
|
||||||
|
| Feature or Sensor | minimal | lite | tasmota | knx | sensors | ir | display | Remarks
|
||||||
| USE_HIH6 | - | - | - | - | x | - | - |
|
| USE_HIH6 | - | - | - | - | x | - | - |
|
||||||
| USE_DHT12 | - | - | - | - | x | - | - |
|
| USE_DHT12 | - | - | - | - | x | - | - |
|
||||||
| USE_DS1624 | - | - | - | - | x | - | - |
|
| USE_DS1624 | - | - | - | - | x | - | - |
|
||||||
@ -137,6 +139,7 @@
|
|||||||
| USE_EZOO2 | - | - | - | - | - | - | - |
|
| USE_EZOO2 | - | - | - | - | - | - | - |
|
||||||
| USE_EZOORP | - | - | - | - | - | - | - |
|
| USE_EZOORP | - | - | - | - | - | - | - |
|
||||||
| USE_EZOPH | - | - | - | - | - | - | - |
|
| USE_EZOPH | - | - | - | - | - | - | - |
|
||||||
|
| USE_EZOPRS | - | - | - | - | - | - | - |
|
||||||
| USE_EZORTD | - | - | - | - | - | - | - |
|
| USE_EZORTD | - | - | - | - | - | - | - |
|
||||||
| | | | | | | | |
|
| | | | | | | | |
|
||||||
| Feature or Sensor | minimal | lite | tasmota | knx | sensors | ir | display | Remarks
|
| Feature or Sensor | minimal | lite | tasmota | knx | sensors | ir | display | Remarks
|
||||||
|
@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
### Added
|
### Added
|
||||||
- TLS in binary tasmota-zbbridge (#9635)
|
- TLS in binary tasmota-zbbridge (#9635)
|
||||||
- Support for EZO O2 sensors by Christopher Tremblay (#9619)
|
- Support for EZO O2 sensors by Christopher Tremblay (#9619)
|
||||||
|
- Support for EZO PRS sensors by Christopher Tremblay (#9659)
|
||||||
- Zigbee reduce battery drain (#9642)
|
- Zigbee reduce battery drain (#9642)
|
||||||
- Zigbee added ``ZbMap`` command to describe Zigbee topology (#9651)
|
- Zigbee added ``ZbMap`` command to describe Zigbee topology (#9651)
|
||||||
|
|
||||||
|
@ -73,7 +73,7 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota
|
|||||||
- Support for analog buttons indexed within standard button range
|
- Support for analog buttons indexed within standard button range
|
||||||
- Support for Vietnamese language translations by Tâm.NT
|
- Support for Vietnamese language translations by Tâm.NT
|
||||||
- Support for timers in case of no-sunset permanent day by cybermaus (#9543)
|
- Support for timers in case of no-sunset permanent day by cybermaus (#9543)
|
||||||
- Support for EZO CO2, EC, HUM, O2, ORP, Ph and RTD sensors by Christopher Tremblay
|
- Support for EZO sensors by Christopher Tremblay
|
||||||
- Support for fixed output Hi or Lo GPIO selection
|
- Support for fixed output Hi or Lo GPIO selection
|
||||||
- TLS in binary tasmota-zbbridge (#9620)
|
- TLS in binary tasmota-zbbridge (#9620)
|
||||||
- Zigbee reduce battery drain (#9642)
|
- Zigbee reduce battery drain (#9642)
|
||||||
|
@ -638,12 +638,14 @@ void ResponseAppendFeatures(void)
|
|||||||
feature7 |= 0x00000008; // xsns_78_ezoec.ino
|
feature7 |= 0x00000008; // xsns_78_ezoec.ino
|
||||||
#endif
|
#endif
|
||||||
#if defined(USE_I2C) && defined(USE_EZOCO2)
|
#if defined(USE_I2C) && defined(USE_EZOCO2)
|
||||||
feature7 |= 0x00000010;
|
feature7 |= 0x00000010; // xsns_78_ezoco2.ino
|
||||||
#endif
|
#endif
|
||||||
#if defined(USE_I2C) && defined(USE_EZOO2)
|
#if defined(USE_I2C) && defined(USE_EZOO2)
|
||||||
feature7 |= 0x00000020;
|
feature7 |= 0x00000020; // xsns_78_ezoo2.ino
|
||||||
|
#endif
|
||||||
|
#if defined(USE_I2C) && defined(USE_EZOPRS)
|
||||||
|
feature7 |= 0x00000040; // xsns_78_ezoprs.ino
|
||||||
#endif
|
#endif
|
||||||
// feature7 |= 0x00000040;
|
|
||||||
// feature7 |= 0x00000080;
|
// feature7 |= 0x00000080;
|
||||||
|
|
||||||
// feature7 |= 0x00000100;
|
// feature7 |= 0x00000100;
|
||||||
|
@ -234,7 +234,7 @@ a_features = [[
|
|||||||
"USE_EZOPH","USE_TTGO_WATCH","USE_ETHERNET","USE_WEBCAM"
|
"USE_EZOPH","USE_TTGO_WATCH","USE_ETHERNET","USE_WEBCAM"
|
||||||
],[
|
],[
|
||||||
"USE_EZOORP","USE_EZORTD","USE_EZOHUM","USE_EZOEC",
|
"USE_EZOORP","USE_EZORTD","USE_EZOHUM","USE_EZOEC",
|
||||||
"USE_EZOCO2","USE_EZOO2","","",
|
"USE_EZOCO2","USE_EZOO2","USE_EZOPRS","",
|
||||||
"","","","",
|
"","","","",
|
||||||
"","","","",
|
"","","","",
|
||||||
"","","","",
|
"","","","",
|
||||||
@ -268,7 +268,7 @@ else:
|
|||||||
obj = json.load(fp)
|
obj = json.load(fp)
|
||||||
|
|
||||||
def StartDecode():
|
def StartDecode():
|
||||||
print ("\n*** decode-status.py v20201028 by Theo Arends and Jacek Ziolkowski ***")
|
print ("\n*** decode-status.py v20201029 by Theo Arends and Jacek Ziolkowski ***")
|
||||||
|
|
||||||
# print("Decoding\n{}".format(obj))
|
# print("Decoding\n{}".format(obj))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user