2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 20:57:11 +00:00

82_LGTV_WebOS: Change Part of Code

git-svn-id: https://svn.fhem.de/fhem/trunk@16915 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2018-06-27 08:23:53 +00:00
parent 8da8aaafeb
commit 734d91428b
2 changed files with 11 additions and 10 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.
- change: 82_LGTV_WebOS: change part of code
- bugfix: 49_SSCam: fix state turns to "off" even though cam is disabled
- bugfix: 38_netatmo: fixed camera recording and notification settings
- feature: 36_WMBUS: support for WMBUS type C and Kamstrup Multical 21

View File

@ -69,7 +69,7 @@ eval "use Blocking;1" or $missingModul .= "Blocking ";
my $version = "2.0.4";
my $version = "2.0.5";
@ -366,15 +366,15 @@ sub LGTV_WebOS_TimerStatusRequest($) {
LGTV_WebOS_Presence($hash) if( AttrVal($name,'pingPresence', 0) == 1 );
readingsBulkUpdate($hash,'channel','-');
readingsBulkUpdate($hash,'channelName','-');
readingsBulkUpdate($hash,'channelMedia','-');
readingsBulkUpdate($hash,'channelCurrentTitle','-');
readingsBulkUpdate($hash,'channelCurrentStartTime','-');
readingsBulkUpdate($hash,'channelCurrentEndTime','-');
readingsBulkUpdate($hash,'channelNextTitle','-');
readingsBulkUpdate($hash,'channelNextStartTime','-');
readingsBulkUpdate($hash,'channelNextEndTime','-');
readingsBulkUpdateIfChanged($hash,'channel','-');
readingsBulkUpdateIfChanged($hash,'channelName','-');
readingsBulkUpdateIfChanged($hash,'channelMedia','-');
readingsBulkUpdateIfChanged($hash,'channelCurrentTitle','-');
readingsBulkUpdateIfChanged($hash,'channelCurrentStartTime','-');
readingsBulkUpdateIfChanged($hash,'channelCurrentEndTime','-');
readingsBulkUpdateIfChanged($hash,'channelNextTitle','-');
readingsBulkUpdateIfChanged($hash,'channelNextStartTime','-');
readingsBulkUpdateIfChanged($hash,'channelNextEndTime','-');
$hash->{helper}{device}{runsetcmd} = 0;
}