I am using nmap in order to track device presence at home. There is an issue with nmap failing to detect iPhones, but it can be tackled with the option consider_home: 900 basically saying wait 15 min before considering the device as gone away. This is my configuration. So I get my icons saying home when I am home and correctly saying away when I am away.
device_tracker:
- platform: nmap_tracker
hosts: 192.168.0.100-150
consider_home: 900
interval_seconds: 15
track_new_devices: true
The problem is that history is simply not recorded at all. My device is in status not_home. but my history graph just shows home all the time.
Any ideas why this happens?
Ben