I2C_LCD fix setting attribute pinMapping

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@5496 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
ntruchsess 2014-04-09 11:48:49 +00:00
parent 71076ba21b
commit d35d62e2ff

View File

@ -153,7 +153,8 @@ I2C_LCD_Attr($$$$) {
$newMapping{$key} = $value;
}
$hash->{mapping} = \%newMapping;
I2C_LCD_Init($hash,split (' ',$hash->{DEF})) if ($main::init_done);
my @def = split (' ',$hash->{DEF});
I2C_LCD_Init($hash,\@def) if ($main::init_done);
last;
};
$main::attr{$name}{$attribute}=$value;
@ -161,7 +162,8 @@ I2C_LCD_Attr($$$$) {
}
}
};
my $ret = I2C_LCD_Catch($@) if $@;
# my $ret = I2C_LCD_Catch($@) if $@;
my $ret = $@;
if ($ret) {
$hash->{STATE} = "error setting $attribute to $value: ".$ret;
return "cannot $command attribute $attribute to $value for $name: ".$ret;