2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-13 17:26:34 +00:00
Some Homematic device serialnumbers contains lower case characters.
Remove uc conversion of address in define

git-svn-id: https://svn.fhem.de/fhem/trunk@1133 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
dirkho 2011-12-16 10:11:18 +00:00
parent 37932b244e
commit 57dca469c1

View File

@ -37,7 +37,7 @@ HMDEV_Define($$)
return "wrong syntax: define <name> HMDEV deviceaddress" if int(@a)!=3; return "wrong syntax: define <name> HMDEV deviceaddress" if int(@a)!=3;
my $addr=uc($a[2]); my $addr=$a[2];
$hash->{hmaddr}=$addr; $hash->{hmaddr}=$addr;
$modules{HMDEV}{defptr}{$addr} = $hash; $modules{HMDEV}{defptr}{$addr} = $hash;