reflow/reflowctl/reflowctl.ino

18 lines
273 B
Arduino
Raw Normal View History

2012-10-20 13:02:25 +00:00
// include the library code:
#include <LiquidCrystal.h>
#include <DFR_Key.h>
2012-10-25 15:07:09 +00:00
#include <profile.h>
#include <oven_control.h>
2012-10-01 19:03:30 +00:00
2012-10-25 15:07:09 +00:00
OvenCtl oven_ctl;
2012-10-20 13:02:25 +00:00
2012-10-01 19:03:30 +00:00
void setup() {
Serial.begin(9600);
2012-10-21 11:47:44 +00:00
delay(300);
2012-10-25 15:07:09 +00:00
oven_ctl.set_config_state();
2012-10-03 21:52:23 +00:00
}
2012-10-03 18:09:27 +00:00
2012-10-03 00:29:05 +00:00
void loop() {
2012-10-25 15:07:09 +00:00
oven_ctl.handle_states();
2012-10-01 19:03:30 +00:00
}