Add missing homekit metadata. (#829)
Signed-off-by: Stewart Cossey <stewart.cossey@gmail.com>pull/834/head
parent
639abb348d
commit
d7a80f359b
|
@ -1,4 +1,18 @@
|
||||||
const accessories = {
|
const accessories = {
|
||||||
|
'AirQualitySensor': [
|
||||||
|
'AirQuality',
|
||||||
|
'OzoneDensity',
|
||||||
|
'NitrogenDioxideDensity',
|
||||||
|
'SulphurDioxideDensity',
|
||||||
|
'PM25Density',
|
||||||
|
'PM10Density',
|
||||||
|
'VOCDensity',
|
||||||
|
'Name',
|
||||||
|
'ActiveStatus',
|
||||||
|
'FaultStatus',
|
||||||
|
'TamperedStatus',
|
||||||
|
'BatteryLowStatus'
|
||||||
|
],
|
||||||
'LeakSensor': [
|
'LeakSensor': [
|
||||||
'LeakDetectedState',
|
'LeakDetectedState',
|
||||||
'Name',
|
'Name',
|
||||||
|
@ -39,6 +53,14 @@ const accessories = {
|
||||||
'TamperedStatus',
|
'TamperedStatus',
|
||||||
'BatteryLowStatus'
|
'BatteryLowStatus'
|
||||||
],
|
],
|
||||||
|
'LightSensor': [
|
||||||
|
'LightLevel',
|
||||||
|
'Name',
|
||||||
|
'ActiveStatus',
|
||||||
|
'FaultStatus',
|
||||||
|
'TamperedStatus',
|
||||||
|
'BatteryLowStatus'
|
||||||
|
],
|
||||||
'HumiditySensor': [
|
'HumiditySensor': [
|
||||||
'RelativeHumidity',
|
'RelativeHumidity',
|
||||||
'Name',
|
'Name',
|
||||||
|
@ -75,6 +97,22 @@ const accessories = {
|
||||||
'TamperedStatus',
|
'TamperedStatus',
|
||||||
'BatteryLowStatus'
|
'BatteryLowStatus'
|
||||||
],
|
],
|
||||||
|
'Door': [
|
||||||
|
'CurrentPosition',
|
||||||
|
'TargetPosition',
|
||||||
|
'PositionState',
|
||||||
|
'Name',
|
||||||
|
'HoldPosition',
|
||||||
|
'ObstructionStatus'
|
||||||
|
],
|
||||||
|
'Window': [
|
||||||
|
'CurrentPosition',
|
||||||
|
'TargetPosition',
|
||||||
|
'PositionState',
|
||||||
|
'Name',
|
||||||
|
'HoldPosition',
|
||||||
|
'ObstructionStatus'
|
||||||
|
],
|
||||||
'WindowCovering': [
|
'WindowCovering': [
|
||||||
'CurrentPosition',
|
'CurrentPosition',
|
||||||
'TargetPosition',
|
'TargetPosition',
|
||||||
|
@ -117,7 +155,22 @@ const accessories = {
|
||||||
'CurrentTemperature',
|
'CurrentTemperature',
|
||||||
'TargetTemperature',
|
'TargetTemperature',
|
||||||
'CurrentHeatingCoolingMode',
|
'CurrentHeatingCoolingMode',
|
||||||
'TargetHeatingCoolingMode'
|
'TargetHeatingCoolingMode',
|
||||||
|
'Name',
|
||||||
|
'CoolingThresholdTemperature',
|
||||||
|
'HeatingThresholdTemperature'
|
||||||
|
],
|
||||||
|
'HeaterCooler': [
|
||||||
|
'ActiveStatus',
|
||||||
|
'CurrentTemperature',
|
||||||
|
'CurrentHeaterCoolerState',
|
||||||
|
'TargetHeaterCoolerState',
|
||||||
|
'Name',
|
||||||
|
'RotationSpeed',
|
||||||
|
'SwingMode',
|
||||||
|
'LockControl',
|
||||||
|
'CoolingThresholdTemperature',
|
||||||
|
'HeatingThresholdTemperature'
|
||||||
],
|
],
|
||||||
'Lock': [
|
'Lock': [
|
||||||
'LockCurrentState',
|
'LockCurrentState',
|
||||||
|
|
Loading…
Reference in New Issue