2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-26 16:19:32 +00:00

I2C_LCD fix setting attribute pinMapping

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

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;