mirror of
https://github.com/home-assistant/core.git
synced 2026-07-02 20:26:16 +01:00
efb0e80577
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
321 B
Python
14 lines
321 B
Python
"""Constants for the Smart Meter Texas integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
SCAN_INTERVAL = timedelta(hours=1)
|
|
DEBOUNCE_COOLDOWN = 1800 # Seconds
|
|
|
|
DOMAIN = "smart_meter_texas"
|
|
|
|
METER_NUMBER = "meter_number"
|
|
ESIID = "electric_service_identifier"
|
|
LAST_UPDATE = "last_updated"
|
|
ELECTRIC_METER = "Electric Meter"
|