Skip to content

Commit 7cea3ce

Browse files
committed
protobufs: v2.3.4
1 parent 693533a commit 7cea3ce

File tree

8 files changed

+202
-178
lines changed

8 files changed

+202
-178
lines changed

meshtastic/config_pb2.py

Lines changed: 41 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

meshtastic/config_pb2.pyi

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ class Config(google.protobuf.message.Message):
6666
"""
6767
Description: Broadcasts GPS position packets as priority.
6868
Technical Details: Position Mesh packets will be prioritized higher and sent more frequently by default.
69-
When used in conjunction with power.is_power_saving = true, nodes will wake up,
69+
When used in conjunction with power.is_power_saving = true, nodes will wake up,
7070
send position, and then sleep for position.position_broadcast_secs seconds.
7171
"""
7272
SENSOR: Config.DeviceConfig._Role.ValueType # 6
7373
"""
7474
Description: Broadcasts telemetry packets as priority.
7575
Technical Details: Telemetry Mesh packets will be prioritized higher and sent more frequently by default.
76-
When used in conjunction with power.is_power_saving = true, nodes will wake up,
76+
When used in conjunction with power.is_power_saving = true, nodes will wake up,
7777
send environment telemetry, and then sleep for telemetry.environment_update_interval seconds.
7878
"""
7979
TAK: Config.DeviceConfig._Role.ValueType # 7
@@ -94,7 +94,7 @@ class Config(google.protobuf.message.Message):
9494
LOST_AND_FOUND: Config.DeviceConfig._Role.ValueType # 9
9595
"""
9696
Description: Broadcasts location as message to default channel regularly for to assist with device recovery.
97-
Technical Details: Used to automatically send a text message to the mesh
97+
Technical Details: Used to automatically send a text message to the mesh
9898
with the current position of the device on a frequent interval:
9999
"I'm lost! Position: lat / long"
100100
"""
@@ -141,14 +141,14 @@ class Config(google.protobuf.message.Message):
141141
"""
142142
Description: Broadcasts GPS position packets as priority.
143143
Technical Details: Position Mesh packets will be prioritized higher and sent more frequently by default.
144-
When used in conjunction with power.is_power_saving = true, nodes will wake up,
144+
When used in conjunction with power.is_power_saving = true, nodes will wake up,
145145
send position, and then sleep for position.position_broadcast_secs seconds.
146146
"""
147147
SENSOR: Config.DeviceConfig.Role.ValueType # 6
148148
"""
149149
Description: Broadcasts telemetry packets as priority.
150150
Technical Details: Telemetry Mesh packets will be prioritized higher and sent more frequently by default.
151-
When used in conjunction with power.is_power_saving = true, nodes will wake up,
151+
When used in conjunction with power.is_power_saving = true, nodes will wake up,
152152
send environment telemetry, and then sleep for telemetry.environment_update_interval seconds.
153153
"""
154154
TAK: Config.DeviceConfig.Role.ValueType # 7
@@ -169,7 +169,7 @@ class Config(google.protobuf.message.Message):
169169
LOST_AND_FOUND: Config.DeviceConfig.Role.ValueType # 9
170170
"""
171171
Description: Broadcasts location as message to default channel regularly for to assist with device recovery.
172-
Technical Details: Used to automatically send a text message to the mesh
172+
Technical Details: Used to automatically send a text message to the mesh
173173
with the current position of the device on a frequent interval:
174174
"I'm lost! Position: lat / long"
175175
"""
@@ -244,6 +244,7 @@ class Config(google.protobuf.message.Message):
244244
DOUBLE_TAP_AS_BUTTON_PRESS_FIELD_NUMBER: builtins.int
245245
IS_MANAGED_FIELD_NUMBER: builtins.int
246246
DISABLE_TRIPLE_CLICK_FIELD_NUMBER: builtins.int
247+
TZDEF_FIELD_NUMBER: builtins.int
247248
role: global___Config.DeviceConfig.Role.ValueType
248249
"""
249250
Sets the role of node
@@ -289,6 +290,10 @@ class Config(google.protobuf.message.Message):
289290
"""
290291
Disables the triple-press of user button to enable or disable GPS
291292
"""
293+
tzdef: builtins.str
294+
"""
295+
POSIX Timezone definition string from https://github.com/nayarsystems/posix_tz_db/blob/master/zones.csv.
296+
"""
292297
def __init__(
293298
self,
294299
*,
@@ -302,8 +307,9 @@ class Config(google.protobuf.message.Message):
302307
double_tap_as_button_press: builtins.bool = ...,
303308
is_managed: builtins.bool = ...,
304309
disable_triple_click: builtins.bool = ...,
310+
tzdef: builtins.str = ...,
305311
) -> None: ...
306-
def ClearField(self, field_name: typing_extensions.Literal["button_gpio", b"button_gpio", "buzzer_gpio", b"buzzer_gpio", "debug_log_enabled", b"debug_log_enabled", "disable_triple_click", b"disable_triple_click", "double_tap_as_button_press", b"double_tap_as_button_press", "is_managed", b"is_managed", "node_info_broadcast_secs", b"node_info_broadcast_secs", "rebroadcast_mode", b"rebroadcast_mode", "role", b"role", "serial_enabled", b"serial_enabled"]) -> None: ...
312+
def ClearField(self, field_name: typing_extensions.Literal["button_gpio", b"button_gpio", "buzzer_gpio", b"buzzer_gpio", "debug_log_enabled", b"debug_log_enabled", "disable_triple_click", b"disable_triple_click", "double_tap_as_button_press", b"double_tap_as_button_press", "is_managed", b"is_managed", "node_info_broadcast_secs", b"node_info_broadcast_secs", "rebroadcast_mode", b"rebroadcast_mode", "role", b"role", "serial_enabled", b"serial_enabled", "tzdef", b"tzdef"]) -> None: ...
307313

308314
@typing_extensions.final
309315
class PositionConfig(google.protobuf.message.Message):

meshtastic/deviceonly_pb2.py

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)