mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-13 17:26:34 +00:00
Bugfix:
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:
parent
37932b244e
commit
57dca469c1
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user