Qubit 2020 / presensfirmwareupdate

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers lcd_events.h Source File

lcd_events.h

00001 #ifndef LCD_EVENTS_H
00002 #define LCD_EVENTS_H
00003 
00004 #include "cisme.h"
00005 
00006 #ifdef USE_LCD
00007 
00008 /**
00009  * Welcome screen.
00010  */
00011 void lcdEventSplash(void);
00012 
00013 /**
00014  * Start handling of LCD events.
00015  */
00016 void lcdEventsStart(void);
00017 
00018 #else // USE_LCD
00019 
00020 static inline void lcdEventSplash(void)
00021 {
00022 }
00023 
00024 static inline void lcdEventsStart(void)
00025 {
00026 }
00027 
00028 #endif // USE_LCD
00029 
00030 #endif // LCD_EVENTS_H