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

10_CUL_HM: move aes key to vccu - step2

git-svn-id: https://svn.fhem.de/fhem/trunk@8712 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2015-06-07 17:53:40 +00:00
parent f1d9601b02
commit 5381afcf7e

View File

@ -274,6 +274,9 @@ sub CUL_HM_updateConfig($){
}
}
}
elsif ($md =~ m/(CCU-FHEM)/){
HMLAN_writeAesKey($_) foreach (split ",",AttrVal($name,"IOList",""));
}
elsif ($st eq "dimmer" ) {#setup virtual dimmer channels
my $mId = CUL_HM_getMId($hash);
#configure Dimmer virtual channel assotiation
@ -833,7 +836,9 @@ sub CUL_HM_Attr(@) {#################################
else{
delete $attr{$name}{$attrName};
}
HMLAN_writeAesKey($_) foreach (split ",",AttrVal($name,"IOList",""));
if ($init_done){
HMLAN_writeAesKey($_) foreach (split ",",AttrVal($name,"IOList",""));
}
return $retVal;
}