meshtastic 0.0.166 → 0.0.168
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/.rubocop_todo.yml +18 -16
- data/Gemfile +1 -1
- data/lib/meshtastic/admin_pb.rb +1 -1
- data/lib/meshtastic/deviceonly_legacy_pb.rb +20 -0
- data/lib/meshtastic/mesh_beacon_pb.rb +18 -0
- data/lib/meshtastic/version.rb +1 -1
- data/spec/lib/meshtastic/deviceonly_legacy_pb_spec.rb +6 -0
- data/spec/lib/meshtastic/mesh_beacon_pb_spec.rb +6 -0
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e09515fba1ba940db155fc538df06ded06b0027c3db376f13963ec8c61f5abf
|
|
4
|
+
data.tar.gz: 80fa3a29e99f509cdbd5a58e5c51fe26ade5e7c4b0d66487a646b76fbf7d72e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c7767993fed7ae52a678f6fa4ee953bb6ad0515b043a953dd7e1425d53dafd3edea52499e60cf86df4564d29bd72fbc176041323b98c4b09723397589ead114
|
|
7
|
+
data.tar.gz: fcfeb35b9f5783b244b10c4d73cb683d6c931b3da703d197154344f231415ddae1bfa5de029e1a61c10438bcbf1236b9b2fd8486862d3e0eb970e92401af61bf
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on
|
|
3
|
+
# on 2026-07-07 01:06:21 UTC using RuboCop version 1.88.1.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
|
8
8
|
|
|
9
|
-
# Offense count: 1
|
|
10
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
11
|
-
# Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation.
|
|
12
|
-
Bundler/OrderedGems:
|
|
13
|
-
Exclude:
|
|
14
|
-
- 'Gemfile'
|
|
15
|
-
|
|
16
9
|
# Offense count: 1
|
|
17
10
|
# This cop supports safe autocorrection (--autocorrect).
|
|
18
11
|
Layout/EmptyLineAfterGuardClause:
|
|
19
12
|
Exclude:
|
|
20
13
|
- 'lib/meshtastic/stream_interface.rb'
|
|
21
14
|
|
|
22
|
-
# Offense count:
|
|
15
|
+
# Offense count: 27
|
|
23
16
|
# This cop supports safe autocorrection (--autocorrect).
|
|
24
17
|
Layout/EmptyLineAfterMagicComment:
|
|
25
18
|
Enabled: false
|
|
26
19
|
|
|
27
|
-
# Offense count:
|
|
20
|
+
# Offense count: 27
|
|
28
21
|
# This cop supports safe autocorrection (--autocorrect).
|
|
29
22
|
Layout/EmptyLines:
|
|
30
23
|
Enabled: false
|
|
31
24
|
|
|
32
|
-
# Offense count:
|
|
25
|
+
# Offense count: 2
|
|
26
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
27
|
+
# Configuration parameters: Width, EnforcedStyleAlignWith, AllowedPatterns.
|
|
28
|
+
# SupportedStylesAlignWith: start_of_line, relative_to_receiver
|
|
29
|
+
Layout/IndentationWidth:
|
|
30
|
+
Exclude:
|
|
31
|
+
- 'lib/meshtastic/serial_interface.rb'
|
|
32
|
+
|
|
33
|
+
# Offense count: 26
|
|
33
34
|
# This cop supports safe autocorrection (--autocorrect).
|
|
34
|
-
# Configuration parameters: Max, AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes,
|
|
35
|
+
# Configuration parameters: Max, AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, AllowRBSInlineAnnotation, AllowCopDirectives, AllowedPatterns, SplitStrings.
|
|
35
36
|
# URISchemes: http, https
|
|
36
37
|
Layout/LineLength:
|
|
37
38
|
Enabled: false
|
|
@@ -45,7 +46,7 @@ Layout/SpaceBeforeBlockBraces:
|
|
|
45
46
|
Exclude:
|
|
46
47
|
- 'lib/meshtastic/serial_interface.rb'
|
|
47
48
|
|
|
48
|
-
# Offense count:
|
|
49
|
+
# Offense count: 49
|
|
49
50
|
# Configuration parameters: AllowComments, AllowEmptyLambdas.
|
|
50
51
|
Lint/EmptyBlock:
|
|
51
52
|
Enabled: false
|
|
@@ -97,7 +98,7 @@ Style/IfUnlessModifier:
|
|
|
97
98
|
Exclude:
|
|
98
99
|
- 'lib/meshtastic/stream_interface.rb'
|
|
99
100
|
|
|
100
|
-
# Offense count:
|
|
101
|
+
# Offense count: 32
|
|
101
102
|
# This cop supports safe autocorrection (--autocorrect).
|
|
102
103
|
Style/RedundantConstantBase:
|
|
103
104
|
Enabled: false
|
|
@@ -108,11 +109,12 @@ Style/RedundantSelf:
|
|
|
108
109
|
Exclude:
|
|
109
110
|
- 'lib/meshtastic/stream_interface.rb'
|
|
110
111
|
|
|
111
|
-
# Offense count:
|
|
112
|
+
# Offense count: 19
|
|
112
113
|
# This cop supports safe autocorrection (--autocorrect).
|
|
113
114
|
Style/RedundantStringEscape:
|
|
114
115
|
Exclude:
|
|
115
116
|
- 'lib/meshtastic/admin_pb.rb'
|
|
117
|
+
- 'lib/meshtastic/atak_pb.rb'
|
|
116
118
|
- 'lib/meshtastic/deviceonly_pb.rb'
|
|
117
119
|
- 'lib/meshtastic/mesh_pb.rb'
|
|
118
120
|
- 'lib/meshtastic/module_config_pb.rb'
|
|
@@ -126,7 +128,7 @@ Style/SafeNavigation:
|
|
|
126
128
|
Exclude:
|
|
127
129
|
- 'lib/meshtastic/stream_interface.rb'
|
|
128
130
|
|
|
129
|
-
# Offense count:
|
|
131
|
+
# Offense count: 253
|
|
130
132
|
# This cop supports safe autocorrection (--autocorrect).
|
|
131
133
|
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
|
132
134
|
# SupportedStyles: single_quotes, double_quotes
|
data/Gemfile
CHANGED
data/lib/meshtastic/admin_pb.rb
CHANGED
|
@@ -12,7 +12,7 @@ require 'meshtastic/mesh_pb'
|
|
|
12
12
|
require 'meshtastic/module_config_pb'
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
descriptor_data = "\n\x16meshtastic/admin.proto\x12\nmeshtastic\x1a\x18meshtastic/channel.proto\x1a\x17meshtastic/config.proto\x1a\"meshtastic/connection_status.proto\x1a\x1ameshtastic/device_ui.proto\x1a\x15meshtastic/mesh.proto\x1a\x1emeshtastic/module_config.proto\"\
|
|
15
|
+
descriptor_data = "\n\x16meshtastic/admin.proto\x12\nmeshtastic\x1a\x18meshtastic/channel.proto\x1a\x17meshtastic/config.proto\x1a\"meshtastic/connection_status.proto\x1a\x1ameshtastic/device_ui.proto\x1a\x15meshtastic/mesh.proto\x1a\x1emeshtastic/module_config.proto\"\xc2\x1b\n\x0c\x41\x64minMessage\x12\x17\n\x0fsession_passkey\x18\x65 \x01(\x0c\x12\x1d\n\x13get_channel_request\x18\x01 \x01(\rH\x00\x12\x33\n\x14get_channel_response\x18\x02 \x01(\x0b\x32\x13.meshtastic.ChannelH\x00\x12\x1b\n\x11get_owner_request\x18\x03 \x01(\x08H\x00\x12.\n\x12get_owner_response\x18\x04 \x01(\x0b\x32\x10.meshtastic.UserH\x00\x12\x41\n\x12get_config_request\x18\x05 \x01(\x0e\x32#.meshtastic.AdminMessage.ConfigTypeH\x00\x12\x31\n\x13get_config_response\x18\x06 \x01(\x0b\x32\x12.meshtastic.ConfigH\x00\x12N\n\x19get_module_config_request\x18\x07 \x01(\x0e\x32).meshtastic.AdminMessage.ModuleConfigTypeH\x00\x12>\n\x1aget_module_config_response\x18\x08 \x01(\x0b\x32\x18.meshtastic.ModuleConfigH\x00\x12\x34\n*get_canned_message_module_messages_request\x18\n \x01(\x08H\x00\x12\x35\n+get_canned_message_module_messages_response\x18\x0b \x01(\tH\x00\x12%\n\x1bget_device_metadata_request\x18\x0c \x01(\x08H\x00\x12\x42\n\x1cget_device_metadata_response\x18\r \x01(\x0b\x32\x1a.meshtastic.DeviceMetadataH\x00\x12\x1e\n\x14get_ringtone_request\x18\x0e \x01(\x08H\x00\x12\x1f\n\x15get_ringtone_response\x18\x0f \x01(\tH\x00\x12.\n$get_device_connection_status_request\x18\x10 \x01(\x08H\x00\x12S\n%get_device_connection_status_response\x18\x11 \x01(\x0b\x32\".meshtastic.DeviceConnectionStatusH\x00\x12\x31\n\x0cset_ham_mode\x18\x12 \x01(\x0b\x32\x19.meshtastic.HamParametersH\x00\x12/\n%get_node_remote_hardware_pins_request\x18\x13 \x01(\x08H\x00\x12\\\n&get_node_remote_hardware_pins_response\x18\x14 \x01(\x0b\x32*.meshtastic.NodeRemoteHardwarePinsResponseH\x00\x12 \n\x16\x65nter_dfu_mode_request\x18\x15 \x01(\x08H\x00\x12\x1d\n\x13\x64\x65lete_file_request\x18\x16 \x01(\tH\x00\x12\x13\n\tset_scale\x18\x17 \x01(\rH\x00\x12\x45\n\x12\x62\x61\x63kup_preferences\x18\x18 \x01(\x0e\x32\'.meshtastic.AdminMessage.BackupLocationH\x00\x12\x46\n\x13restore_preferences\x18\x19 \x01(\x0e\x32\'.meshtastic.AdminMessage.BackupLocationH\x00\x12L\n\x19remove_backup_preferences\x18\x1a \x01(\x0e\x32\'.meshtastic.AdminMessage.BackupLocationH\x00\x12?\n\x10send_input_event\x18\x1b \x01(\x0b\x32#.meshtastic.AdminMessage.InputEventH\x00\x12%\n\tset_owner\x18 \x01(\x0b\x32\x10.meshtastic.UserH\x00\x12*\n\x0bset_channel\x18! \x01(\x0b\x32\x13.meshtastic.ChannelH\x00\x12(\n\nset_config\x18\" \x01(\x0b\x32\x12.meshtastic.ConfigH\x00\x12\x35\n\x11set_module_config\x18# \x01(\x0b\x32\x18.meshtastic.ModuleConfigH\x00\x12,\n\"set_canned_message_module_messages\x18$ \x01(\tH\x00\x12\x1e\n\x14set_ringtone_message\x18% \x01(\tH\x00\x12\x1b\n\x11remove_by_nodenum\x18& \x01(\rH\x00\x12\x1b\n\x11set_favorite_node\x18\' \x01(\rH\x00\x12\x1e\n\x14remove_favorite_node\x18( \x01(\rH\x00\x12\x32\n\x12set_fixed_position\x18) \x01(\x0b\x32\x14.meshtastic.PositionH\x00\x12\x1f\n\x15remove_fixed_position\x18* \x01(\x08H\x00\x12\x17\n\rset_time_only\x18+ \x01(\x07H\x00\x12\x1f\n\x15get_ui_config_request\x18, \x01(\x08H\x00\x12<\n\x16get_ui_config_response\x18- \x01(\x0b\x32\x1a.meshtastic.DeviceUIConfigH\x00\x12\x35\n\x0fstore_ui_config\x18. \x01(\x0b\x32\x1a.meshtastic.DeviceUIConfigH\x00\x12\x1a\n\x10set_ignored_node\x18/ \x01(\rH\x00\x12\x1d\n\x13remove_ignored_node\x18\x30 \x01(\rH\x00\x12\x1b\n\x11toggle_muted_node\x18\x31 \x01(\rH\x00\x12\x1d\n\x13\x62\x65gin_edit_settings\x18@ \x01(\x08H\x00\x12\x1e\n\x14\x63ommit_edit_settings\x18\x41 \x01(\x08H\x00\x12\x30\n\x0b\x61\x64\x64_contact\x18\x42 \x01(\x0b\x32\x19.meshtastic.SharedContactH\x00\x12<\n\x10key_verification\x18\x43 \x01(\x0b\x32 .meshtastic.KeyVerificationAdminH\x00\x12\x1e\n\x14\x66\x61\x63tory_reset_device\x18^ \x01(\x05H\x00\x12 \n\x12reboot_ota_seconds\x18_ \x01(\x05\x42\x02\x18\x01H\x00\x12\x18\n\x0e\x65xit_simulator\x18` \x01(\x08H\x00\x12\x18\n\x0ereboot_seconds\x18\x61 \x01(\x05H\x00\x12\x1a\n\x10shutdown_seconds\x18\x62 \x01(\x05H\x00\x12\x1e\n\x14\x66\x61\x63tory_reset_config\x18\x63 \x01(\x05H\x00\x12\x16\n\x0cnodedb_reset\x18\x64 \x01(\x08H\x00\x12\x38\n\x0bota_request\x18\x66 \x01(\x0b\x32!.meshtastic.AdminMessage.OTAEventH\x00\x12\x31\n\rsensor_config\x18g \x01(\x0b\x32\x18.meshtastic.SensorConfigH\x00\x12\x31\n\rlockdown_auth\x18h \x01(\x0b\x32\x18.meshtastic.LockdownAuthH\x00\x1aS\n\nInputEvent\x12\x12\n\nevent_code\x18\x01 \x01(\r\x12\x0f\n\x07kb_char\x18\x02 \x01(\r\x12\x0f\n\x07touch_x\x18\x03 \x01(\r\x12\x0f\n\x07touch_y\x18\x04 \x01(\r\x1aJ\n\x08OTAEvent\x12,\n\x0freboot_ota_mode\x18\x01 \x01(\x0e\x32\x13.meshtastic.OTAMode\x12\x10\n\x08ota_hash\x18\x02 \x01(\x0c\"\xd6\x01\n\nConfigType\x12\x11\n\rDEVICE_CONFIG\x10\x00\x12\x13\n\x0fPOSITION_CONFIG\x10\x01\x12\x10\n\x0cPOWER_CONFIG\x10\x02\x12\x12\n\x0eNETWORK_CONFIG\x10\x03\x12\x12\n\x0e\x44ISPLAY_CONFIG\x10\x04\x12\x0f\n\x0bLORA_CONFIG\x10\x05\x12\x14\n\x10\x42LUETOOTH_CONFIG\x10\x06\x12\x13\n\x0fSECURITY_CONFIG\x10\x07\x12\x15\n\x11SESSIONKEY_CONFIG\x10\x08\x12\x13\n\x0f\x44\x45VICEUI_CONFIG\x10\t\"\x9a\x03\n\x10ModuleConfigType\x12\x0f\n\x0bMQTT_CONFIG\x10\x00\x12\x11\n\rSERIAL_CONFIG\x10\x01\x12\x13\n\x0f\x45XTNOTIF_CONFIG\x10\x02\x12\x17\n\x13STOREFORWARD_CONFIG\x10\x03\x12\x14\n\x10RANGETEST_CONFIG\x10\x04\x12\x14\n\x10TELEMETRY_CONFIG\x10\x05\x12\x14\n\x10\x43\x41NNEDMSG_CONFIG\x10\x06\x12\x10\n\x0c\x41UDIO_CONFIG\x10\x07\x12\x19\n\x15REMOTEHARDWARE_CONFIG\x10\x08\x12\x17\n\x13NEIGHBORINFO_CONFIG\x10\t\x12\x1a\n\x16\x41MBIENTLIGHTING_CONFIG\x10\n\x12\x1a\n\x16\x44\x45TECTIONSENSOR_CONFIG\x10\x0b\x12\x15\n\x11PAXCOUNTER_CONFIG\x10\x0c\x12\x18\n\x14STATUSMESSAGE_CONFIG\x10\r\x12\x1c\n\x18TRAFFICMANAGEMENT_CONFIG\x10\x0e\x12\x0e\n\nTAK_CONFIG\x10\x0f\x12\x15\n\x11MESHBEACON_CONFIG\x10\x10\"#\n\x0e\x42\x61\x63kupLocation\x12\t\n\x05\x46LASH\x10\x00\x12\x06\n\x02SD\x10\x01\x42\x11\n\x0fpayload_variant\"\x96\x01\n\x0cLockdownAuth\x12\x12\n\npassphrase\x18\x01 \x01(\x0c\x12\x17\n\x0f\x62oots_remaining\x18\x02 \x01(\r\x12\x19\n\x11valid_until_epoch\x18\x03 \x01(\r\x12\x10\n\x08lock_now\x18\x04 \x01(\x08\x12\x1b\n\x13max_session_seconds\x18\x05 \x01(\r\x12\x0f\n\x07\x64isable\x18\x06 \x01(\x08\"n\n\rHamParameters\x12\x11\n\tcall_sign\x18\x01 \x01(\t\x12\x10\n\x08tx_power\x18\x02 \x01(\x05\x12\x11\n\tfrequency\x18\x03 \x01(\x02\x12\x12\n\nshort_name\x18\x04 \x01(\t\x12\x11\n\tlong_name\x18\x05 \x01(\t\"f\n\x1eNodeRemoteHardwarePinsResponse\x12\x44\n\x19node_remote_hardware_pins\x18\x01 \x03(\x0b\x32!.meshtastic.NodeRemoteHardwarePin\"s\n\rSharedContact\x12\x10\n\x08node_num\x18\x01 \x01(\r\x12\x1e\n\x04user\x18\x02 \x01(\x0b\x32\x10.meshtastic.User\x12\x15\n\rshould_ignore\x18\x03 \x01(\x08\x12\x19\n\x11manually_verified\x18\x04 \x01(\x08\"\x9c\x02\n\x14KeyVerificationAdmin\x12\x42\n\x0cmessage_type\x18\x01 \x01(\x0e\x32,.meshtastic.KeyVerificationAdmin.MessageType\x12\x16\n\x0eremote_nodenum\x18\x02 \x01(\r\x12\r\n\x05nonce\x18\x03 \x01(\x04\x12\x1c\n\x0fsecurity_number\x18\x04 \x01(\rH\x00\x88\x01\x01\"g\n\x0bMessageType\x12\x19\n\x15INITIATE_VERIFICATION\x10\x00\x12\x1b\n\x17PROVIDE_SECURITY_NUMBER\x10\x01\x12\r\n\tDO_VERIFY\x10\x02\x12\x11\n\rDO_NOT_VERIFY\x10\x03\x42\x12\n\x10_security_number\"\xce\x01\n\x0cSensorConfig\x12.\n\x0cscd4x_config\x18\x01 \x01(\x0b\x32\x18.meshtastic.SCD4X_config\x12.\n\x0csen5x_config\x18\x02 \x01(\x0b\x32\x18.meshtastic.SEN5X_config\x12.\n\x0cscd30_config\x18\x03 \x01(\x0b\x32\x18.meshtastic.SCD30_config\x12.\n\x0cshtxx_config\x18\x04 \x01(\x0b\x32\x18.meshtastic.SHTXX_config\"\xe2\x02\n\x0cSCD4X_config\x12\x14\n\x07set_asc\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12 \n\x13set_target_co2_conc\x18\x02 \x01(\rH\x01\x88\x01\x01\x12\x1c\n\x0fset_temperature\x18\x03 \x01(\x02H\x02\x88\x01\x01\x12\x19\n\x0cset_altitude\x18\x04 \x01(\rH\x03\x88\x01\x01\x12!\n\x14set_ambient_pressure\x18\x05 \x01(\rH\x04\x88\x01\x01\x12\x1a\n\rfactory_reset\x18\x06 \x01(\x08H\x05\x88\x01\x01\x12\x1b\n\x0eset_power_mode\x18\x07 \x01(\x08H\x06\x88\x01\x01\x42\n\n\x08_set_ascB\x16\n\x14_set_target_co2_concB\x12\n\x10_set_temperatureB\x0f\n\r_set_altitudeB\x17\n\x15_set_ambient_pressureB\x10\n\x0e_factory_resetB\x11\n\x0f_set_power_mode\"v\n\x0cSEN5X_config\x12\x1c\n\x0fset_temperature\x18\x01 \x01(\x02H\x00\x88\x01\x01\x12\x1e\n\x11set_one_shot_mode\x18\x02 \x01(\x08H\x01\x88\x01\x01\x42\x12\n\x10_set_temperatureB\x14\n\x12_set_one_shot_mode\"\xb4\x02\n\x0cSCD30_config\x12\x14\n\x07set_asc\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12 \n\x13set_target_co2_conc\x18\x02 \x01(\rH\x01\x88\x01\x01\x12\x1c\n\x0fset_temperature\x18\x03 \x01(\x02H\x02\x88\x01\x01\x12\x19\n\x0cset_altitude\x18\x04 \x01(\rH\x03\x88\x01\x01\x12%\n\x18set_measurement_interval\x18\x05 \x01(\rH\x04\x88\x01\x01\x12\x17\n\nsoft_reset\x18\x06 \x01(\x08H\x05\x88\x01\x01\x42\n\n\x08_set_ascB\x16\n\x14_set_target_co2_concB\x12\n\x10_set_temperatureB\x0f\n\r_set_altitudeB\x1b\n\x19_set_measurement_intervalB\r\n\x0b_soft_reset\":\n\x0cSHTXX_config\x12\x19\n\x0cset_accuracy\x18\x01 \x01(\rH\x00\x88\x01\x01\x42\x0f\n\r_set_accuracy*7\n\x07OTAMode\x12\x11\n\rNO_REBOOT_OTA\x10\x00\x12\x0b\n\x07OTA_BLE\x10\x01\x12\x0c\n\x08OTA_WIFI\x10\x02\x42\x61\n\x14org.meshtastic.protoB\x0b\x41\x64minProtosZ\"github.com/meshtastic/go/generated\xaa\x02\x14Meshtastic.Protobufs\xba\x02\x00\x62\x06proto3"
|
|
16
16
|
|
|
17
17
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
18
18
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: meshtastic/deviceonly_legacy.proto
|
|
4
|
+
|
|
5
|
+
require 'google/protobuf'
|
|
6
|
+
|
|
7
|
+
require 'meshtastic/deviceonly_pb'
|
|
8
|
+
require 'meshtastic/telemetry_pb'
|
|
9
|
+
require 'nanopb_pb'
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
descriptor_data = "\n\"meshtastic/deviceonly_legacy.proto\x12\nmeshtastic\x1a\x1bmeshtastic/deviceonly.proto\x1a\x1ameshtastic/telemetry.proto\x1a\x0cnanopb.proto\"\xdc\x02\n\x13NodeInfoLite_Legacy\x12\x0b\n\x03num\x18\x01 \x01(\r\x12\"\n\x04user\x18\x02 \x01(\x0b\x32\x14.meshtastic.UserLite\x12*\n\x08position\x18\x03 \x01(\x0b\x32\x18.meshtastic.PositionLite\x12\x0b\n\x03snr\x18\x04 \x01(\x02\x12\x12\n\nlast_heard\x18\x05 \x01(\x07\x12\x31\n\x0e\x64\x65vice_metrics\x18\x06 \x01(\x0b\x32\x19.meshtastic.DeviceMetrics\x12\x0f\n\x07\x63hannel\x18\x07 \x01(\r\x12\x10\n\x08via_mqtt\x18\x08 \x01(\x08\x12\x16\n\thops_away\x18\t \x01(\rH\x00\x88\x01\x01\x12\x13\n\x0bis_favorite\x18\n \x01(\x08\x12\x12\n\nis_ignored\x18\x0b \x01(\x08\x12\x10\n\x08next_hop\x18\x0c \x01(\r\x12\x10\n\x08\x62itfield\x18\r \x01(\rB\x0c\n\n_hops_away\"\x89\x01\n\x13NodeDatabase_Legacy\x12\x0f\n\x07version\x18\x01 \x01(\r\x12\x61\n\x05nodes\x18\x02 \x03(\x0b\x32\x1f.meshtastic.NodeInfoLite_LegacyB1\x92?.\x92\x01+std::vector<meshtastic_NodeInfoLite_Legacy>Bt\n\x14org.meshtastic.protoB\x10\x44\x65viceOnlyLegacyZ\"github.com/meshtastic/go/generated\xaa\x02\x14Meshtastic.Protobufs\xba\x02\x00\x92?\x0b\xc2\x01\x08<vector>b\x06proto3"
|
|
13
|
+
|
|
14
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
15
|
+
pool.add_serialized_file(descriptor_data)
|
|
16
|
+
|
|
17
|
+
module Meshtastic
|
|
18
|
+
NodeInfoLite_Legacy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("meshtastic.NodeInfoLite_Legacy").msgclass
|
|
19
|
+
NodeDatabase_Legacy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("meshtastic.NodeDatabase_Legacy").msgclass
|
|
20
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: meshtastic/mesh_beacon.proto
|
|
4
|
+
|
|
5
|
+
require 'google/protobuf'
|
|
6
|
+
|
|
7
|
+
require 'meshtastic/channel_pb'
|
|
8
|
+
require 'meshtastic/config_pb'
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
descriptor_data = "\n\x1cmeshtastic/mesh_beacon.proto\x12\nmeshtastic\x1a\x18meshtastic/channel.proto\x1a\x17meshtastic/config.proto\"\xe8\x01\n\nMeshBeacon\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x32\n\roffer_channel\x18\x02 \x01(\x0b\x32\x1b.meshtastic.ChannelSettings\x12>\n\x0coffer_region\x18\x03 \x01(\x0e\x32(.meshtastic.Config.LoRaConfig.RegionCode\x12\x44\n\x0coffer_preset\x18\x04 \x01(\x0e\x32).meshtastic.Config.LoRaConfig.ModemPresetH\x00\x88\x01\x01\x42\x0f\n\r_offer_presetBf\n\x14org.meshtastic.protoB\x10MeshBeaconProtosZ\"github.com/meshtastic/go/generated\xaa\x02\x14Meshtastic.Protobufs\xba\x02\x00\x62\x06proto3"
|
|
12
|
+
|
|
13
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
|
+
pool.add_serialized_file(descriptor_data)
|
|
15
|
+
|
|
16
|
+
module Meshtastic
|
|
17
|
+
MeshBeacon = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("meshtastic.MeshBeacon").msgclass
|
|
18
|
+
end
|
data/lib/meshtastic/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: meshtastic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.168
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- 0day Inc.
|
|
@@ -169,14 +169,14 @@ dependencies:
|
|
|
169
169
|
requirements:
|
|
170
170
|
- - '='
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
|
-
version: 1.88.
|
|
172
|
+
version: 1.88.2
|
|
173
173
|
type: :runtime
|
|
174
174
|
prerelease: false
|
|
175
175
|
version_requirements: !ruby/object:Gem::Requirement
|
|
176
176
|
requirements:
|
|
177
177
|
- - '='
|
|
178
178
|
- !ruby/object:Gem::Version
|
|
179
|
-
version: 1.88.
|
|
179
|
+
version: 1.88.2
|
|
180
180
|
- !ruby/object:Gem::Dependency
|
|
181
181
|
name: rubocop-rake
|
|
182
182
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -290,10 +290,12 @@ files:
|
|
|
290
290
|
- lib/meshtastic/connection_status_pb.rb
|
|
291
291
|
- lib/meshtastic/device_ui_pb.rb
|
|
292
292
|
- lib/meshtastic/deviceonly.rb
|
|
293
|
+
- lib/meshtastic/deviceonly_legacy_pb.rb
|
|
293
294
|
- lib/meshtastic/deviceonly_pb.rb
|
|
294
295
|
- lib/meshtastic/interdevice_pb.rb
|
|
295
296
|
- lib/meshtastic/localonly.rb
|
|
296
297
|
- lib/meshtastic/localonly_pb.rb
|
|
298
|
+
- lib/meshtastic/mesh_beacon_pb.rb
|
|
297
299
|
- lib/meshtastic/mesh_interface.rb
|
|
298
300
|
- lib/meshtastic/mesh_pb.rb
|
|
299
301
|
- lib/meshtastic/module_config.rb
|
|
@@ -341,11 +343,13 @@ files:
|
|
|
341
343
|
- spec/lib/meshtastic/connection_status_pb_spec.rb
|
|
342
344
|
- spec/lib/meshtastic/connection_status_spec.rb
|
|
343
345
|
- spec/lib/meshtastic/device_ui_pb_spec.rb
|
|
346
|
+
- spec/lib/meshtastic/deviceonly_legacy_pb_spec.rb
|
|
344
347
|
- spec/lib/meshtastic/deviceonly_pb_spec.rb
|
|
345
348
|
- spec/lib/meshtastic/deviceonly_spec.rb
|
|
346
349
|
- spec/lib/meshtastic/interdevice_pb_spec.rb
|
|
347
350
|
- spec/lib/meshtastic/localonly_pb_spec.rb
|
|
348
351
|
- spec/lib/meshtastic/localonly_spec.rb
|
|
352
|
+
- spec/lib/meshtastic/mesh_beacon_pb_spec.rb
|
|
349
353
|
- spec/lib/meshtastic/mesh_interface_spec.rb
|
|
350
354
|
- spec/lib/meshtastic/mesh_pb_spec.rb
|
|
351
355
|
- spec/lib/meshtastic/module_config_pb_spec.rb
|