mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 02:19:31 +00:00
* Fix inputs to correctly handle Fahrenheit in IronOS * some refactoring * add boost switch entity * Revert switch entity * refactor * remove commented code * some changes
18 lines
320 B
Python
18 lines
320 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
|
|
MAX_TEMP_F: int = 850
|
|
MIN_TEMP: int = 10
|
|
MIN_TEMP_F: int = 50
|
|
MIN_BOOST_TEMP: int = 250
|
|
MIN_BOOST_TEMP_F: int = 480
|