mirror of
https://github.com/home-assistant/core.git
synced 2025-11-17 23:10:28 +00:00
* Added smarla integration * Apply suggested changes * Bump pysmarlaapi version and reevaluate quality scale * Focus on switch platform * Bump pysmarlaapi version * Change default name of device * Code refactoring * Removed obsolete reload function * Code refactoring and clean up * Bump pysmarlaapi version * Refactoring and changed access token format * Fix tests for smarla config_flow * Update quality_scale * Major rework of tests and refactoring * Bump pysmarlaapi version * Use object equality operator when applicable * Refactoring * Patch both connection objects * Refactor tests * Fix leaking tests * Implemented full test coverage * Bump pysmarlaapi version * Fix tests * Improve tests --------- Co-authored-by: Joostlek <joostlek@outlook.com>
13 lines
253 B
Python
13 lines
253 B
Python
"""Constants for the Swing2Sleep Smarla integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "smarla"
|
|
|
|
HOST = "https://devices.swing2sleep.de"
|
|
|
|
PLATFORMS = [Platform.SWITCH]
|
|
|
|
DEVICE_MODEL_NAME = "Smarla"
|
|
MANUFACTURER_NAME = "Swing2Sleep"
|