mirror of
https://github.com/home-assistant/core.git
synced 2026-08-24 10:13:52 -05:00
11 lines
257 B
Python
11 lines
257 B
Python
"""Constants for the victron_gx integration."""
|
|
|
|
DOMAIN = "victron_gx"
|
|
|
|
CONF_INSTALLATION_ID = "installation_id"
|
|
CONF_SERIAL = "serial"
|
|
|
|
# Binary sensor enum ids must be "on" for on and "off" for off.
|
|
BINARY_SENSOR_ON_ID = "on"
|
|
BINARY_SENSOR_OFF_ID = "off"
|