14 lines
186 B
Protocol Buffer
14 lines
186 B
Protocol Buffer
import "nanopb.proto";
|
|
|
|
package beerduino;
|
|
|
|
message Ping {
|
|
required int32 id = 1;
|
|
}
|
|
|
|
message Echo {
|
|
required int32 id = 1;
|
|
optional string message = 2 [(nanopb).max_size = 40];
|
|
}
|
|
|