mirror of
https://github.com/agessaman/meshcore-packet-capture.git
synced 2026-04-20 23:23:37 +00:00
34 lines
833 B
Text
34 lines
833 B
Text
[connection]
|
|
# Connection type: serial or ble
|
|
connection_type = ble
|
|
|
|
# Serial port (for serial connection)
|
|
#serial_port = /dev/ttyUSB0
|
|
|
|
# BLE device name (for BLE connection)
|
|
#ble_device_name = MeshCore-HOWL
|
|
|
|
# BLE address (for BLE connection) - use specific UUID to target exact device
|
|
# format: Name or UUID like "12:34:56:78:90:AB" or "78212A67-3FF9-83AD-D3F0-3B432DDEB5F9"
|
|
ble_address = YOUR_BLE_ADDRESS_HERE
|
|
|
|
# Connection timeout in seconds
|
|
timeout = 30
|
|
|
|
[mqtt]
|
|
# MQTT broker settings
|
|
server = YOUR_MQTT_SERVER_HERE
|
|
port = 1883
|
|
username = YOUR_MQTT_USERNAME_HERE
|
|
password = YOUR_MQTT_PASSWORD_HERE
|
|
client_id_prefix = meshcore_
|
|
qos = 0
|
|
retain = true
|
|
|
|
[topics]
|
|
# MQTT topic structure
|
|
status = meshcore/test/status
|
|
raw = meshcore/test/raw
|
|
decoded = meshcore/test/decoded
|
|
packets = meshcore/test/packets
|
|
debug = meshcore/test/debug
|