mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
27 lines
336 B
C
27 lines
336 B
C
/*
|
|
* 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_ */
|