2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

31_HUEDevice: added water reading for Xiaomi Aqara Water sensor

git-svn-id: https://svn.fhem.de/fhem/trunk@17560 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2018-10-18 08:12:38 +00:00
parent f0d8191d6d
commit 6893910ee2
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- feature: 31_HUEDevice: added water reading for Xiaomi Aqara Water sensor
- bugfix: 73_GardenaSmartBridge/Device
fix Undefined subroutine &GardenaSmartDevice
- change: 93_DbLog: Log output of recuceLogNbl & use of charFilter enhanced

View File

@ -1267,6 +1267,7 @@ HUEDevice_Parse($$)
$readings{voltage} = $state->{voltage} if( defined($state->{voltage}) );
$readings{current} = $state->{current} if( defined($state->{current}) );
$readings{consumption} = $state->{consumption} if( defined($state->{consumption}) );
$readings{water} = $state->{water} if( defined($state->{water}) );
}
if( scalar keys %readings ) {