a
Dependencies: BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed
Led_Lcd.h@0:9d0b60394104, 2017-04-24 (annotated)
- Committer:
- pbl96
- Date:
- Mon Apr 24 15:31:03 2017 +0000
- Revision:
- 0:9d0b60394104
a
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
pbl96 | 0:9d0b60394104 | 1 | #ifndef LED_LCD_H |
pbl96 | 0:9d0b60394104 | 2 | #define LED_LCD_H |
pbl96 | 0:9d0b60394104 | 3 | #include "LCD_DISCO_F429ZI.h" |
pbl96 | 0:9d0b60394104 | 4 | |
pbl96 | 0:9d0b60394104 | 5 | class LedLcd{ |
pbl96 | 0:9d0b60394104 | 6 | public: |
pbl96 | 0:9d0b60394104 | 7 | LedLcd(uint8_t); |
pbl96 | 0:9d0b60394104 | 8 | void ButtonNoPushed(uint16_t x_pos,uint16_t y_pos, uint16_t width, uint16_t height); |
pbl96 | 0:9d0b60394104 | 9 | void ButtonPushed(uint16_t x_pos,uint16_t y_pos, uint16_t width, uint16_t height); |
pbl96 | 0:9d0b60394104 | 10 | void SetString(uint8_t x_pos,uint8_t y_pos,uint8_t *pText, Text_AlignModeTypdef mode); |
pbl96 | 0:9d0b60394104 | 11 | uint8_t column; |
pbl96 | 0:9d0b60394104 | 12 | |
pbl96 | 0:9d0b60394104 | 13 | |
pbl96 | 0:9d0b60394104 | 14 | }; |
pbl96 | 0:9d0b60394104 | 15 | |
pbl96 | 0:9d0b60394104 | 16 | |
pbl96 | 0:9d0b60394104 | 17 | |
pbl96 | 0:9d0b60394104 | 18 | #endif |