From 906bbe10bdfd7748169e45e70de9debd0405273c Mon Sep 17 00:00:00 2001 From: andi291 <> Date: Mon, 7 May 2018 17:48:21 +0000 Subject: [PATCH] 86_Robonect.pm: replaced "umwelt" with "climate" in readings-section (roughly line 740) git-svn-id: https://svn.fhem.de/fhem/trunk@16699 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/86_Robonect.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fhem/FHEM/86_Robonect.pm b/fhem/FHEM/86_Robonect.pm index d11d8bf11..09ad0e37a 100644 --- a/fhem/FHEM/86_Robonect.pm +++ b/fhem/FHEM/86_Robonect.pm @@ -38,6 +38,7 @@ # ABU 20171006 added "umlautfilter" for test # ABU 20171006 added "health" for test # ABU 20171010 finished health for test, added chck for undef at each reading +# ABU 20180507 replaced "umwelt" with "climate" in readings-section (roughly line 740) package main; @@ -735,10 +736,10 @@ sub Robonect_callback ($) ($key, $value) = Robonect_decodeContent ($hash, $answer, "health", "voltages", "batt"); readingsBulkUpdate($hash, $key, $value) if (defined ($value) and !($value =~ m/undef/)); - ($key, $value) = Robonect_decodeContent ($hash, $answer, "health", "umwelt", "temperature"); + ($key, $value) = Robonect_decodeContent ($hash, $answer, "health", "climate", "temperature"); readingsBulkUpdate($hash, $key, $value) if (defined ($value) and !($value =~ m/undef/)); - ($key, $value) = Robonect_decodeContent ($hash, $answer, "health", "umwelt", "humidity"); + ($key, $value) = Robonect_decodeContent ($hash, $answer, "health", "climate", "humidity"); readingsBulkUpdate($hash, $key, $value) if (defined ($value) and !($value =~ m/undef/)); }