Protobuf
How we send data and commands
Introduction
DriveCommand(left: 1.0, right: 1.0)Generated code
Reading Protobuf files
syntax = "proto3";
import "address.proto";
message User {
int32 id = 1;
string name = 2;
Address address = 3;
repeated User friends = 4;
bytes payload = 5;
}More Resources
Last updated