Kamil Maruta / Mbed 2 deprecated zad_2d_2

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "KeyboardTsLcd.h"
00003  
00004  
00005 int main()
00006 {
00007     KeyboardTsLcd Keyboard;
00008     LedLcd LedRight(2);
00009    
00010   
00011     while(1) {
00012         LedRight.On(Keyboard.eRead());
00013         wait(0.1);
00014     }
00015 }
00016