-
Notifications
You must be signed in to change notification settings - Fork 127
/
max6675.cpp
82 lines (65 loc) · 1.86 KB
/
max6675.cpp
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// this library is public domain. enjoy!
// https://learn.adafruit.com/thermocouple/
#include "max6675.h"
/**************************************************************************/
/*!
@brief Initialize a MAX6675 sensor
@param SCLK The Arduino pin connected to Clock
@param CS The Arduino pin connected to Chip Select
@param MISO The Arduino pin connected to Data Out
*/
/**************************************************************************/
MAX6675::MAX6675(int8_t SCLK, int8_t CS, int8_t MISO) {
sclk = SCLK;
cs = CS;
miso = MISO;
// define pin modes
pinMode(cs, OUTPUT);
pinMode(sclk, OUTPUT);
pinMode(miso, INPUT);
digitalWrite(cs, HIGH);
}
/**************************************************************************/
/*!
@brief Read the Celsius temperature
@returns Temperature in C or NAN on failure!
*/
/**************************************************************************/
float MAX6675::readCelsius(void) {
uint16_t v;
digitalWrite(cs, LOW);
delayMicroseconds(10);
v = spiread();
v <<= 8;
v |= spiread();
digitalWrite(cs, HIGH);
if (v & 0x4) {
// uh oh, no thermocouple attached!
return NAN;
// return -100;
}
v >>= 3;
return v * 0.25;
}
/**************************************************************************/
/*!
@brief Read the Fahenheit temperature
@returns Temperature in F or NAN on failure!
*/
/**************************************************************************/
float MAX6675::readFahrenheit(void) { return readCelsius() * 9.0 / 5.0 + 32; }
byte MAX6675::spiread(void) {
int i;
byte d = 0;
for (i = 7; i >= 0; i--) {
digitalWrite(sclk, LOW);
delayMicroseconds(10);
if (digitalRead(miso)) {
// set the bit to 0 no matter what
d |= (1 << i);
}
digitalWrite(sclk, HIGH);
delayMicroseconds(10);
}
return d;
}