{"id":19807881,"url":"https://github.com/slayingripper/dump1090tomqtt","last_synced_at":"2026-05-07T01:32:35.425Z","repository":{"id":238100132,"uuid":"794997410","full_name":"Slayingripper/Dump1090toMqtt","owner":"Slayingripper","description":"Dump1090toMQTT is a Python script that monitors data from a dump1090 server, which provides information about airplanes, and publishes this data to an MQTT broker for further processing. ","archived":false,"fork":false,"pushed_at":"2024-05-04T09:49:01.000Z","size":63,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T18:12:23.012Z","etag":null,"topics":["dump1090","linux","mqtt","sdr"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Slayingripper.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-02T11:34:53.000Z","updated_at":"2024-05-04T09:49:04.000Z","dependencies_parsed_at":"2024-05-04T10:46:54.424Z","dependency_job_id":null,"html_url":"https://github.com/Slayingripper/Dump1090toMqtt","commit_stats":null,"previous_names":["slayingripper/dump1090tomqtt"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Slayingripper/Dump1090toMqtt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slayingripper%2FDump1090toMqtt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slayingripper%2FDump1090toMqtt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slayingripper%2FDump1090toMqtt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slayingripper%2FDump1090toMqtt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Slayingripper","download_url":"https://codeload.github.com/Slayingripper/Dump1090toMqtt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slayingripper%2FDump1090toMqtt/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265701111,"owners_count":23813749,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dump1090","linux","mqtt","sdr"],"created_at":"2024-11-12T09:12:10.190Z","updated_at":"2026-05-07T01:32:30.387Z","avatar_url":"https://github.com/Slayingripper.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dump1090toMQTT\n\n\n![Logo](logo.jpg)\n    \n## Overview\n\nDump1090toMQTT is a Python script that monitors data from a dump1090 server, which provides information about airplanes, and publishes this data to an MQTT broker for further processing. The script can be run as a service, continuously collecting data and publishing it to the MQTT broker.\n\n## Features\n\n- Monitors data from a dump1090 server.\n- Publishes airplane data to an MQTT broker.\n- Can be run as a service for continuous monitoring.\n\n## Requirements\n\n- Python 3.x\n- paho-mqtt library (`pip install paho-mqtt`)\n\n## Configuration\n\nThe configuration for the script is stored in a `config.ini` file. This file contains the following sections:\n\n### [dump1090]\n\n- `host`: The IP address of the dump1090 server.\n- `port`: The port number of the dump1090 server.\n\n### [mqtt]\n\n- `host`: The IP address of the MQTT broker.\n- `port`: The port number of the MQTT broker.\n\nExample `config.ini`:\n\n```ini\n[dump1090]\nhost = 172.25.164.232\nport = 30003\n\n[mqtt]\nhost = 172.25.96.250\nport = 1883\n```\n\n## Usage\n\n1. Install the required dependencies:\n\n   ```bash\n   pip install paho-mqtt\n   ```\n\n2. Configure the `config.ini` file with the appropriate IP addresses and port numbers.\n\n3. Run the script:\n\n   ```bash\n   python Dump1090toMQTT.py\n   ```\n\n   The script will connect to the dump1090 server, collect airplane data, and publish it to the MQTT broker.\n\n## Running as a Service\n\nTo run the script as a service, follow these steps:\n\n1. Create a systemd service unit file named `dump1090tomqtt.service`:\n\n   ```ini\n   [Unit]\n   Description=Dump1090toMQTT Service\n   After=network.target\n\n   [Service]\n   Type=simple\n   User=your_username\n   WorkingDirectory=/path/to/your/script/directory\n   ExecStart=/usr/bin/python3 /path/to/your/Dump1090toMQTT.py\n   Restart=always\n\n   [Install]\n   WantedBy=multi-user.target\n   ```\n\n   Replace `your_username` with your username and `/path/to/your/script` with the actual path where your Python script is located.\n\n2. Save the file and reload the systemd manager configuration:\n\n   ```bash\n   sudo systemctl daemon-reload\n   ```\n\n3. Start and enable the service:\n\n   ```bash\n   sudo systemctl start dump1090tomqtt\n   sudo systemctl enable dump1090tomqtt\n   ```\n\n   Now your script will run as a service and automatically start whenever your system boots up.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslayingripper%2Fdump1090tomqtt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslayingripper%2Fdump1090tomqtt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslayingripper%2Fdump1090tomqtt/lists"}