1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-15 03:19:15 +00:00
Dan Raper 7044771876
Add select platform to Ohme ()
* Add select platform

* Formatting

* Add parallel updates to select

* Remove comments
2025-01-26 13:52:01 +01:00

14 lines
226 B
Python

"""Component constants."""
from homeassistant.const import Platform
DOMAIN = "ohme"
PLATFORMS = [
Platform.BUTTON,
Platform.NUMBER,
Platform.SELECT,
Platform.SENSOR,
Platform.SWITCH,
Platform.TIME,
]