------- [SCP_v30_05] - Temperature, humidity and pressure sensor ---------
Explanation: This is the basic code to manage and read the temperature,
humidity and pressure sensor. Cycle time: 3 minutes
Copyright (C) 2017 Libelium Comunicaciones Distribuidas S.L.
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/>.
Implementation: Alejandro Gállego
#include <WaspSensorCities_PRO.h>
Waspmote OEM. Possibilities for this sensor:
P&S! Possibilities for this sensor:
bmeCitiesSensor bme(SOCKET_A);
float temperature; // Stores the temperature in ºC
float humidity; // Stores the realitve humidity in %RH
float pressure; // Stores the pressure in Pa
USB.println(F("Temperature, humidity and pressure sensor example"));
///////////////////////////////////////////
///////////////////////////////////////////
///////////////////////////////////////////
///////////////////////////////////////////
temperature = bme.getTemperature();
humidity = bme.getHumidity();
pressure = bme.getPressure();
// And print the values via USB
USB.println(F("***************************************"));
USB.print(F("Temperature: "));
USB.printFloat(temperature, 2);
USB.println(F(" Celsius degrees"));
USB.printFloat(humidity, 2);
USB.print(F("Pressure: "));
USB.printFloat(pressure, 2);
///////////////////////////////////////////
// 3. Turn off the sensor
///////////////////////////////////////////
///////////////////////////////////////////
///////////////////////////////////////////
// After 10 seconds, Waspmote wakes up thanks to the RTC Alarm
USB.println(F("Go to deep sleep mode..."));
PWR.deepSleep("00:00:00:10", RTC_OFFSET, RTC_ALM1_MODE1, ALL_OFF);
USB.println(F("Wake up!!\r\n"));