SWI 01: Temperature Sensor

Explanation: Turn on the Smart Water Ions Sensor Board and reads the Temperature sensor printing the result through the USB

Required Materials

1 x Waspmote 1 x Battery 1 x Smart Water Ions Sensor Board 1 x PT1000 temperature Sensor

Notes

- PT1000 sensor is generally used with the pH sensor for temperature compensation. It is advisable to space at least ten seconds the measurements of the PT1000 sensor in order to prevent the sensor from heating by Joule effect. - This example can be executed in Waspmote v12 and Waspmote v15.

Code

/*  
 *  ------ [SWI_01] - Temperature Sensor Reading for Smart Water Ions-------- 
 *  
 *  Explanation: Turn on the Smart Water Ions Board and reads the Temperature
 *  sensor printing the result through the USB
 *  
 *  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:    Ahmad Saad
 */

#include <smartWaterIons.h>

// Create an instance of the class
pt1000Class TemperatureSensor;

void setup()
{
  // Turn on the Smart Water Sensor Board and start the USB
  SWIonsBoard.ON();
  USB.ON();  
}

void loop()
{
  // Reading of the Temperature sensor
  float temperature = TemperatureSensor.read();

  // Print of the results
  USB.print(F("Temperature (Celsius degrees): "));
  USB.println(temperature);
  
  // Delay
  delay(1000);  
}

Output

H#
Temperature (celsius degrees): 20.9230957031
Temperature (Celsius degrees): 20.8330688476
Temperature (Celsius degrees): 20.9158630371
Temperature (Celsius degrees): 20.9450683593
Temperature (Celsius degrees): 20.9647216796
Temperature (Celsius degrees): 20.9499206542

Last updated