mirror of
https://github.com/meshtastic/python.git
synced 2026-01-04 13:58:00 -05:00
38 lines
886 B
Python
38 lines
886 B
Python
"""
|
|
@generated by mypy-protobuf. Do not edit manually!
|
|
isort:skip_file
|
|
"""
|
|
import builtins
|
|
import google.protobuf.descriptor
|
|
import google.protobuf.message
|
|
import sys
|
|
|
|
if sys.version_info >= (3, 8):
|
|
import typing as typing_extensions
|
|
else:
|
|
import typing_extensions
|
|
|
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
|
|
|
@typing_extensions.final
|
|
class RTTTLConfig(google.protobuf.message.Message):
|
|
"""
|
|
Canned message module configuration.
|
|
"""
|
|
|
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
|
|
RINGTONE_FIELD_NUMBER: builtins.int
|
|
ringtone: builtins.str
|
|
"""
|
|
Ringtone for PWM Buzzer in RTTTL Format.
|
|
"""
|
|
def __init__(
|
|
self,
|
|
*,
|
|
ringtone: builtins.str = ...,
|
|
) -> None: ...
|
|
def ClearField(self, field_name: typing_extensions.Literal["ringtone", b"ringtone"]) -> None: ...
|
|
|
|
global___RTTTLConfig = RTTTLConfig
|