Change nx584 SCAN_INTERVAL to 10 seconds (#36581)

pull/36613/head
mreiling 2020-06-09 12:02:08 -07:00 committed by GitHub
parent 1ab1503641
commit 1169ac568b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
"""Support for NX584 alarm control panels."""
from datetime import timedelta
import logging
from nx584 import client
@ -25,6 +26,8 @@ from homeassistant.helpers import config_validation as cv, entity_platform
_LOGGER = logging.getLogger(__name__)
SCAN_INTERVAL = timedelta(seconds=10)
DEFAULT_HOST = "localhost"
DEFAULT_NAME = "NX584"
DEFAULT_PORT = 5007