You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
311 B
12 lines
311 B
syntax = "proto3";
|
|
|
|
enum MessageType {
|
|
MESSAGE_TYPE_IMAGE = 0;
|
|
MESSAGE_TYPE_TOGGLE_TRACK = 1;
|
|
MESSAGE_TYPE_TOGGLE_DETECT = 2;
|
|
MESSAGE_TYPE_TRACK_COORD = 3;
|
|
MESSAGE_TYPE_TRACK_SETTINGS = 4;
|
|
MESSAGE_TYPE_SWITCH_CAMERA = 5;
|
|
MESSAGE_TYPE_SET_CAMERA = 6;
|
|
MESSAGE_TYPE_CAMERA_CONNECTION_STATUS = 7;
|
|
}
|