this locks like shit

Dependencies:   MenuLCD mbed

Fork of MenuLCD_copy by Vinícius Alves

Committer:
ViniR
Date:
Fri May 19 13:07:52 2017 +0000
Revision:
0:92357d1220f3
Ent?o PARA...

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ViniR 0:92357d1220f3 1 #ifndef _MENBEDMENUMESSAGE_H_
ViniR 0:92357d1220f3 2 #define _MENBEDMENUMESSAGE_H_
ViniR 0:92357d1220f3 3
ViniR 0:92357d1220f3 4 #include "mbed.h"
ViniR 0:92357d1220f3 5
ViniR 0:92357d1220f3 6 class MenbedMenuMessage {
ViniR 0:92357d1220f3 7 public:
ViniR 0:92357d1220f3 8 char *text;
ViniR 0:92357d1220f3 9 bool showUpArrow;
ViniR 0:92357d1220f3 10 bool showDownArrow;
ViniR 0:92357d1220f3 11
ViniR 0:92357d1220f3 12 MenbedMenuMessage (uint8_t numLines, uint8_t lineLength);
ViniR 0:92357d1220f3 13 ~MenbedMenuMessage ();
ViniR 0:92357d1220f3 14 };
ViniR 0:92357d1220f3 15
ViniR 0:92357d1220f3 16 #endif /* _MENBEDMENUMESSAGE_H_ */