ReflowController/Software/reflowController/thermo.ino

14 lines
200 B
C++

#define MAXDO 7
#define MAXCS 6
#define MAXCLK 8
MAX6675 thermocouple(MAXCLK, MAXCS, MAXDO);
void Thermo_Init(void) {
}
void Thermo_Task(void) {
oven_temp = thermocouple.readCelsius();
}