2023-01-25 17:28:13 +00:00
|
|
|
"""Constants for the Mopeka integration."""
|
|
|
|
|
2024-07-30 19:07:12 +00:00
|
|
|
from typing import Final
|
|
|
|
|
|
|
|
from mopeka_iot_ble import MediumType
|
|
|
|
|
2023-01-25 17:28:13 +00:00
|
|
|
DOMAIN = "mopeka"
|
2024-07-30 19:07:12 +00:00
|
|
|
|
|
|
|
CONF_MEDIUM_TYPE: Final = "medium_type"
|
|
|
|
|
|
|
|
DEFAULT_MEDIUM_TYPE = MediumType.PROPANE.value
|