2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

- Pest Jun 10, 23:16:23 MEST 2007

- Set wrong values in 62_EMEM to -1


git-svn-id: https://svn.fhem.de/fhem/trunk@75 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
pest 2007-06-10 21:19:50 +00:00
parent 7d92e2c50e
commit 43caf82344
2 changed files with 7 additions and 2 deletions

View File

@ -53,9 +53,10 @@ EMEM_GetStatus($)
my $cur_power = $pulses / 100; my $cur_power = $pulses / 100;
if($cur_power > 30) { # 20Amp x 3 Phase if($cur_power > 30) { # 20Amp x 3 Phase
my $msg = "EMEM Bogus reading: curr. power is reported to be $cur_power"; my $msg = "EMEM Bogus reading: curr. power is reported to be $cur_power setting to -1";
Log GetLogLevel($name,2), $msg; Log GetLogLevel($name,2), $msg;
return $msg; #return $msg;
$cur_power = -1.0;
} }
my %vals; my %vals;

View File

@ -110,3 +110,7 @@
- Mon Jun 4 08:23:43 MEST 2007 - Mon Jun 4 08:23:43 MEST 2007
- Small changes for EM logging - Small changes for EM logging
- Pest Jun 10, 23:16:23 MEST 2007
- Set wrong values in 62_EMEM to -1