2
0
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:
Risiko 2017-04-08 17:28:49 +00:00
parent b799b61356
commit 8f89f740ef
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# 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.
- new: 10_pilight_ctrl: support temperature protocols bmp085 and bmp180
- new: 10_pilight_ctrl: support contact sensor GW-iwds07
- new: 59_LuftdatenInfo: introducing new module to fetch PM, temperature
and humidity data from Luftdaten.info

View File

@ -47,6 +47,7 @@
# V 1.20 2016-10-27 - FIX: ContactAsSwitch protocol independend
# V 1.21 2016-11-13 - NEW: support contact sensors
# 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;
@ -860,6 +861,8 @@ sub pilight_ctrl_Parse($$)
case m/cpu_temp/ {$protoID = 4;}
case m/lm75/ {$protoID = 4;}
case m/lm76/ {$protoID = 4;}
case m/bmp085/ {$protoID = 4;}
case m/bmp180/ {$protoID = 4;}
case m/screen/ {$protoID = 5;}