2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 23:06:37 +00:00

MAX: use new devicetype if changed

git-svn-id: https://svn.fhem.de/fhem/trunk@2957 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
mgehre 2013-03-21 15:11:52 +00:00
parent ba761a60c4
commit 0a6a712273

View File

@ -86,7 +86,7 @@ MAX_Define($$)
my @a = split("[ \t][ \t]*", $def);
my $name = $hash->{NAME};
return "name \"$name\" is reserved for internal use" if($name eq "fakeWallThermostat" or $name eq "fakeShutterContact");
return "wrong syntax: define <name> MAX addr"
return "wrong syntax: define <name> MAX type addr"
if(int(@a)!=4 || $a[3] !~ m/^[A-F0-9]{6}$/i);
my $type = $a[2];
@ -565,6 +565,7 @@ MAX_Parse($$)
if($msgtype eq "define"){
my $devicetype = $args[0];
Log 1, "Device changed type from $shash->{type} to $devicetype" if($shash->{type} ne $devicetype);
$shash->{type} = $devicetype;
if(@args > 1){
my $serial = $args[1];
Log 1, "Device changed serial from $shash->{serial} to $serial" if($shash->{serial} and ($shash->{serial} ne $serial));