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,
|
2025-01-26 12:52:01 +00:00
|
|
|
Platform.SELECT,
|
2025-01-23 07:20:03 +00:00
|
|
|
Platform.SENSOR,
|
|
|
|
Platform.SWITCH,
|
|
|
|
Platform.TIME,
|
|
|
|
]
|