Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Monoprice 6-Zone Amplifier Media Player component."""
2 
3 DOMAIN = "monoprice"
4 
5 CONF_SOURCES = "sources"
6 
7 CONF_SOURCE_1 = "source_1"
8 CONF_SOURCE_2 = "source_2"
9 CONF_SOURCE_3 = "source_3"
10 CONF_SOURCE_4 = "source_4"
11 CONF_SOURCE_5 = "source_5"
12 CONF_SOURCE_6 = "source_6"
13 
14 CONF_NOT_FIRST_RUN = "not_first_run"
15 
16 SERVICE_SNAPSHOT = "snapshot"
17 SERVICE_RESTORE = "restore"
18 
19 FIRST_RUN = "first_run"
20 MONOPRICE_OBJECT = "monoprice_object"
21 UNDO_UPDATE_LISTENER = "update_update_listener"