ReflowController/Software/reflowController/thermo.ino

14 lines
200 B
Arduino
Raw Normal View History

2020-10-14 00:09:12 +02:00
#define MAXDO 7
#define MAXCS 6
#define MAXCLK 8
2020-10-14 00:09:12 +02:00
MAX6675 thermocouple(MAXCLK, MAXCS, MAXDO);
void Thermo_Init(void) {
}
void Thermo_Task(void) {
oven_temp = thermocouple.readCelsius();
}