Meshtastic @ Disobey 2026
Design principles, i.e. "why these settings?":
- Short range, at the event or at the immediate surroundings.
- As little extra traffic (e.g. telemetry) as possible to save airtime.
- No position broadcast, because we're inside a building any way.
- No MQTT, because this is a) kind of a test and b) an event thing, not an internet thing
Settings
- Region: EU_868
- LoRa preset: SHORT_FAST
- Hop limit: 3 (max)
- All things MQTT: No
- Disable telemetry (or at least use a large interval, e.g. 3h)
- Use a reasonable nodeinfo broadcast interval (e.g. 3h)
- Disable (at least smart) position broadcast
Channels
Channel 0: "Disobey"
General event chat
- Name: Disobey
- PSK (base64): ZXZlcnl0aGluZ2lzYm9yaw==
- Uplink enabled: false
- Downlink enabled: false
- Position precision: 0 (position disabled)
Channel 1: "MeshChat"
Mesh-related chat, connection tests, etc.
- Name: MeshChat
- PSK (base64): RElTT0JFWTIwMjYtTUVTSA==
- Uplink enabled: false
- Downlink enabled: false
- Position precision: 0 (position disabled)
Channel URL and QR code
Complete URL (includes all channels): https://meshtastic.org/e/#Ch0SEGV2ZXJ5dGhpbmdpc2JvcmsaB0Rpc29iZXk6AAoeEhBESVNPQkVZMjAyNi1NRVNIGghNZXNoQ2hhdDoAEhsIARAGGPoBIAsoBTgDQANIAVAbaAHABgHIBgE
Python CLI script
PORT="/dev/ttyUSB0"
meshtastic -s $PORT \
--set device.node_info_broadcast_secs 10800 \
--set telemetry.device_telemetry_enabled false \
--set position.position_broadcast_smart_enabled false \
--set position.fixed_position false \
--remove-position
meshtastic -s $PORT \
--set lora.use_preset true \
--set lora.modem_preset SHORT_FAST
meshtastic -s $PORT \
--set lora.ignore_mqtt true \
--set lora.config_ok_to_mqtt false \
--set device.role CLIENT \
--set mqtt.enabled false
meshtastic -s $PORT --ch-index 0 \
--ch-set name Disobey \
--ch-set psk base64:ZXZlcnl0aGluZ2lzYm9yaw== \
--ch-set uplink_enabled false \
--ch-set downlink_enabled false \
--ch-set module_settings.position_precision 0
meshtastic -s $PORT --ch-index 1 \
--ch-set name MeshChat \
--ch-set psk base64:RElTT0JFWTIwMjYtTUVTSA== \
--ch-set uplink_enabled false \
--ch-set downlink_enabled false \
--ch-set module_settings.position_precision 0