ReflowController/Software/reflowController/thermo.ino
2020-10-14 00:09:12 +02:00

14 lines
200 B
C++

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