From 67be5cfec4ed4f9557b335a1ce5954581719d52a Mon Sep 17 00:00:00 2001 From: Risiko Date: Sat, 8 Apr 2017 17:28:49 +0000 Subject: [PATCH] 10_pilight_ctrl: new temperature protocols bmp085 and bmp180 git-svn-id: https://svn.fhem.de/fhem/trunk@13937 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/10_pilight_ctrl.pm | 3 +++ 2 files changed, 4 insertions(+) diff --git a/fhem/CHANGED b/fhem/CHANGED index 29921a6d9..1037fc50c 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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 diff --git a/fhem/FHEM/10_pilight_ctrl.pm b/fhem/FHEM/10_pilight_ctrl.pm index 078610d6a..ef18818a8 100644 --- a/fhem/FHEM/10_pilight_ctrl.pm +++ b/fhem/FHEM/10_pilight_ctrl.pm @@ -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;}