I2C_LCD fix setting attribute pinMapping

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@5496 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
ntruchsess
2014-04-09 11:48:49 +00:00
parent 2162afb1a3
commit 3a5c274665

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;