mirror of
https://github.com/home-assistant/core.git
synced 2026-08-15 17:52:59 +01:00
14 lines
296 B
Python
14 lines
296 B
Python
"""Constants for Airthings BLE."""
|
|
|
|
from airthings_ble import AirthingsDeviceType
|
|
|
|
DOMAIN = "airthings_ble"
|
|
MFCT_ID = 820
|
|
|
|
DEVICE_MODEL = "device_model"
|
|
|
|
DEFAULT_SCAN_INTERVAL = 300
|
|
DEVICE_SPECIFIC_SCAN_INTERVAL = {AirthingsDeviceType.CORENTIUM_HOME_2.value: 1800}
|
|
|
|
MAX_RETRIES_AFTER_STARTUP = 5
|