1
0
forked from me/IronOS

Improve Key Names, Add Font drawing,Working on modes

This commit is contained in:
Ben V. Brown
2016-09-18 22:43:35 +10:00
parent c7e2713004
commit 5aa27348b5
15 changed files with 363 additions and 190 deletions

View File

@@ -0,0 +1,26 @@
/*
* Modes.h
*
* Created on: 17 Sep 2016
* Author: Ralim
*/
#ifndef MODES_H_
#define MODES_H_
#include "CTRL.h"
#include "Hardware.h"
enum
{
STARTUP,//we are sitting on the prompt to push a button
SOLDERING,
TEMP_ADJ,
SETTINGS,
} operatingMode;
enum {
UVLO,
SLEEP_TEMP,
SLEEP_TIME,
}settingsPage;
#endif /* MODES_H_ */