Skip to content

ADS-B flight tracker counter for Home Assistant or Domoticz Python

License

Notifications You must be signed in to change notification settings

freijn/ADS-B-FlightTracker-counter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ADS-B-FlightTracker-counter

ADS-B flight tracker counter for Home Assistant or Domoticz Python 3.0

If you do have your own ADS-B receiver with a dongle and Raspberry Pi than this is your next step if you also run HomeAssistant or Domoticz.

The FlightRadar24 or FlightAware packages use dump1090 to decode the ADS-B traffic.

This Python script runs in the background and examines the dump1090 file every x seconds. If an airplane flies into the defined circle ( 10 Km by default ) around your place it reports the airplane. This is then sent to eighter sent via MQTT to Home Assistant of via HTTP json to Domoticz. All free configurable in the first part of the file.

This process does just read the file, so runs nice and quiet next to your favorite tracker installation.

As both processes read the file, sometimes the python does crash. Have not yet been able to catch this error. For this I have a job running every 1 min to check and restart if required.

  • create file /home/pi/flycheck.sh with the content :
#! /bin/bash

case "$(pidof python home/pi/fly.py | wc -w)" in

0)  python /home/pi/fly.py &
    ;;
1)  # all ok
    ;;
*)  kill $(pidof python /home/pi/fly.py | awk '{print $1}')
    ;;
esac
  • add this line into the crontab ( edit via crontab -e)
*/1 * * * * /home/pi/flycheck.sh >> /home/pi/my.log 2>&1

https://github.com/freijn/ADS-B-FlightTracker-counter/blob/main/Capture.JPG

https://github.com/freijn/ADS-B-FlightTracker-counter/blob/main/domoticz.jpg

About

ADS-B flight tracker counter for Home Assistant or Domoticz Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages