15 lines
187 B
Protocol Buffer
15 lines
187 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];
|
|
}
|
|
|