Skip to content
Snippets Groups Projects
Commit 620bfbf0 authored by Johannes Mey's avatar Johannes Mey
Browse files

apply style guide

parent b38e2176
No related branches found
No related tags found
No related merge requests found
syntax = "proto3";
message IposConfig {
repeated IposFrame frame = 1;
repeated IposObject object = 2;
repeated IposFrame frames = 1;
repeated IposObject objects = 2;
}
message IposPositionUpdate {
repeated IposObject object = 1;
repeated IposObject objects = 1;
}
message IposObject {
// required:
string id = 1; // unique for each object, but there may be multiple sensors
string sensorId = 2; // unique
string sensor_id = 2; // unique
string type = 3; // Applications may send BOX,BIN,ZONE,ROBOT,HUMAN,OTHER
// optional:
IposRelativePosition position = 4;
IposSimpleOrientation orientation = 5;
string lastPosUpdate = 6; // https://en.wikipedia.org/wiki/ISO_8601
string last_pos_update = 6; // https://en.wikipedia.org/wiki/ISO_8601
}
......@@ -32,7 +32,7 @@ message IposFrame {
// relative coordinates
message IposRelativePosition {
string IposFrame_id = 1;
string frame_id = 1;
IposPosition pos = 2;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment