4// Matthew Ferro <matt.ferro@jaia.tech>
6// This file is part of the JaiaBot Hydro Project Binaries
7// ("The Jaia Binaries").
9// The Jaia Binaries are free software: you can redistribute them and/or modify
10// them under the terms of the GNU General Public License as published by
11// the Free Software Foundation, either version 2 of the License, or
12// (at your option) any later version.
14// The Jaia Binaries are distributed in the hope that they will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
19// You should have received a copy of the GNU General Public License
20// along with the Jaia Binaries. If not, see <http://www.gnu.org/licenses/>.
24import "goby/middleware/protobuf/app_config.proto";
25import "goby/zeromq/protobuf/interprocess_config.proto";
26import "goby/middleware/protobuf/udp_config.proto";
27import "jaiabot/messages/sensor/turner__c_fluor.proto";
29package jaiabot.config;
31message TurnerCFluorSensorDriver
33 // required parameters for ApplicationBase3 class
34 optional goby.middleware.protobuf.AppConfig app = 1;
36 optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
38 optional jaiabot.sensor.protobuf.FluorCoefficients fluorometer_coefficients = 3;
40 optional int32 turner_c_fluor_report_timeout_seconds = 10 [default = 40];