mirror of
https://github.com/home-assistant/core.git
synced 2026-09-05 04:51:05 +01:00
15 lines
223 B
Python
15 lines
223 B
Python
"""Constants for the Flexit integration."""
|
|
|
|
DOMAIN = "flexit"
|
|
|
|
DEFAULT_PORT = 502
|
|
DEFAULT_SCAN_INTERVAL = 30
|
|
|
|
CONF_BAUDRATE = "baudrate"
|
|
CONF_UNIT = "unit"
|
|
|
|
TYPE_TCP = "tcp"
|
|
TYPE_SERIAL = "serial"
|
|
|
|
DEFAULT_BAUDRATE = 9600
|