mirror of
https://github.com/home-assistant/core.git
synced 2025-05-29 02:07:09 +00:00
15 lines
252 B
Python
15 lines
252 B
Python
"""Provides the constants needed for the component."""
|
|
|
|
ATTR_VALUE = "value"
|
|
ATTR_MIN = "min"
|
|
ATTR_MAX = "max"
|
|
ATTR_STEP = "step"
|
|
|
|
DEFAULT_MIN_VALUE = 0.0
|
|
DEFAULT_MAX_VALUE = 100.0
|
|
DEFAULT_STEP = 1.0
|
|
|
|
DOMAIN = "number"
|
|
|
|
SERVICE_SET_VALUE = "set_value"
|