2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 06:08:44 +00:00

removed STATE setting for BulkUpdate

git-svn-id: https://svn.fhem.de/fhem/trunk@2194 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
wherzig 2012-11-25 20:12:23 +00:00
parent 9a0645dc1c
commit c3a3049e63
2 changed files with 2 additions and 2 deletions

View File

@ -498,7 +498,7 @@ sub TRX_LIGHT_parse_X10 {
} }
if (($firstdevice == 1) && $val) { if (($firstdevice == 1) && $val) {
$def->{STATE} = $val; #$def->{STATE} = $val;
readingsBulkUpdate($def, "state", $val); readingsBulkUpdate($def, "state", $val);
} }

View File

@ -1021,7 +1021,7 @@ TRX_WEATHER_Parse($$)
# remove heading and trailing space chars from $val # remove heading and trailing space chars from $val
$val =~ s/^\s+|\s+$//g; $val =~ s/^\s+|\s+$//g;
$def->{STATE} = $val; #$def->{STATE} = $val;
readingsBulkUpdate($def, "state", $val); readingsBulkUpdate($def, "state", $val);
} }