13 lines
403 B
Python
13 lines
403 B
Python
|
"""Constants for the wiffi component."""
|
||
|
|
||
|
# Component domain, used to store component data in hass data.
|
||
|
DOMAIN = "wiffi"
|
||
|
|
||
|
# Default port for TCP server
|
||
|
DEFAULT_PORT = 8189
|
||
|
|
||
|
# Signal name to send create/update to platform (sensor/binary_sensor)
|
||
|
CREATE_ENTITY_SIGNAL = "wiffi_create_entity_signal"
|
||
|
UPDATE_ENTITY_SIGNAL = "wiffi_update_entity_signal"
|
||
|
CHECK_ENTITIES_SIGNAL = "wiffi_check_entities_signal"
|