Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
main.cpp
- Committer:
- paweler
- Date:
- 2020-05-10
- Revision:
- 0:528c126a5ac9
- Child:
- 1:3f9eb24c51b2
File content as of revision 0:528c126a5ac9:
#include "mbed.h" #include "Keyboard_Ts_Lcd.h" int main() { KeyboardTsLcd LedKeyboard(2); KeyboardTsLcd TouchKeyboard(0); while(1) { TouchKeyboard.eRead(); wait(0.005); LedKeyboard.pLed->On(3 - TouchKeyboard.pKeyboard->eRead()); wait(0.095); } }