hass-core/homeassistant/components/mopeka/const.py
Bill Flood 022e1b0c02
Add other medium types to Mopeka sensor (#122705)
Co-authored-by: J. Nick Koston <nick@koston.org>
2024-07-30 14:07:12 -05:00

11 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