Welcome to the Mesh Bot project! This feature-rich bot is designed to enhance your Meshtastic network experience with a variety of powerful tools and fun features, connectivity and utility through text-based message delivery. Whether you're looking to perform network tests, send messages, or even play games, mesh_bot.py has you covered.
- Automated Responses: The bot detects keywords like "ping" and responds with "pong" in direct messages (DMs) or group channels.
- Customizable Triggers: Monitor group channels for specific keywords and set custom responses.
- Emergency Response: Monitor channels for keywords indicating emergencies and alert a wider audience.
- Build, Test Local Mesh: Ping allow for message delivery testing with more realistic packets vs. telemetry
- Test Node Hardware:
test
will send incremental sized data into the radio buffer for overall length of message testing
- Simultaneous Monitoring: Monitor two networks at the same time.
- Flexible Messaging: send mail and messages, between networks.
- Mail Messaging: Leave messages for other devices, which are sent as DMs when the device is seen.
- Scheduler: Schedule messages like weather updates or reminders for weekly VHF nets.
- Store and Forward: Replay messages with the
messages
command, and log messages locally to disk. - Send Mail: Send mail to nodes using
bbspost @nodeNumber #message
orbbspost @nodeShortName #message
. - BBS Linking: Combine multiple bots to expand BBS reach.
- E-Mail/SMS: Send mesh-messages to E-Mail or SMS expanding visability.
- NOAA location Data: Get localized weather(alerts), River Flow, and Tide information. Open-Meteo is used for wx only outside NOAA coverage.
- Wiki Integration: Look up data using Wikipedia results.
- Ollama LLM AI: Interact with the Ollama LLM AI for advanced queries and responses.
- Satalite Pass Info: Get passes for satalite at your location.
- Location-Based Alerts: Get notified when members arrive back at a configured lat/long, perfect for remote locations like campsites.
- Built-in Games: Enjoy games like DopeWars, Lemonade Stand, BlackJack, and VideoPoker.
- Command-Based Gameplay: Issue
games
to display help and start playing.
- SNR RF Activity Alerts: Monitor a radio frequency and get alerts when high SNR RF activity is detected.
- Hamlib Integration: Use Hamlib (rigctld) to watch the S meter on a connected radio.
- FEMA iPAWS/EAS Alerts via API: Use an internet-connected node to message Emergency Alerts from FEMA
- NOAA EAS Alerts via API: Use an internet-connected node to message Emergency Alerts from NOAA.
- EAS Alerts over the air: Utilizing external tools to report EAS alerts offline over mesh.
- UK.GOV Alerts: Pulling data form the UK.GOV alert page
- File Monitor: Monitor a flat/text file for changes, broadcast the contents of the message to the mesh channel.
- News File: On request of news, the contents of the file are returned.
- HTML Generator: Visualize bot traffic and data flows with a built-in HTML generator for data reporting.
- Message Chunking: Automatically chunk messages over 160 characters to ensure higher delivery success across hops.
This project is developed on Linux (specifically a Raspberry Pi) but should work on any platform where the Meshtastic protobuf API modules are supported, and with any compatible Meshtastic hardware. For pico or low-powered devices, see projects for embedding, buildroot, there is also femtofox. ๐ฅ Please use responsibly and follow local rulings for such equipment. This project captures packets, logs them, and handles over the air communications which can include PII such as GPS locations.
If you dont have git you will need it sudo apt-get install git
git clone https://github.com/spudgunman/meshing-around
The code is under active development, so make sure to pull the latest changes regularly!
- Automated Installation:
install.sh
will automate optional venv and requirements installation. - Launch Script:
launch.sh
will activate and launch the app in the venv
If you prefer to use Docker, follow these steps:
- Ensure your serial port is properly shared and the GPU is configured if using LLM in docker with NVIDIA.
- Build the Docker image:
cd meshing-around docker build -t meshing-around .
- Run the Docker container:
docker run --rm -it --device=/dev/ttyUSB0 meshing-around
Install the required dependencies using pip:
pip install -r requirements.txt
Copy the configuration template to config.ini
and edit it to suit your needs:
cp config.template config.ini
Copy the config.template to config.ini
and set the appropriate interface for your method (serial/ble/tcp). While BLE and TCP will work, they are not as reliable as serial connections. There is a watchdog to reconnect TCP if possible. To get the BLE MAC address, use:
meshtastic --ble-scan
Note: The code has been tested with a single BLE device and is written to support only one BLE port.
# config.ini
# type can be serial, tcp, or ble.
# port is the serial port to use; commented out will try to auto-detect
# hostname is the IP address of the device to connect to for TCP type
# mac is the MAC address of the device to connect to for BLE type
[interface]
type = serial
# port = '/dev/ttyUSB0'
# hostname = 192.168.0.1
# mac = 00:11:22:33:44:55
# Additional interface for dual radio support. See config.template for more.
[interface2]
enabled = False
The following settings determine how the bot responds. By default, the bot will not spam the default channel. Setting respond_by_dm_only
to True
will force all messages to be sent via DM, which may not be desired. Setting it to [False
] will allow responses in the channel for all to see. If you have no default channel you can set this value to -1
or any unused channel index. You can also have the bot ignore the defaultChannel for any commands, but still observe the channel.
[general]
respond_by_dm_only = True
defaultChannel = 0
ignoreDefaultChannel = False # ignoreDefaultChannel, the bot will ignore the default channel set above
The weather forecasting defaults to NOAA, for locations outside the USA, you can set UseMeteoWxAPI
to True
, to use a global weather API. The lat
and lon
are default values when a node has no location data. It is also the default (or value when none found for user) for Sentry, all NOAA, repeater lookup, etc.
[location]
enabled = True
lat = 48.50
lon = -123.0
UseMeteoWxAPI = True
riverListDefault = # NOAA Hydrology data, unique identifiers, LID or USGS ID
Modules can be enabled or disabled as needed.
[bbs]
enabled = False
[general]
DadJokes = False
StoreForward = False
The history command shows the last commands the user ran, and [lheard
] reflects the last users on the bot.
enableCmdHistory = True # history command enabler
lheardCmdIgnoreNodes = # command history ignore list ex: 2813308004,4258675309
Sentry Bot detects anyone coming close to the bot-node. uses the Location Lat/Lon value.
SentryEnabled = True # detect anyone close to the bot
emailSentryAlerts = True # if SMTP enabled send alert to sysop email list
SentryRadius = 100 # radius in meters to detect someone close to the bot
SentryChannel = 9 # holdoff time multiplied by seconds(20) of the watchdog
SentryHoldoff = 2 # channel to send a message to when the watchdog is triggered
sentryIgnoreList = # list of ignored nodes numbers ex: 2813308004,4258675309
To enable connectivity with SMTP/IMAP.
[smtp]
# enable or disable the SMTP module, minimum required for outbound notifications
enableSMTP = True # enable or disable the IMAP module for inbound email, not implimented yet
enableImap = False # list of Sysop Emails seperate with commas, used only in emergemcy responder currently
sysopEmails =
# See config.template for all the SMTP settings
SMTP_SERVER = smtp.gmail.com
SMTP_AUTH = True
EMAIL_SUBJECT = Meshtasticโ๏ธ
Traps the following ("emergency", "911", "112", "999", "police", "fire", "ambulance", "rescue") keywords. Responds to the user, and calls attention to the text message in logs and via another network or channel.
[emergencyHandler]
# enable or disable the emergency response handler
enabled = True
# channel to send a message to when the emergency handler is triggered
alert_channel = 2
alert_interface = 1
To Alert on Mesh with the EAS API you can set the channels and enable, checks every 20min.
This uses USA: SAME, FIPS, ZIP code to locate the alerts in the feed. By default ignoring Test messages. UK.gov for England
eAlertBroadcastEnabled = False # Goverment IPAWS/CAP Alert Broadcast
eAlertBroadcastCh = 2,3 # Goverment Emergency IPAWS/CAP Alert Broadcast Channels
ignoreFEMAtest = True # Ignore any headline that includes the word Test
# comma separated list of codes (e.g., SAME,FIPS,ZIP) trigger local alert.
# find your SAME https://www.weather.gov/nwr/counties
mySAME = 053029,053073
enableGBalerts = False # use UK.gov for alert source
This uses the defined lat-long of the bot for collecting of data from the API. see File-Monitoring for ideas to collect EAS alerts from a RTL-SDR.
# EAS Alert Broadcast
wxAlertBroadcastEnabled = True
# EAS Alert Broadcast Channels
wxAlertBroadcastCh = 2,4
A repeater function for two different nodes and cross-posting messages. The repeater_channels
is a list of repeater channels that will be consumed and rebroadcast on the same number channel on the other device, node, or interface. Each node should have matching channel numbers. The channel names and PSK do not need to be the same on the nodes. Use this feature responsibly to avoid creating a feedback loop.
[repeater] # repeater module
enabled = True
repeater_channels = [2, 3]
For Ollama to work, the command line ollama run 'model'
needs to work properly. Ensure you have enough RAM and your GPU is working as expected. The default model for this project is set to gemma2:2b
. Ollama can be remote Ollama Server works on a pi58GB with 40 second or less response time.
# Enable ollama LLM see more at https://ollama.com
ollama = True # Ollama model to use (defaults to gemma2:2b)
ollamaModel = gemma2 #ollamaModel = llama3.1
ollamaHostName = http://localhost:11434 # server instance to use (defaults to local machine install)
Also see llm.py
for changing the defaults of:
# LLM System Variables
llmEnableHistory = True # enable history for the LLM model to use in responses adds to compute time
llmContext_fromGoogle = True # enable context from google search results helps with responses accuracy
googleSearchResults = 3 # number of google search results to include in the context more results = more compute time
A module allowing a Hamlib compatible radio to connect to the bot. When functioning, it will message the configured channel with a message of in use. Requires hamlib/rigctld to be running as a service.
[radioMon]
enabled = True
rigControlServerAddress = localhost:4532
sigWatchBroadcastCh = 2 # channel to broadcast to can be 2,3
signalDetectionThreshold = -10 # minimum SNR as reported by radio via hamlib
signalHoldTime = 10 # hold time for high SNR
signalCooldown = 5 # the following are combined to reset the monitor
signalCycleLimit = 5
Some dev notes for ideas of use
[fileMon]
filemon_enabled = True
file_path = alert.txt
broadcastCh = 2,4
enable_read_news = False
news_file_path = news.txt
news_random_line = False # only return a single random line from the news file
To Monitor EAS with no internet connection see the following notes
- samedec rust decoder much like multimon-ng
- sameold rust SAME message translator much like EAS2Text and dsame3
no examples yet for these tools
- EAS2Text
- depends on multimon-ng, direwolf, samedec rust decoder much like multimon-ng
- dsame3
- has a sample .ogg file for testing alerts
The following example shell command can pipe the data using etc/eas_alert_parser.py to alert.txt
sox -t ogg WXR-RWT.ogg -esigned-integer -b16 -r 22050 -t raw - | multimon-ng -a EAS -v 1 -t raw - | python eas_alert_parser.py
The following example shell command will pipe rtl_sdr to alert.txt
rtl_fm -f 162425000 -s 22050 | multimon-ng -t raw -a EAS /dev/stdin | python eas_alert_parser.py
a newspaper could be built by external scripts. could use Ollama to compile text via news web pages and write news.txt
In the config.ini enable the module
[scheduler]
# enable or disable the scheduler module
enabled = True
The actions are via code only at this time. See mesh_bot.py around line 1097 to edit the schedule. See schedule documentation for more. Recomend to backup changes so they dont get lost.
#Send WX every Morning at 08:00 using handle_wxc function to channel 2 on device 1
schedule.every().day.at("08:00").do(lambda: send_message(handle_wxc(0, 1, 'wx'), 2, 0, 1))
#Send a Net Starting Now Message Every Wednesday at 19:00 using send_message function to channel 2 on device 1
schedule.every().wednesday.at("19:00").do(lambda: send_message("Net Starting Now", 2, 0, 1))
The scheduler also handles the BBL Link Brodcast message, this would be an esxample of a mesh-admin channel on 8 being used to pass BBS post traffic between two bots as the initator, one direction pull.
# Send bbslink looking for peers every other day at 10:00 using send_message function to channel 8 on device 1
schedule.every(2).days.at("10:00").do(lambda: send_message("bbslink MeshBot looking for peers", 8, 0, 1))
bbslink_enabled = True
bbslink_whitelist = # list of whitelisted nodes numbers ex: 2813308004,4258675309 empty list allows all
There is no direct support for MQTT in the code, however, reports from Discord are that using meshtasticd with no radio and attaching the bot to the software node, which is MQTT-linked, allows routing.There also seems to be a quicker way to enable MQTT by having your bot node with the enabled serial module with echo enabled and MQTT uplink and downlink. These two methods have been mentioned as allowing MQTT routing for the project. Tested working fully Firmware:2.5.15.79da236 with mosquitto.
Command | Description | โ Works Off-Grid |
---|---|---|
ping , ack |
Return data for signal. Example: ping 15 #DrivingI5 (activates auto-ping every 20 seconds for count 15) |
โ |
test |
Returns like ping but also can be used to test the limits of data buffers test 4 sends data to the maxBuffer limit (default 220) |
โ |
whereami |
Returns the address of the sender's location if known | |
whoami |
Returns details of the node asking, also returned when position exchanged ๐ | โ |
whois |
Returns details known about node, more data with bbsadmin node | โ |
motd |
Displays the message of the day or sets it. Example: motd $New Message Of the day |
โ |
lheard |
Returns the last 5 heard nodes with SNR. Can also use sitrep |
โ |
history |
Returns the last commands run by user(s) | โ |
sysinfo |
Returns the bot node telemetry info | โ |
cmd |
Returns the list of commands (the help message) | โ |
Command | Description | |
---|---|---|
sun and moon |
Return info on rise and set local time | โ |
solar |
Gives an idea of the x-ray flux | |
hfcond |
Returns a table of HF solar conditions | |
tide |
Returns the local tides (NOAA data source) | |
rlist |
Returns a table of nearby repeaters from RepeaterBook | |
wx and wxc |
Return local weather forecast (wxc is metric value), NOAA or Open Meteo for weather forecasting | |
wxa and wxalert |
Return NOAA alerts. Short title or expanded details | |
ea and ealert |
Return FEMA iPAWS/EAS alerts in USA or UK. Headline or expanded details for USA | |
riverflow |
Return information from NOAA for river flow info. Example: riverflow modules/settings.py |
Command | Description | |
---|---|---|
bbshelp |
Returns the following help message | โ |
bbslist |
Lists the messages by ID and subject | โ |
bbsread |
Reads a message. Example: bbsread #1 |
โ |
bbspost |
Posts a message to the public board or sends a DM(Mail) Examples: bbspost $subject #message , bbspost @nodeNumber #message , bbspost @nodeShortName #message |
โ |
bbsdelete |
Deletes a message. Example: bbsdelete #4 |
โ |
bbsinfo |
Provides stats on BBS delivery and messages (sysop) | โ |
bbslink |
Links Bulletin Messages between BBS Systems | โ |
email: |
Sends email to address on file for the node or email: [email protected] # hello from mesh |
|
sms: |
Send sms-email to multiple address on file | |
setemail |
Sets the email for easy communciations | |
setsms |
Adds the SMS-Email for quick communications | |
clearsms |
Clears all SMS-Emails on file for node |
Command | Description | |
---|---|---|
wiki: |
Searches Wikipedia and returns the first few sentences of the first result if a match. Example: wiki: lora radio |
|
askai and ask: |
Ask Ollama LLM AI for a response. Example: askai what temp do I cook chicken |
โ |
messages |
Replays the last messages heard, like Store and Forward | โ |
readnews |
returns the contents of a file (news.txt, by default) via the chunker on air | โ |
satpass |
returns the pass info from API for defined NORAD ID in config or Example: satpass 25544,33591 |
Command | Description | |
---|---|---|
joke |
Tells a joke | โ |
lemonstand |
Plays the classic Lemonade Stand finance game | โ |
dopewars |
Plays the classic drug trader game | โ |
blackjack |
Plays Blackjack (Casino 21) | โ |
videopoker |
Plays basic 5-card hold Video Poker | โ |
mastermind |
Plays the classic code-breaking game | โ |
golfsim |
Plays a 9-hole Golf Simulator | โ |
I used ideas and snippets from other responder bots and want to call them out!
- xdep: For the reporting tools.
- Nestpebble: For new ideas and enhancements.
- mrpatrick1991: For Docker configurations.
- https://github.com/A-c0rN: Assistance with iPAWS and EAS
- Mike O'Connell/skrrt: For eas_alert_parser enhanced by sheer.cold
- PiDiBi: For looking at test functions and other suggestions like wxc, CPU use, and alerting ideas.
- Cisien, bitflip, Woof, propstg, Josh and Hailo1999: For testing and feature ideas on Discord and GitHub.
- Meshtastic Discord Community: For tossing out ideas and testing code.
- Node Backup Management: Node Slurper
Python 3.8? or later is needed (dev on latest). The following can be installed with pip install -r requirements.txt
or using the install.sh script for venv and automation:
pip install meshtastic
pip install pubsub
Mesh-bot enhancements:
pip install pyephem
pip install requests
pip install geopy
pip install maidenhead
pip install beautifulsoup4
pip install dadjokes
pip install schedule
pip install wikipedia
For the Ollama LLM:
pip install googlesearch-python
To enable emoji in the Debian console, install the fonts:
sudo apt-get install fonts-noto-color-emoji
Meshtasticยฎ is a registered trademark of Meshtastic LLC. Meshtastic software components are released under various licenses, see GitHub for details. No warranty is provided - use at your own risk.