meshtastic 0.0.37 → 0.0.38
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 +3 -3
- 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: ac577c0153e4ad5a0113ad1e2329a1225787406d712974c45b98d438e51c17e3
|
|
4
|
+
data.tar.gz: e0364940c63d6a242c031170a6258bcabcf93354554d1d84c624d04d624afd02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b520548467c045ecacd7aa41ffd2e0b08cd0bccaa777a5f6a93af8b7c3335e5c003b452e984f3b5b617403579b1a8bae31b914f7ae04d8c9f4d0bb9889979b92
|
|
7
|
+
data.tar.gz: a5a22a3c7909cf349fd250a5ef289a7d210b284b0eb7bae7d045b2e68a184cd8798497bcade3f86f7d3ecf645edb33385465042ccdb0db5a5977ae07117f883e
|
data/lib/meshtastic/mqtt.rb
CHANGED
|
@@ -47,7 +47,7 @@ module Meshtastic
|
|
|
47
47
|
# mqtt_obj: 'required - mqtt_obj returned from #connect method'
|
|
48
48
|
# root_topic: 'optional - root topic (default: msh)',
|
|
49
49
|
# region: 'optional - region e.g. 'US/VA', etc (default: US)',
|
|
50
|
-
# channel: 'optional - channel name (default: "2/
|
|
50
|
+
# channel: 'optional - channel name e.g. "2/stat/#" (default: "2/e/LongFast/#")',
|
|
51
51
|
# psk: 'optional - channel pre-shared key (default: AQ==)',
|
|
52
52
|
# qos: 'optional - quality of service (default: 0)',
|
|
53
53
|
# filter: 'optional - comma-delimited string(s) to filter on in message (default: nil)',
|
|
@@ -320,8 +320,8 @@ module Meshtastic
|
|
|
320
320
|
#{self}.subscribe(
|
|
321
321
|
mqtt_obj: 'required - mqtt_obj object returned from #connect method',
|
|
322
322
|
root_topic: 'optional - root topic (default: msh)',
|
|
323
|
-
region: 'optional - region (default: US)',
|
|
324
|
-
channel: 'optional - channel name (default: LongFast)',
|
|
323
|
+
region: 'optional - region e.g. 'US/VA', etc (default: US)',
|
|
324
|
+
channel: 'optional - channel name e.g. '2/stat/#' (default: '2/e/LongFast/#')',
|
|
325
325
|
psk: 'optional - channel pre-shared key (default: AQ==)',
|
|
326
326
|
qos: 'optional - quality of service (default: 0)',
|
|
327
327
|
json: 'optional - JSON output (default: false)',
|
data/lib/meshtastic/version.rb
CHANGED