Started a gui menuflow

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Touch.h

Committer:
ahaas92
Date:
2020-06-11
Revision:
3:b029a3f73a9e

File content as of revision 3:b029a3f73a9e:

#ifndef __TOUCH_H
#define __TOUCH_H
#ifdef TARGET_DISCO_F429ZI
#include "TS_DISCO_F429ZI.h"
#include "LCD_DISCO_F429ZI.h"
#include "Screens.h"
void CheckTs();
void CheckPress(ScreenState screen);

#else
#error "This class must be used with DISCO_F429ZI board only."
#endif // TARGET_DISCO_F429ZI

#endif