mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 10:46:53 +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:
parent
f0d8191d6d
commit
6893910ee2
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# 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.
|
# 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
|
- bugfix: 73_GardenaSmartBridge/Device
|
||||||
fix Undefined subroutine &GardenaSmartDevice
|
fix Undefined subroutine &GardenaSmartDevice
|
||||||
- change: 93_DbLog: Log output of recuceLogNbl & use of charFilter enhanced
|
- change: 93_DbLog: Log output of recuceLogNbl & use of charFilter enhanced
|
||||||
|
@ -1267,6 +1267,7 @@ HUEDevice_Parse($$)
|
|||||||
$readings{voltage} = $state->{voltage} if( defined($state->{voltage}) );
|
$readings{voltage} = $state->{voltage} if( defined($state->{voltage}) );
|
||||||
$readings{current} = $state->{current} if( defined($state->{current}) );
|
$readings{current} = $state->{current} if( defined($state->{current}) );
|
||||||
$readings{consumption} = $state->{consumption} if( defined($state->{consumption}) );
|
$readings{consumption} = $state->{consumption} if( defined($state->{consumption}) );
|
||||||
|
$readings{water} = $state->{water} if( defined($state->{water}) );
|
||||||
}
|
}
|
||||||
|
|
||||||
if( scalar keys %readings ) {
|
if( scalar keys %readings ) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user