blob: 32c398fde656431dda33297b37b99be31ce629ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubMotorEncoderRequest
{
uint32 MotorId = 1; //0..8
bool ReadEncSpeed = 2;
bool ReadDirection = 3; // 1-cw 0-ccw
bool Motion_Control = 4; // close loop using the encoder
}
|