kopia lustrzana https://github.com/meshtastic/protobufs
21 wiersze
434 B
Protocol Buffer
21 wiersze
434 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package meshtastic;
|
||
|
|
||
|
option java_package = "com.geeksville.mesh";
|
||
|
option java_outer_classname = "RTTTLConfigProtos";
|
||
|
option optimize_for = LITE_RUNTIME;
|
||
|
option go_package = "github.com/meshtastic/go/generated";
|
||
|
option csharp_namespace = "Meshtastic.Protobufs";
|
||
|
|
||
|
/*
|
||
|
* Canned message module configuration.
|
||
|
*/
|
||
|
message RTTTLConfig {
|
||
|
|
||
|
/*
|
||
|
* Ringtone for PWM Buzzer in RTTTL Format.
|
||
|
*/
|
||
|
string ringtone = 1;
|
||
|
}
|