version 1.0

Dependencies:   CMSIS_DSP_401 GPS MPU9150_DMP PID QuaternionMath Servo mbed

Fork of SolarOnFoils_MainModule_20150518 by Dannis Brugman

LCD_Menu.h

Committer:
Dannis_mbed
Date:
2015-06-26
Revision:
1:b4a0d63db637
Parent:
0:81b21910454e

File content as of revision 1:b4a0d63db637:

#ifndef LCD_MENU_INCLUDE
#define LCD_MENU_INCLUDE

//////////////////////////////////////////////////////////////////////////////////////
// struct's and enumeration                                                         //
//////////////////////////////////////////////////////////////////////////////////////
enum MENU_t
{
    STARTUP = 0,    // geeft aan welk deel van de initalisatie wordt uitgevoerd
    STANDBY,        // failure indication
    ACTIVE,         // relative voltage indication
    MAINMENU,       // relative frequency
    SETTINGS,       // absolute power factor
    VIEWSETTINGS,   // test patern all leds switched on or off
    DIAGNOSIS,      // failure OS
    VIEWMINROLL,    // failure wired communication
    VIEWMAXROLL,    // failure wireless communication
    VIEWTOSPEED,    // no more failure
    VIEWFBHEIGHT    // blink
};

//////////////////////////////////////////////////////////////////////////////////////
// function prototypes                                                              //
//////////////////////////////////////////////////////////////////////////////////////
void vActualMenu(MENU_t);

#endif