mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
31_HUEDevice.pm: added alarm reading for Tuya Zigbee Smart Sirene mit Temperatur- und Feuchtigkeitsmessung
git-svn-id: https://svn.fhem.de/fhem/trunk@25249 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
a3869319c6
commit
fac8aae0a9
@ -1425,8 +1425,8 @@ HUEDevice_Parse($$)
|
|||||||
$hash->{helper}{lights} = {map {$_=>1} @{$result->{lights}}};
|
$hash->{helper}{lights} = {map {$_=>1} @{$result->{lights}}};
|
||||||
$hash->{lights} = join( ",", sort { $a <=> $b } @{$result->{lights}} );
|
$hash->{lights} = join( ",", sort { $a <=> $b } @{$result->{lights}} );
|
||||||
} else {
|
} else {
|
||||||
$hash->{helper}{lights} = {};
|
#$hash->{helper}{lights} = {};
|
||||||
$hash->{lights} = '';
|
#$hash->{lights} = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
if( ref($result->{state}) eq 'HASH' ) {
|
if( ref($result->{state}) eq 'HASH' ) {
|
||||||
@ -1632,6 +1632,7 @@ HUEDevice_Parse($$)
|
|||||||
$readings{battery} = $state->{battery} if( defined($state->{battery}) );
|
$readings{battery} = $state->{battery} if( defined($state->{battery}) );
|
||||||
$readings{batteryPercent} = $state->{battery} if( defined($state->{battery}) );
|
$readings{batteryPercent} = $state->{battery} if( defined($state->{battery}) );
|
||||||
$readings{batteryState} = $state->{lowbattery}?'low':'ok' if( defined($state->{lowbattery}) );
|
$readings{batteryState} = $state->{lowbattery}?'low':'ok' if( defined($state->{lowbattery}) );
|
||||||
|
$readings{alarm} = $state->{alarm}?'1':'0' if( defined($state->{alarm}) );
|
||||||
|
|
||||||
#Xiaomi Aqara Vibrationsensor (lumi.vibration.aq1)
|
#Xiaomi Aqara Vibrationsensor (lumi.vibration.aq1)
|
||||||
$readings{tiltangle} = $state->{tiltangle} if( defined ($state->{tiltangle}) );
|
$readings{tiltangle} = $state->{tiltangle} if( defined ($state->{tiltangle}) );
|
||||||
@ -1966,7 +1967,7 @@ HUEDevice_Attr($$$;$)
|
|||||||
The default and minimum is 60 if the IODev has not set pollDevices to 1.
|
The default and minimum is 60 if the IODev has not set pollDevices to 1.
|
||||||
The default ist 0 if the IODev has set pollDevices to 1.
|
The default ist 0 if the IODev has set pollDevices to 1.
|
||||||
Groups are updated only on definition and statusRequest, but see createGroupReadings<br>
|
Groups are updated only on definition and statusRequest, but see createGroupReadings<br>
|
||||||
Sensor devices will not be autocreated. Use <code>get <bridge> sensors</code> will provide the sensor id vor manual definition.<br><br>
|
Sensor devices will only be autocreated with deconz bridge devices. Use <code>get <bridge> sensors</code> will provide the sensor id vor manual definition.<br><br>
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
<ul>
|
<ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user