Projectlab Elektronica-ICT KULeuven

Dependencies:   EthernetInterface TMP102 TextLCD mbed-rtos mbed

werking.pdf

Committer:
seppeduwe
Date:
Sun Mar 16 15:08:10 2014 +0000
Revision:
1:635e76c52151
Parent:
0:ae3af7d18c4a
Main goed

Who changed what in which revision?

UserRevisionLine numberNew contents of line
seppeduwe 0:ae3af7d18c4a 1 #include "mbed.h"
seppeduwe 0:ae3af7d18c4a 2 #include "TextLCD.h"
seppeduwe 0:ae3af7d18c4a 3
seppeduwe 0:ae3af7d18c4a 4 #ifndef FrameBuilder_H
seppeduwe 0:ae3af7d18c4a 5 #define FrameBuilder_H
seppeduwe 0:ae3af7d18c4a 6
seppeduwe 0:ae3af7d18c4a 7 class Display
seppeduwe 0:ae3af7d18c4a 8 {
seppeduwe 0:ae3af7d18c4a 9 private:
seppeduwe 0:ae3af7d18c4a 10 TextLCD* lcd;
seppeduwe 0:ae3af7d18c4a 11 public:
seppeduwe 0:ae3af7d18c4a 12 Display();
seppeduwe 0:ae3af7d18c4a 13 void setText(char* text);
seppeduwe 1:635e76c52151 14 void setText(char* text, int value);
seppeduwe 0:ae3af7d18c4a 15 };
seppeduwe 0:ae3af7d18c4a 16
seppeduwe 0:ae3af7d18c4a 17 #endif