mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
10_pilight_ctrl: new temperature protocols bmp085 and bmp180
git-svn-id: https://svn.fhem.de/fhem/trunk@13937 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
b799b61356
commit
8f89f740ef
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||||
# Do not insert empty lines here, update check depends on it.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- new: 10_pilight_ctrl: support temperature protocols bmp085 and bmp180
|
||||||
- new: 10_pilight_ctrl: support contact sensor GW-iwds07
|
- new: 10_pilight_ctrl: support contact sensor GW-iwds07
|
||||||
- new: 59_LuftdatenInfo: introducing new module to fetch PM, temperature
|
- new: 59_LuftdatenInfo: introducing new module to fetch PM, temperature
|
||||||
and humidity data from Luftdaten.info
|
and humidity data from Luftdaten.info
|
||||||
|
@ -47,6 +47,7 @@
|
|||||||
# V 1.20 2016-10-27 - FIX: ContactAsSwitch protocol independend
|
# V 1.20 2016-10-27 - FIX: ContactAsSwitch protocol independend
|
||||||
# V 1.21 2016-11-13 - NEW: support contact sensors
|
# V 1.21 2016-11-13 - NEW: support contact sensors
|
||||||
# V 1.22 2017-04-08 - NEW: support contact sensor GW-iwds07
|
# V 1.22 2017-04-08 - NEW: support contact sensor GW-iwds07
|
||||||
|
# V 1.23 2017-04-08 - NEW: support new temperature protocols bmp085 and bmp180
|
||||||
##############################################
|
##############################################
|
||||||
package main;
|
package main;
|
||||||
|
|
||||||
@ -860,6 +861,8 @@ sub pilight_ctrl_Parse($$)
|
|||||||
case m/cpu_temp/ {$protoID = 4;}
|
case m/cpu_temp/ {$protoID = 4;}
|
||||||
case m/lm75/ {$protoID = 4;}
|
case m/lm75/ {$protoID = 4;}
|
||||||
case m/lm76/ {$protoID = 4;}
|
case m/lm76/ {$protoID = 4;}
|
||||||
|
case m/bmp085/ {$protoID = 4;}
|
||||||
|
case m/bmp180/ {$protoID = 4;}
|
||||||
|
|
||||||
case m/screen/ {$protoID = 5;}
|
case m/screen/ {$protoID = 5;}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user