application for developing a menu

Dependencies:   C12832_lcd mbed

menu.h

Committer:
Mircea3M
Date:
2014-03-21
Revision:
0:842039476c99

File content as of revision 0:842039476c99:

#ifndef __MENU_H_INCLUDED__
#define __MENU_H_INCLUDED__

#include "mbed.h"
#include "C12832_lcd.h"


typedef const struct menuStructure{
    const char *text;
    unsigned char menupoints;
    unsigned char up;
    unsigned char down;
    unsigned char enter;
    void (*fp) (void);
}menuEntry;

void start(void);
void show_menu(void);
void browse_menu(void);



#endif