blob: f3533930a1313d6d9c1ad078c5d7c600ca135c45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubMotorRunRequest
{
uint32 Motor_ID = 1;
bool Direction = 2;
double Speed = 3;
}
|