mirror of
https://github.com/home-assistant/core.git
synced 2025-11-06 17:40:11 +00:00
* Add setpoint temperature number entity to IronOS integration * Add tests for number platform * Initialize settings in coordinator * Remove unused code
14 lines
223 B
Python
14 lines
223 B
Python
"""Constants for the IronOS integration."""
|
|
|
|
DOMAIN = "iron_os"
|
|
|
|
MANUFACTURER = "PINE64"
|
|
MODEL = "Pinecil V2"
|
|
|
|
OHM = "Ω"
|
|
|
|
DISCOVERY_SVC_UUID = "9eae1000-9d0d-48c5-aa55-33e27f9bc533"
|
|
|
|
MAX_TEMP: int = 450
|
|
MIN_TEMP: int = 10
|