JaiaBot 2.6.0
JaiaBot micro-AUV software
 
Loading...
Searching...
No Matches
aml.proto
Go to the documentation of this file.
1syntax = "proto2";
2
3import "dccl/option_extensions.proto";
4
5package jaiabot.sensor.protobuf;
6
7message AML {
8 option (dccl.msg) = {
9 unit_system: "si"
10 };
11
12 enum Sensor {
13 DEFAULT = 1;
14 CONDUCTIVITY = 2;
15 // SOUND_VELOCITY = 3;
16 }
17
18 optional Sensor sensor = 1;
19 optional double conductivity = 2 [(dccl.field) = {
20 units { derived_dimensions: "conductivity" system: "si" }
21 }];;
22 optional double temperature = 3 [(dccl.field) = {
23 units { derived_dimensions: "temperature" system: "celsius" }
24 }];;
25}