Add chart service to LaMetric (#80554)

This commit is contained in:
Franck Nijhof 2022-10-19 03:36:19 +02:00 committed by GitHub
parent ddba653158
commit e3919babb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 187 additions and 37 deletions

View file

@ -19,10 +19,12 @@ LOGGER = logging.getLogger(__package__)
SCAN_INTERVAL = timedelta(seconds=30)
CONF_CYCLES: Final = "cycles"
CONF_DATA: Final = "data"
CONF_ICON_TYPE: Final = "icon_type"
CONF_LIFETIME: Final = "lifetime"
CONF_MESSAGE: Final = "message"
CONF_PRIORITY: Final = "priority"
CONF_SOUND: Final = "sound"
CONF_MESSAGE: Final = "message"
SERVICE_MESSAGE: Final = "message"
SERVICE_CHART: Final = "chart"