2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-26 10:34:52 +00:00

49_SSCamSTRM: set parentState initial in Define, Forum: 45671.msg985136.html#msg985136

git-svn-id: https://svn.fhem.de/fhem/trunk@20378 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2019-10-18 20:36:53 +00:00
parent cb573942fe
commit 0db4f79404
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# 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: 49_SSCamSTRM: set parentState initial in Define,
Forum: 45671.msg985136.html#msg985136
- change: 88_Timer: added popup for user
rename Def to DEF for FHEM default (with comp. checker)
added more doc in commandref

View File

@ -35,6 +35,7 @@ eval "use FHEM::Meta;1" or my $modMetaAbsent = 1;
# Versions History intern
our %SSCamSTRM_vNotesIntern = (
"2.10.1" => "18.10.2019 set parentState initial in Define, Forum: https://forum.fhem.de/index.php/topic,45671.msg985136.html#msg985136 ",
"2.10.0" => "21.09.2019 new attribute hideAudio ",
"2.9.0" => "19.09.2019 new attribute noLink ",
"2.8.0" => "09.09.2019 new attribute hideButtons ",
@ -129,7 +130,8 @@ sub SSCamSTRM_Define($$) {
# Versionsinformationen setzen
SSCamSTRM_setVersionInfo($hash);
readingsSingleUpdate($hash,"state", "initialized", 1); # Init für "state"
readingsSingleUpdate($hash,"state", "initialized", 1); # Init für "state"
readingsSingleUpdate($hash,"parentState", "initialized", 1); # Init für "parentState" Forum: https://forum.fhem.de/index.php/topic,45671.msg985136.html#msg985136
return undef;
}