mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Change nx584 SCAN_INTERVAL to 10 seconds (#36581)
This commit is contained in:
parent
1ab1503641
commit
1169ac568b
@ -1,4 +1,5 @@
|
|||||||
"""Support for NX584 alarm control panels."""
|
"""Support for NX584 alarm control panels."""
|
||||||
|
from datetime import timedelta
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from nx584 import client
|
from nx584 import client
|
||||||
@ -25,6 +26,8 @@ from homeassistant.helpers import config_validation as cv, entity_platform
|
|||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
SCAN_INTERVAL = timedelta(seconds=10)
|
||||||
|
|
||||||
DEFAULT_HOST = "localhost"
|
DEFAULT_HOST = "localhost"
|
||||||
DEFAULT_NAME = "NX584"
|
DEFAULT_NAME = "NX584"
|
||||||
DEFAULT_PORT = 5007
|
DEFAULT_PORT = 5007
|
||||||
|
Loading…
x
Reference in New Issue
Block a user