core/homeassistant/components/ohme/const.py

14 lines
226 B
Python
Raw Normal View History

2024-12-14 17:12:44 +00:00
"""Component constants."""
from homeassistant.const import Platform
DOMAIN = "ohme"
2025-01-23 07:20:03 +00:00
PLATFORMS = [
Platform.BUTTON,
Platform.NUMBER,
Platform.SELECT,
2025-01-23 07:20:03 +00:00
Platform.SENSOR,
Platform.SWITCH,
Platform.TIME,
]