This is a simple library used to simplify retrieving data from the TMP36 temperature sensor that comes along with the Arduino Starterkit. Note that this library only works with the Arduino framework, ...
// code // int sensorPin = 0; void setup() { Serial.begin(9600); } void loop() { int reading = analogRead(sensorPin); // measure the 5v with a meter for an accurate value //In particular if your ...