-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathSerialReading.ino
53 lines (43 loc) · 1.27 KB
/
SerialReading.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
NTC Thermistor
Reads a temperature from the NTC 3950 thermistor
and displays it in the default Serial.
https://github.com/YuriiSalimov/NTC_Thermistor
Created by Yurii Salimov, May, 2019.
Released into the public domain.
*/
#include <Thermistor.h>
#include <NTC_Thermistor.h>
#define SENSOR_PIN A1
#define REFERENCE_RESISTANCE 8000
#define NOMINAL_RESISTANCE 100000
#define NOMINAL_TEMPERATURE 25
#define B_VALUE 3950
Thermistor* thermistor;
// the setup function runs once when you press reset or power the board
void setup() {
Serial.begin(9600);
thermistor = new NTC_Thermistor(
SENSOR_PIN,
REFERENCE_RESISTANCE,
NOMINAL_RESISTANCE,
NOMINAL_TEMPERATURE,
B_VALUE
);
}
// the loop function runs over and over again forever
void loop() {
// Reads temperature
const double celsius = thermistor->readCelsius();
const double kelvin = thermistor->readKelvin();
const double fahrenheit = thermistor->readFahrenheit();
// Output of information
Serial.print("Temperature: ");
Serial.print(celsius);
Serial.print(" C, ");
Serial.print(kelvin);
Serial.print(" K, ");
Serial.print(fahrenheit);
Serial.println(" F");
delay(500); // optionally, only to delay the output of information in the example.
}