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 BSP_DISCO_F429ZI
Led_Lcd.h
- Committer:
- bolko
- Date:
- 2020-05-12
- Revision:
- 0:f4c2a4d3c318
File content as of revision 0:f4c2a4d3c318:
#ifndef LED_LCD_H #define LED_LCD_H #include "LCD_DISCO_F429ZI.h" enum ButtonState { BUTTON_PRESSED, BUTTON_RELEASED }; class LedLcd{ public: LedLcd(uint8_t); void On(uint8_t); private: void Button(uint8_t,ButtonState); uint8_t ui8Column; }; #endif