-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
57 lines (50 loc) · 1.79 KB
/
config.yaml.example
File metadata and controls
57 lines (50 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Example configuration file for the ADSB to Meshtastic Connector.
#
# To use this file:
# 1. Copy it to 'config.yaml'
# 2. Uncomment and edit the settings you want to change.
# 3. Run the script with the '--config config.yaml' argument.
#
# Any command-line argument will override the values in this file.
# --- dump1090 Settings ---
# The hostname or IP address of your dump1090 instance.
# dump1090_host: localhost
# The port for the dump1090 SBS-1 stream.
# dump1090_port: 30003
# --- Meshtastic Device Settings ---
# To connect to a remote Meshtastic device over the network, specify its host.
# If this is commented out, the script will search for a local serial device.
# meshtastic_host: 192.168.1.100
# The TCP port for the network-connected Meshtastic device.
# meshtastic_port: 4403
# Set to true to disable all attempts to connect to a physical Meshtastic device.
# no_meshtastic: false
# --- MUDP Broadcasting Settings ---
# Set to true to enable MUDP broadcasting on the local network.
# mudp: false
# The MUDP multicast group address.
# mudp_host: 224.0.0.69
# The MUDP multicast port.
# mudp_port: 4403
# --- MUDP Gateway Identity ---
# The static node identity to use for all MUDP broadcasts.
# mudp_node_id: '!adsb-gw'
# mudp_node_longname: 'ADSB Gateway'
# mudp_node_shortname: 'ADSB'
# --- General Settings ---
# Seconds before sending a new update for the same aircraft.
# update_interval: 300
# Enable debug logging (True/False).
# debug: false
# --- Filtering Settings ---
# Your station's latitude and longitude (required for radius filtering).
# home_lat: 51.5074
# home_lon: -0.1278
# Maximum radius in kilometers for broadcasts.
# radius: 50.0
# Altitude range filter in feet.
# min_alt: 0
# max_alt: 45000
# --- Dashboard Settings ---
# The port for the local web dashboard.
# web_port: 8080