» GP 03: O2
This is the basic code to manage and read the molecular oxygen (O2) gas sensor.. The concentration and the enviromental variables will be stored in a frame. Cycle time: 5 minutes
Required Materials
1 x Waspmote
1 x Battery
1 x Gases PRO board
1 x Temperature, Humidity and Pressure sensor BME280
1 x O2 Gas Sensor [Calibrated]
Notes
- Remember to connect the battery to Waspmote for proper operation.
- The connection of the sensor is described in the Gases PRO technical guide.
- Cycle time: 5 minutes
- This example can only be executed in Waspmote v12
Code
/*
* ------------ [GP_03] - O2 --------------
*
* Explanation: This is the basic code to manage and read the molecular
* oxygen (O2) gas sensor. The concentration and the enviromental variables
* will be stored in a frame. Cycle time: 5 minutes
*
* Copyright (C) 2015 Libelium Comunicaciones Distribuidas S.L.
* http://www.libelium.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Version: 0.1
* Design: David Gascón
* Implementation: Alejandro Gállego
*/
#include <WaspSensorGas_Pro.h>
#include <WaspFrame.h>
/*
* Define object for sensor: O2
* Input to choose board socket.
* Waspmote OEM. Possibilities for this sensor:
* - SOCKET_1
* - SOCKET_2
* - SOCKET_3
* - SOCKET_4
* - SOCKET_5
* - SOCKET_6
* P&S! Possibilities for this sensor:
* - SOCKET_A
* - SOCKET_B
* - SOCKET_C
* - SOCKET_F
*/
Gas O2(SOCKET_2);
float concentration; // Stores the concentration level in ppm
float temperature; // Stores the temperature in ºC
float humidity; // Stores the realitve humidity in %RH
float pressure; // Stores the pressure in Pa
char node_ID[] = "O2_example";
void setup()
{
USB.println(F("O2 example"));
// Set the Waspmote ID
frame.setID(node_ID);
}
void loop()
{
///////////////////////////////////////////
// 1. Turn on the sensors
///////////////////////////////////////////
// Power on the O2 sensor.
// If the gases PRO board is off, turn it on automatically.
O2.ON();
// The sensor needs time to warm up and get a response from gas
// To reduce the battery consumption, use deepSleep instead delay
// After 2 minutes, Waspmote wakes up thanks to the RTC Alarm
PWR.deepSleep("00:00:02:00", RTC_OFFSET, RTC_ALM1_MODE1, ALL_ON);
///////////////////////////////////////////
// 2. Read sensors
///////////////////////////////////////////
// Read the O2 sensor and compensate with the temperature internally
concentration = O2.getConc();
// Read enviromental variables
temperature = O2.getTemp();
humidity = O2.getHumidity();
pressure = O2.getPressure();
///////////////////////////////////////////
// 3. Turn off the sensors
///////////////////////////////////////////
// Power off the O2 sensor. If there aren't more gas sensors powered,
// turn off the board automatically
O2.OFF();
///////////////////////////////////////////
// 4. Create ASCII frame
///////////////////////////////////////////
// Create new frame (ASCII)
frame.createFrame(ASCII);
// Add O2 concentration
frame.addSensor(SENSOR_GP_O2, concentration);
// Add temperature
frame.addSensor(SENSOR_GP_TC, temperature);
// Add humidity
frame.addSensor(SENSOR_GP_HUM, humidity);
// Add pressure
frame.addSensor(SENSOR_GP_PRES, pressure);
// Show the frame
frame.showFrame();
///////////////////////////////////////////
// 5. Sleep
///////////////////////////////////////////
// Go to deepsleep
// After 3 minutes, Waspmote wakes up thanks to the RTC Alarm
PWR.deepSleep("00:00:03:00", RTC_OFFSET, RTC_ALM1_MODE1, ALL_OFF);
}
Output
E#
O2 example
===============================
Current ASCII Frame:
Length: 86
Frame Type: 128
frame (HEX): 3C3D3E800423333832353337333638234F325F6578616D706C6523302347505F4F323A3230393032342E3030302347505F54433A32382E3538302347505F48554D3A34322E34392347505F505245533A393830393823
frame (STR): <=>#382537368#O2_example#0#GP_O2:209024.000#GP_TC:28.580#GP_HUM:42.49#GP_PRES:98098#
===============================
===============================
Current ASCII Frame:
Length: 86
Frame Type: 128
frame (HEX): 3C3D3E800423333832353337333638234F325F6578616D706C6523312347505F4F323A3230393931322E3030302347505F54433A32382E3630302347505F48554D3A34322E34362347505F505245533A393830393623
frame (STR): <=>#382537368#O2_example#1#GP_O2:209912.000#GP_TC:28.600#GP_HUM:42.46#GP_PRES:98096#
===============================