* Add setpoint temperature number entity to IronOS integration * Add tests for number platform * Initialize settings in coordinator * Remove unused code
13 lines
223 B
Python
13 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
|