1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/blebox/const.py
2022-01-24 11:37:28 +01:00

51 lines
1.3 KiB
Python

"""Constants for the BleBox devices integration."""
from homeassistant.components.cover import CoverDeviceClass
from homeassistant.components.sensor import SensorDeviceClass
from homeassistant.components.switch import SwitchDeviceClass
from homeassistant.const import (
STATE_CLOSED,
STATE_CLOSING,
STATE_OPEN,
STATE_OPENING,
TEMP_CELSIUS,
)
DOMAIN = "blebox"
PRODUCT = "product"
DEFAULT_SETUP_TIMEOUT = 10
# translation strings
ADDRESS_ALREADY_CONFIGURED = "address_already_configured"
CANNOT_CONNECT = "cannot_connect"
UNSUPPORTED_VERSION = "unsupported_version"
UNKNOWN = "unknown"
BLEBOX_TO_HASS_DEVICE_CLASSES = {
"shutter": CoverDeviceClass.SHUTTER,
"gatebox": CoverDeviceClass.DOOR,
"gate": CoverDeviceClass.GATE,
"relay": SwitchDeviceClass.SWITCH,
"temperature": SensorDeviceClass.TEMPERATURE,
}
BLEBOX_TO_HASS_COVER_STATES = {
None: None,
0: STATE_CLOSING, # moving down
1: STATE_OPENING, # moving up
2: STATE_OPEN, # manually stopped
3: STATE_CLOSED, # lower limit
4: STATE_OPEN, # upper limit / open
# gateController
5: STATE_OPEN, # overload
6: STATE_OPEN, # motor failure
# 7 is not used
8: STATE_OPEN, # safety stop
}
BLEBOX_TO_UNIT_MAP = {"celsius": TEMP_CELSIUS}
DEFAULT_HOST = "192.168.0.2"
DEFAULT_PORT = 80