Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Provides the constants needed for the component."""
2 
3 DOMAIN = "text"
4 
5 ATTR_MAX = "max"
6 ATTR_MIN = "min"
7 ATTR_MODE = "mode"
8 ATTR_PATTERN = "pattern"
9 ATTR_VALUE = "value"
10 
11 SERVICE_SET_VALUE = "set_value"