hi,
we recieved today all sensors for our gasboards.
as a software developer for UAV (drone) we start with the co2 sensor. our goal is a flying chemical sensor uav. here is a first picture of our uav (currently you will see the video option)
http://onlinelib.de/temp/rebotnix/f8p_headers.jpgright now we have absolut no idea which value in the GAIN for the co2 is usefull.
if anyone can explain how to use the co2 sensor that would be great.
with a gain of 5 we got these range:
1.3709677457
1.3580644130
1.3580644130
1.3870967674
1.3580644130
1.3612903356
1.4322580337
1.3548387289
here are is what we have done:
void setup()
{
// Opening UART to show messages using 'Serial Monitor'
SensorGas.setBoardMode(SENS_ON);
SensorGas.configureSensor(SENS_CO2, 5);
SensorGas.setSensorMode(SENS_ON, SENS_CO2);
USB.begin();
}
void loop()
{
// Blinking LEDs
Utils.blinkLEDs(1000);
// Printing a message, remember to open 'Serial Monitor' to be able to see this message
USB.println("Online...sending sensor data after 3000ms");
// A little delay
delay(3000);
float value = SensorGas.readValue(SENS_CO2);
USB.println(value);
}
thanks for any help and feedback..
best
gary
http://onlinelib.de