mirror of
https://github.com/home-assistant/core.git
synced 2026-04-23 05:24:22 +00:00
19 lines
344 B
Python
19 lines
344 B
Python
"""Constants for the Swing2Sleep Smarla integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "smarla"
|
|
|
|
HOST = "https://devices.swing2sleep.de"
|
|
|
|
PLATFORMS = [
|
|
Platform.BUTTON,
|
|
Platform.NUMBER,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
Platform.UPDATE,
|
|
]
|
|
|
|
DEVICE_MODEL_NAME = "Smarla"
|
|
MANUFACTURER_NAME = "Swing2Sleep"
|