Add new number entity integration (#42735)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
14
homeassistant/components/number/const.py
Normal file
14
homeassistant/components/number/const.py
Normal file
@@ -0,0 +1,14 @@
|
||||
"""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"
|
||||
Reference in New Issue
Block a user