13 lines
287 B
Python
13 lines
287 B
Python
"""Constants for the Swing2Sleep Smarla integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "smarla"
|
|
|
|
HOST = "https://devices.swing2sleep.de"
|
|
|
|
PLATFORMS = [Platform.NUMBER, Platform.SENSOR, Platform.SWITCH]
|
|
|
|
DEVICE_MODEL_NAME = "Smarla"
|
|
MANUFACTURER_NAME = "Swing2Sleep"
|