a

Committer:
Dom952
Date:
Sat Apr 23 17:44:09 2016 +0000
Revision:
0:34b1537ddf24
a

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Dom952 0:34b1537ddf24 1 #ifndef LED_LCD_H
Dom952 0:34b1537ddf24 2 #define LED_LCD_H
Dom952 0:34b1537ddf24 3
Dom952 0:34b1537ddf24 4 #include "LCD_DISCO_F429ZI.h"
Dom952 0:34b1537ddf24 5
Dom952 0:34b1537ddf24 6 class LedLcd{
Dom952 0:34b1537ddf24 7 public:
Dom952 0:34b1537ddf24 8 LedLcd (unsigned char);
Dom952 0:34b1537ddf24 9 void On (unsigned char);
Dom952 0:34b1537ddf24 10 private:
Dom952 0:34b1537ddf24 11 unsigned char Column;
Dom952 0:34b1537ddf24 12 LCD_DISCO_F429ZI lcd;
Dom952 0:34b1537ddf24 13 };
Dom952 0:34b1537ddf24 14
Dom952 0:34b1537ddf24 15 #endif