mirror of
https://github.com/home-assistant/core.git
synced 2025-11-10 19:40:11 +00:00
12 lines
217 B
Python
12 lines
217 B
Python
"""Constants for the Mopeka integration."""
|
|
|
|
from typing import Final
|
|
|
|
from mopeka_iot_ble import MediumType
|
|
|
|
DOMAIN = "mopeka"
|
|
|
|
CONF_MEDIUM_TYPE: Final = "medium_type"
|
|
|
|
DEFAULT_MEDIUM_TYPE = MediumType.PROPANE.value
|