
Ćwiczenie zrealizowane na potrzeby przedmiotu PPO przez Krzysztofa Bolka
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
main.cpp
- Committer:
- bolko
- Date:
- 2020-05-12
- Revision:
- 0:f4c2a4d3c318
- Child:
- 1:d562d46c33b7
File content as of revision 0:f4c2a4d3c318:
#include "mbed.h" #include "keyboard_ts_lcd.h" #define BUTTONS 3 int main() { KeyboardTsLcd MyKeyboard(1); LedLcd MyLed(3); while(1){ MyLed.On(BUTTONS - MyKeyboard.eRead()); wait(0.1); } }