
Mbed part 1
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
Diff: main.cpp
- Revision:
- 0:d5dd7ece746d
- Child:
- 1:d392393df3d0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Fri May 08 15:43:58 2020 +0000 @@ -0,0 +1,17 @@ +#include "mbed.h" +#include "Keyboard_Ts_Lcd.h" + +#define REFRESH_PERIOD 0.1 + +KeyboardTsLcd Keyboard_Left(0); +KeyboardTsLcd Keyboard_Right(2); + +int main() +{ + while(1) + { + Keyboard_Left.eRead(); + Keyboard_Right.eRead(); + wait(REFRESH_PERIOD); + } +}