19 lines
268 B
C++
19 lines
268 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.loop();
|
||
|
}
|