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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
import meshtastic.serial_interface
from pubsub import pub
from meshtastic.protobuf import mesh_pb2, storeforward_pb2, paxcount_pb2
from meshtastic import BROADCAST_NUM
import time
import sys
import signal
def onDisconnection(interface):
#there's no need to close a connection once disconnected
print("Awknowledged disconnection")
def onConnection(interface):
print("Awknowledged connection")
def idToHex(nodeId):
return '!' + hex(nodeId)[2:]
def onReceive(packet, interface):
# Print all packets
# print(f"{packet} \n\n")
print("Received packet:")
print(f" From: {packet['from']} / {idToHex(packet['from'])}")
print(f" To: {packet['to']} / {idToHex(packet['to'])}")
if 'channel' in packet:
print(f" Channel: {packet['channel']}")
if 'rxSnr' in packet:
print(f" SNR: {packet['rxSnr']}")
if 'rxRssi' in packet:
print(f" RSSI: {packet['rxRssi']}")
if 'hopLimit' in packet:
print(f" Hop Limit: {packet['hopLimit']}")
if 'hopStart' in packet:
print(f" Hop Start: {packet['hopStart']}")
if 'priority' in packet:
print(f" Priority: {packet['priority']}")
if 'viaMqtt' in packet:
print(f" via MQTT: {packet['viaMqtt']}")
if 'decoded' in packet:
print(f" Port Number: {packet['decoded'].get('portnum', 'N/A')}")
if packet['decoded'].get('portnum') == 'NODEINFO_APP':
print(" Node Information:")
node_info = packet['decoded'].get('user', {})
print(f" ID: {node_info.get('id', 'N/A')}")
print(f" Long Name: {node_info.get('longName', 'N/A')}")
print(f" Short Name: {node_info.get('shortName', 'N/A')}")
print(f" MAC Address: {node_info.get('macaddr', 'N/A')}")
print(f" Hardware Model: {node_info.get('hwModel', 'N/A')}")
if 'role' in packet:
print(f" Role: {node_info.get('role', 'N/A')}")
if 'isLicensed' in packet:
print(f" Role: {node_info.get('isLicensed', 'N/A')}")
if 'hopsAway' in packet:
print(f" Hops Away: {packet['hopsAway']}")
elif packet['decoded'].get('portnum') == 'POSITION_APP':
print(" Position:")
position = packet['decoded']['position']
print(f" Latitude: {position.get('latitude', 'N/A')}")
print(f" Longitude: {position.get('longitude', 'N/A')}")
print(f" Altitude: {position.get('altitude', 'N/A')}")
if 'PDOP' in position:
print(f" PDOP: {position.get('PDOP', 'N/A')}")
if 'ground_track' in position:
print(f" Ground Track: {position.get('ground_track', 'N/A')}")
if 'sats_in_view:' in position:
print(f" Satellites in View: {position.get('sats_in_view:', 'N/A')}")
elif packet['decoded'].get('portnum') == 'TEXT_MESSAGE_APP':
print(" Text Message:")
print(f" Text: {packet['decoded']['text']}")
elif packet['decoded'].get('portnum') == 'TELEMETRY_APP':
print(" Telemetry:")
telemetry = packet['decoded'].get('telemetry', {})
print(f" Time: {telemetry.get('time', 'N/A')}")
print(" Device Metrics:")
device_metrics = telemetry.get('deviceMetrics', {})
if device_metrics:
print(f" Battery Level: {device_metrics.get('batteryLevel', 'N/A')}")
print(f" Voltage: {device_metrics.get('voltage', 'N/A')}")
print(f" Channel Utilization: {device_metrics.get('channelUtilization', 'N/A')}")
print(f" Air Utilization Tx: {device_metrics.get('airUtilTx', 'N/A')}")
print(f" Uptime Seconds: {device_metrics.get('uptimeSeconds', 'N/A')}")
power_metrics = telemetry.get('powerMetrics', {})
if power_metrics:
print(" Power Metrics:")
print(f" CH1 Voltage: {power_metrics.get('ch1_voltage', 'N/A')}")
print(f" CH1 Current: {power_metrics.get('ch1_current', 'N/A')}")
print(f" CH2 Voltage: {power_metrics.get('ch2_voltage', 'N/A')}")
print(f" CH2 Current: {power_metrics.get('ch2_current', 'N/A')}")
environment_metrics = telemetry.get('environmentMetrics', {})
if environment_metrics:
print(" Environment Metrics:")
print(f" Temperature: {environment_metrics.get('temperature', 'N/A')}")
print(f" Relative Humidity: {environment_metrics.get('relativeHumidity', 'N/A')}")
print(f" Barometric Pressure: {environment_metrics.get('barometricPressure', 'N/A')}")
elif packet['decoded'].get('portnum') == 'NEIGHBORINFO_APP':
# Neighbor Information
print(" Neighbor Information:")
message = mesh_pb2.NeighborInfo()
payload_bytes = packet['decoded'].get('payload', b'')
message.ParseFromString(payload_bytes)
print(f" Node ID: {message.node_id} / {idToHex(message.node_id)}")
print(f" Last Sent By ID: {message.last_sent_by_id}")
print(f" Node Broadcast Interval (secs): {message.node_broadcast_interval_secs}")
print(" Neighbors:")
for neighbor in message.neighbors:
print(f" Neighbor ID: {neighbor.node_id} / {idToHex(neighbor.node_id)}")
print(f" SNR: {neighbor.snr}")
elif packet['decoded'].get('portnum') == 'RANGE_TEST_APP':
print(" Range Test Information:")
payload = packet['decoded'].get('payload', b'')
print(f" Payload: {payload.decode()}")
elif packet['decoded'].get('portnum') == 'STORE_FORWARD_APP':
print(" Store Forward Information:")
message = storeforward_pb2.StoreAndForward()
payload_bytes = packet['decoded'].get('payload', b'')
message.ParseFromString(payload_bytes)
if message.HasField('stats'):
print(f" Statistics: {message.stats}")
if message.HasField('history'):
print(f" History: {message.history}")
if message.HasField('heartbeat'):
print(f" Heartbeat: {message.heartbeat}")
elif packet['decoded'].get('portnum') == 'ADMIN_APP':
print(" Administrative Information:")
payload = packet['decoded'].get('payload', b'')
print(f" Payload: {payload}")
admin_info = packet['decoded'].get('admin', {})
if 'getChannelResponse' in admin_info:
response = admin_info['getChannelResponse']
print(" Get Channel Response:")
print(f" Index: {response.get('index', 'N/A')}")
print(" Settings:")
settings = response.get('settings', {})
for key, value in settings.items():
print(f" {key}: {value}")
elif packet['decoded'].get('portnum') == 'PAXCOUNTER_APP':
print(" Paxcounter Information:")
message = paxcount_pb2.Paxcount()
payload_bytes = packet['decoded'].get('payload', b'')
message.ParseFromString(payload_bytes)
print(f" Wifi: {message.wifi}")
print(f" BLE: {message.ble}")
print(f" Uptime: {message.uptime}")
else:
print(f" Decoded packet does not contain data we are looking for: {packet['decoded'].get('portnum', 'N/A')}")
else:
print(" No 'decoded' key found in the packet. Our node doesn't have the encryption key!")
print()
# You need to close any active connections if you exit
# If you don't, the interface will continue to be active
# and any stored messages will stay stored on the device
# and will be sent on the stale connection
def signal_handler(sig, frame):
print("closing")
interface.close()
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
pub.subscribe(onReceive, 'meshtastic.receive')
pub.subscribe(onDisconnection, 'meshtastic.connection.lost')
pub.subscribe(onConnection, 'meshtastic.connection.established')
interface = meshtastic.serial_interface.SerialInterface()
while True:
time.sleep(1)
|