Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

14_SD_UT.pm - fix #627

Merged
merged 1 commit into from
Aug 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGED
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
20.08.2019
14_SD_UT.pm: fixed Parse button all model RC_10 Forum#94327
13.08.2019
00_SIGNALduino.pm: add id68 to matchlist
14_SD_UT.pm: fixed Parse button all model RC_10 & added model OR28V
Expand Down
8 changes: 4 additions & 4 deletions FHEM/14_SD_UT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1118,10 +1118,10 @@ sub SD_UT_Parse($$) {
}

### if receive device _all, set A | B | C | D ###
readingsSingleUpdate("RC_10 " . $deviceCode ."_A", "state" , $state , 1) if (defined $defs{"RC_10 " . $deviceCode ."_A"});
readingsSingleUpdate("RC_10 " . $deviceCode ."_B", "state" , $state , 1) if (defined $defs{"RC_10 " . $deviceCode ."_B"});
readingsSingleUpdate("RC_10 " . $deviceCode ."_C", "state" , $state , 1) if (defined $defs{"RC_10 " . $deviceCode ."_C"});
readingsSingleUpdate("RC_10 " . $deviceCode ."_D", "state" , $state , 1) if (defined $defs{"RC_10 " . $deviceCode ."_D"});
readingsSingleUpdate($defs{"RC_10_" . $deviceCode ."_A"}, "state" , $state , 1) if (defined $defs{"RC_10_" . $deviceCode ."_A"});
readingsSingleUpdate($defs{"RC_10_" . $deviceCode ."_B"}, "state" , $state , 1) if (defined $defs{"RC_10_" . $deviceCode ."_B"});
readingsSingleUpdate($defs{"RC_10_" . $deviceCode ."_C"}, "state" , $state , 1) if (defined $defs{"RC_10_" . $deviceCode ."_C"});
readingsSingleUpdate($defs{"RC_10_" . $deviceCode ."_D"}, "state" , $state , 1) if (defined $defs{"RC_10_" . $deviceCode ."_D"});
}
Log3 $iohash, 4, "$ioname: SD_UT device - RC_10 devicedef: $devicedef";
Log3 $iohash, 4, "$ioname: SD_UT device - RC_10 button: $button | state: $state";
Expand Down