mirror of
https://github.com/home-assistant/core.git
synced 2026-07-14 10:03:52 +01:00
15 lines
273 B
Python
15 lines
273 B
Python
"""Constants for the NeoPool integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "neopool"
|
|
NAME = "NeoPool"
|
|
|
|
PLATFORMS: list[Platform] = [Platform.SENSOR]
|
|
|
|
DEFAULT_SCAN_INTERVAL = 20 # in seconds
|
|
DEFAULT_PORT = 502
|
|
DEFAULT_UNIT_ID = 1
|
|
|
|
CURRENT_VERSION = 6
|