mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-05 08:20:23 +00:00
- bugfix: cut off string "(counter)" from fallback value in 13_KS300.pm
git-svn-id: https://svn.fhem.de/fhem/trunk@314 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
9adfe123da
commit
0a3aa137ce
@ -475,3 +475,4 @@
|
||||
- feature: 00_CUL: Answer CUR requests (status/time/fht)
|
||||
- bugfix: support for second correction factor for EMWZ in 15_CUL_EM added
|
||||
- feature: CUL further sets/gets added
|
||||
- bugfix: cut off string "(counter)" from fallback value in 13_KS300.pm
|
||||
|
@ -115,7 +115,7 @@ KS300_Parse($$)
|
||||
# get previous rain_raw
|
||||
my $rain_raw_prev= $rain_raw;
|
||||
if(defined($r->{rain_raw})) {
|
||||
$rain_raw_prev= $r->{rain_raw}{VAL};
|
||||
my($rain_raw_prev, undef)= split(" ", $r->{rain_raw}{VAL}); # cut off "(counter)"
|
||||
};
|
||||
|
||||
# unadjusted value as default
|
||||
|
Loading…
x
Reference in New Issue
Block a user