hass-core/homeassistant/components/nmap_tracker/const.py
2021-06-28 12:49:14 +02:00

14 lines
351 B
Python

"""The Nmap Tracker integration."""
DOMAIN = "nmap_tracker"
PLATFORMS = ["device_tracker"]
NMAP_TRACKED_DEVICES = "nmap_tracked_devices"
# Interval in minutes to exclude devices from a scan while they are home
CONF_HOME_INTERVAL = "home_interval"
CONF_OPTIONS = "scan_options"
DEFAULT_OPTIONS = "-F --host-timeout 5s"
TRACKER_SCAN_INTERVAL = 120