14 lines
226 B
Python
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,
|
|
]
|