* Added support for security system, switch and thermostat * Processing review * Only perform set call when the call didn't come from HomeKit * Added support for alarm_code * Take into account review remarks * Provide tests for HomeKit security systems, switches and thermostats * Support STATE_AUTO * Guard if state exists * Improve support for thermostat auto mode * Provide both high and low at the same time for home assistant * Set default values within accepted ranges * Added tests for auto mode * Fix thermostat test error * Use attributes.get instead of indexing for safety * Avoid hardcoded attributes in tests
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
"""Constants used be the HomeKit component."""
|
|
MANUFACTURER = 'HomeAssistant'
|
|
|
|
# Services
|
|
SERV_ACCESSORY_INFO = 'AccessoryInformation'
|
|
SERV_BRIDGING_STATE = 'BridgingState'
|
|
SERV_SECURITY_SYSTEM = 'SecuritySystem'
|
|
SERV_SWITCH = 'Switch'
|
|
SERV_TEMPERATURE_SENSOR = 'TemperatureSensor'
|
|
SERV_THERMOSTAT = 'Thermostat'
|
|
SERV_WINDOW_COVERING = 'WindowCovering'
|
|
|
|
# Characteristics
|
|
CHAR_ACC_IDENTIFIER = 'AccessoryIdentifier'
|
|
CHAR_CATEGORY = 'Category'
|
|
CHAR_COOLING_THRESHOLD_TEMPERATURE = 'CoolingThresholdTemperature'
|
|
CHAR_CURRENT_HEATING_COOLING = 'CurrentHeatingCoolingState'
|
|
CHAR_CURRENT_POSITION = 'CurrentPosition'
|
|
CHAR_CURRENT_SECURITY_STATE = 'SecuritySystemCurrentState'
|
|
CHAR_CURRENT_TEMPERATURE = 'CurrentTemperature'
|
|
CHAR_HEATING_THRESHOLD_TEMPERATURE = 'HeatingThresholdTemperature'
|
|
CHAR_LINK_QUALITY = 'LinkQuality'
|
|
CHAR_MANUFACTURER = 'Manufacturer'
|
|
CHAR_MODEL = 'Model'
|
|
CHAR_ON = 'On'
|
|
CHAR_POSITION_STATE = 'PositionState'
|
|
CHAR_REACHABLE = 'Reachable'
|
|
CHAR_SERIAL_NUMBER = 'SerialNumber'
|
|
CHAR_TARGET_HEATING_COOLING = 'TargetHeatingCoolingState'
|
|
CHAR_TARGET_POSITION = 'TargetPosition'
|
|
CHAR_TARGET_SECURITY_STATE = 'SecuritySystemTargetState'
|
|
CHAR_TARGET_TEMPERATURE = 'TargetTemperature'
|
|
CHAR_TEMP_DISPLAY_UNITS = 'TemperatureDisplayUnits'
|
|
|
|
# Properties
|
|
PROP_CELSIUS = {'minValue': -273, 'maxValue': 999}
|