reflow/reflowctl/reflowctl.ino

18 lines
273 B
C++

// include the library code:
#include <LiquidCrystal.h>
#include <DFR_Key.h>
#include <profile.h>
#include <oven_control.h>
OvenCtl oven_ctl;
void setup() {
Serial.begin(9600);
delay(300);
oven_ctl.set_config_state();
}
void loop() {
oven_ctl.handle_states();
}