Add text platform (#79454)

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
Raman Gupta 2022-11-24 14:01:01 -05:00 committed by GitHub
parent 9132c42037
commit 003e4224c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 567 additions and 0 deletions

View file

@ -0,0 +1,11 @@
"""Provides the constants needed for the component."""
DOMAIN = "text"
ATTR_MAX = "max"
ATTR_MIN = "min"
ATTR_MODE = "mode"
ATTR_PATTERN = "pattern"
ATTR_VALUE = "value"
SERVICE_SET_VALUE = "set_value"