Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Smart Meter Texas integration."""
2 
3 from datetime import timedelta
4 
5 SCAN_INTERVAL = timedelta(hours=1)
6 DEBOUNCE_COOLDOWN = 1800 # Seconds
7 
8 DATA_COORDINATOR = "coordinator"
9 DATA_SMART_METER = "smart_meter_data"
10 
11 DOMAIN = "smart_meter_texas"
12 
13 METER_NUMBER = "meter_number"
14 ESIID = "electric_service_identifier"
15 LAST_UPDATE = "last_updated"
16 ELECTRIC_METER = "Electric Meter"