ELEC2645 (2018/19) / Mbed 2 deprecated el17ajf

Dependencies:   mbed

Fork of el17ajf by Angus Findlay

Committer:
el17ajf
Date:
Tue Mar 26 10:18:17 2019 +0000
Revision:
16:3f84f2d7b910
Child:
17:cc448ab7266f
lab updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
el17ajf 16:3f84f2d7b910 1 class UI {
el17ajf 16:3f84f2d7b910 2 public:
el17ajf 16:3f84f2d7b910 3 void clear();
el17ajf 16:3f84f2d7b910 4
el17ajf 16:3f84f2d7b910 5 void drawTitle(const char * text);
el17ajf 16:3f84f2d7b910 6 void drawLabel(const char * text);
el17ajf 16:3f84f2d7b910 7 bool drawAndCheckButton(const char * text);
el17ajf 16:3f84f2d7b910 8
el17ajf 16:3f84f2d7b910 9 void selectNextButton();
el17ajf 16:3f84f2d7b910 10 void selectPreviousButton();
el17ajf 16:3f84f2d7b910 11 void pressButton();
el17ajf 16:3f84f2d7b910 12 };