2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

repair tempset TC

git-svn-id: https://svn.fhem.de/fhem/trunk@3964 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2013-09-26 09:01:00 +00:00
parent 53b61900af
commit 30370a2bbd

View File

@ -2812,7 +2812,8 @@ sub CUL_HM_Set($@) {
my %day2off = ( "Sat"=>"5 0B", "Sun"=>"5 3B", "Mon"=>"5 6B",
"Tue"=>"5 9B", "Wed"=>"5 CB", "Thu"=>"6 01",
"Fri"=>"6 31");
($list,$addr,$prgChn) = split(" ", $day2off{$wd},2);
($list,$addr) = split(" ", $day2off{$wd},2);
$prgChn = 2;
$addr = hex($addr);
}