1
0
mirror of https://github.com/elisspace/core.git synced 2026-09-14 15:06:49 +00:00
Files
core/homeassistant/components/nmap_tracker/const.py
2021-08-16 15:19:32 -05:00

15 lines
369 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 -T4 --min-rate 10 --host-timeout 5s"
TRACKER_SCAN_INTERVAL = 120