Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the System Bridge integration."""
2 
3 from typing import Final
4 
5 from systembridgemodels.modules import Module
6 
7 DOMAIN = "system_bridge"
8 
9 MODULES: Final[list[Module]] = [
10  Module.BATTERY,
11  Module.CPU,
12  Module.DISKS,
13  Module.DISPLAYS,
14  Module.GPUS,
15  Module.MEDIA,
16  Module.MEMORY,
17  Module.PROCESSES,
18  Module.SYSTEM,
19 ]
20 
21 DATA_WAIT_TIMEOUT: Final[int] = 10