meshtastic 0.0.32 → 0.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/meshtastic/mqtt.rb +4 -4
- data/lib/meshtastic/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5cc77b2e88470456485851d5721eeffe6e236272135f59e8e9f9ff3cba390cb6
|
|
4
|
+
data.tar.gz: 7404c0e767b75ba26c36f84d5ed0b3c66a2f40c14faf7f5e0d3e0e96cef506a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c2fe7fd8d6b2dd057a12491f62d0fdaec47fe64b90a1237e4880a035e6e8608a3ac78f8f0910b8b9a8250133a4404dddf9b8515b1f77515c6c8e61fcb2a1b51
|
|
7
|
+
data.tar.gz: a3330f2c01d5bddeba52d5c781c57b3ff0667712d8df94733ec87795abf5b23d27831b2717d10071214460f96f1a39bbdee162a5d39d5b64c271fb68bb7c3d2f
|
data/lib/meshtastic/mqtt.rb
CHANGED
|
@@ -166,16 +166,16 @@ module Meshtastic
|
|
|
166
166
|
pb_obj = Meshtastic::Routing.decode(payload)
|
|
167
167
|
when :SERIAL_APP
|
|
168
168
|
pb_obj = Meshtastic::SerialConnectionStatus.decode(payload)
|
|
169
|
-
when :SIMULATOR_APP
|
|
169
|
+
when :SIMULATOR_APP,
|
|
170
|
+
:TEXT_MESSAGE_COMPRESSED_APP
|
|
171
|
+
# Unsure if this is the correct protobuf object
|
|
172
|
+
# for TEXT_MESSAGE_COMPRESSED_APP
|
|
170
173
|
pb_obj = Meshtastic::Compressed.decode(payload)
|
|
171
174
|
when :STORE_FORWARD_APP
|
|
172
175
|
pb_obj = Meshtastic::StoreAndForward.decode(payload)
|
|
173
176
|
when :TEXT_MESSAGE_APP
|
|
174
177
|
# Unsure if this is the correct protobuf object
|
|
175
178
|
pb_obj = Meshtastic::MqttClientProxyMessage.decode(payload)
|
|
176
|
-
when :TEXT_MESSAGE_COMPRESSED_APP
|
|
177
|
-
# Unsure if this is the correct protobuf object
|
|
178
|
-
pb_obj = Meshtastic::Compressed.decode(payload)
|
|
179
179
|
when :TELEMETRY_APP
|
|
180
180
|
pb_obj = Meshtastic::Telemetry.decode(payload)
|
|
181
181
|
when :TRACEROUTE_APP
|
data/lib/meshtastic/version.rb
CHANGED