Ag v30 04: Photosynthetic solar radiation SQ-110
Turn on the Agriculture v30 board and read the Solar Radiation Sensor on it once every second
Required Materials
1 x Waspmote 1 x Agriculture Board v30 1 x Photosynthetic Solar radiation sensor
Notes
- This example is only valid for Waspmote v15
Code
/*
* --[Ag_v30_04] - Solar radiation sensor reading SQ-110
*
* Explanation: Turn on the Agriculture v30 board and read the
* Solar Radiation Sensor on it once every second
*
* Copyright (C) 2016 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: 3.0
* Design: David Gascón
* Implementation: Carlos Bello
*/
#include <WaspSensorAgr_v30.h>
// Instance object
radiationClass radSensor;
// Variable to store the radiation conversion value
float radiation,value;
void setup()
{
// Turn on the USB and print a start message
USB.ON();
USB.println(F("SQ-110"));
// Turn on the sensor board
Agriculture.ON();
}
void loop()
{
// Part 1: Read the solar radiation sensor
value = radSensor.readRadiation();
// Conversion from voltage into umol·m-2·s-1
radiation = value / 0.0002;
// Part 2: USB printing
// Print the radiation value through the USB
USB.print(F("Radiation: "));
USB.print(radiation);
USB.println(F("umol·m-2·s-1"));
delay(1000);
}
Output
H#
Start program
Radiation: 39.8260498046 umol m-2 s-1
Radiation: 32.2728347778 umol m-2 s-1
Radiation: 123.5980834960 umol m-2 s-1
Radiation: 137.3312072753 umol m-2 s-1
Radiation: 140.0778350830 umol m-2 s-1
...
Last updated