diff options
author | Cristian Maglie <c.maglie@bug.st> | 2013-01-06 18:38:03 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2013-01-06 18:38:03 +0100 |
commit | c01bc2b62f76a5d417e5ed13dcb0c047a4f67224 (patch) | |
tree | 4703fc452282756f3c40d38f9d41b1a28e0bf0f6 /libraries/Esplora/Beginners/EsploraTemperatureSensor | |
parent | 5f4e55a3d274838388696c3f8130b0f2dc40daf7 (diff) |
Merged upcoming 1.0.4 and updated revision log
Diffstat (limited to 'libraries/Esplora/Beginners/EsploraTemperatureSensor')
-rw-r--r-- | libraries/Esplora/Beginners/EsploraTemperatureSensor/EsploraTemperatureSensor.ino | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/libraries/Esplora/Beginners/EsploraTemperatureSensor/EsploraTemperatureSensor.ino b/libraries/Esplora/Beginners/EsploraTemperatureSensor/EsploraTemperatureSensor.ino new file mode 100644 index 0000000..72bbf04 --- /dev/null +++ b/libraries/Esplora/Beginners/EsploraTemperatureSensor/EsploraTemperatureSensor.ino @@ -0,0 +1,37 @@ +/* + Esplora Temperature Sensor + + This sketch shows you how to read the Esplora's temperature sensor + You can read the temperature sensor in Farhenheit or Celsius. + + Created on 22 Dec 2012 + by Tom Igoe + + This example is in the public domain. + */ +#include <Esplora.h> + +void setup() +{ + Serial.begin(9600); // initialize serial communications with your computer +} + +void loop() +{ + // read the temperature sensor in Celsius, then Fahrenheit: + int celsius = Esplora.readTemperature(DEGREES_C); + int fahrenheit = Esplora.readTemperature(DEGREES_F); + + // print the results: + Serial.print("Temperature is: "); + Serial.print(celsius); + Serial.print(" degrees Celsius, or "); + Serial.print(fahrenheit); + Serial.println(" degrees Fahrenheit."); + Serial.println(" Fahrenheit = (9/5 * Celsius) + 32"); + + // wait a second before reading again: + delay(1000); +} + + |