Created
September 13, 2016 02:54
-
-
Save dwblair/36e429bfa1e1eb63ba3f544f6e8380df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SoftModem.h> | |
// which analog pin to connect | |
#define THERMISTORPIN A0 | |
// resistance at 25 degrees C | |
#define THERMISTORNOMINAL 10000 | |
// temp. for nominal resistance (almost always 25 C) | |
#define TEMPERATURENOMINAL 25 | |
// how many samples to take and average, more takes longer | |
// but is more 'smooth' | |
#define NUMSAMPLES 5 | |
// The beta coefficient of the thermistor (usually 3000-4000) | |
#define BCOEFFICIENT 3950 | |
// the value of the 'other' resistor | |
#define SERIESRESISTOR 10000 | |
int samples[NUMSAMPLES]; | |
SoftModem modem = SoftModem(); | |
void setup() { | |
Serial.begin(9600); | |
// Serial.println("Booting"); | |
delay(100); | |
modem.begin(); | |
} | |
void loop() { | |
uint8_t i; | |
float average; | |
// take N samples in a row, with a slight delay | |
for (i=0; i< NUMSAMPLES; i++) { | |
samples[i] = analogRead(THERMISTORPIN); | |
delay(10); | |
} | |
// average all the samples out | |
average = 0; | |
for (i=0; i< NUMSAMPLES; i++) { | |
average += samples[i]; | |
} | |
average /= NUMSAMPLES; | |
//Serial.print("Average analog reading "); | |
//Serial.println(average); | |
// convert the value to resistance | |
average = 1023 / average - 1; | |
average = SERIESRESISTOR / average; | |
// Serial.print("Thermistor resistance "); | |
// Serial.println(average); | |
float steinhart; | |
steinhart = average / THERMISTORNOMINAL; // (R/Ro) | |
steinhart = log(steinhart); // ln(R/Ro) | |
steinhart /= BCOEFFICIENT; // 1/B * ln(R/Ro) | |
steinhart += 1.0 / (TEMPERATURENOMINAL + 273.15); // + (1/To) | |
steinhart = 1.0 / steinhart; // Invert | |
steinhart -= 273.15; // convert to C | |
// Serial.print("Temperature "); | |
Serial.print(steinhart); | |
Serial.println(" *C"); | |
String str=String(steinhart); | |
modem.print(str); | |
delay(100); // seems about as short a delay as we can do and still work right | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment