a
Dependencies: LCD_DISCO_F429ZI mbed BSP_DISCO_F429ZI
gui.h@6:06ff453bb16e, 2020-05-22 (annotated)
- Committer:
- matis755
- Date:
- Fri May 22 07:30:59 2020 +0000
- Revision:
- 6:06ff453bb16e
- Parent:
- 5:3c19c3ae6286
Use standard C functions
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
matis755 | 5:3c19c3ae6286 | 1 | #ifndef GUI |
matis755 | 5:3c19c3ae6286 | 2 | #define GUI |
matis755 | 5:3c19c3ae6286 | 3 | |
matis755 | 5:3c19c3ae6286 | 4 | #include "LCD_DISCO_F429ZI.h" |
matis755 | 5:3c19c3ae6286 | 5 | |
matis755 | 5:3c19c3ae6286 | 6 | class Gui : private LCD_DISCO_F429ZI{ |
matis755 | 5:3c19c3ae6286 | 7 | private: |
matis755 | 5:3c19c3ae6286 | 8 | void DrawTop(void); |
matis755 | 5:3c19c3ae6286 | 9 | unsigned char ucInitialPos; |
matis755 | 5:3c19c3ae6286 | 10 | public: |
matis755 | 5:3c19c3ae6286 | 11 | Gui(); |
matis755 | 5:3c19c3ae6286 | 12 | void RefreshLeds(unsigned char ucIdx); |
matis755 | 5:3c19c3ae6286 | 13 | void RefreshTop(unsigned char ucPos); |
matis755 | 5:3c19c3ae6286 | 14 | void SetRelAngle(unsigned char ucInitial); |
matis755 | 5:3c19c3ae6286 | 15 | }; |
matis755 | 5:3c19c3ae6286 | 16 | |
matis755 | 5:3c19c3ae6286 | 17 | |
matis755 | 5:3c19c3ae6286 | 18 | #endif |