code review

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Committer:
thepaueu
Date:
Thu May 14 18:45:14 2020 +0000
Revision:
0:db2c7dc10f89
Pawel Majtas cw 2d2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thepaueu 0:db2c7dc10f89 1 #ifndef _LEDLCD_H
thepaueu 0:db2c7dc10f89 2 #define _LEDLCD_H
thepaueu 0:db2c7dc10f89 3
thepaueu 0:db2c7dc10f89 4 #include "LCD_DISCO_F429ZI.h"
thepaueu 0:db2c7dc10f89 5
thepaueu 0:db2c7dc10f89 6 class LedLcd{
thepaueu 0:db2c7dc10f89 7
thepaueu 0:db2c7dc10f89 8 public:
thepaueu 0:db2c7dc10f89 9 LedLcd(unsigned char);
thepaueu 0:db2c7dc10f89 10 void On(unsigned char);
thepaueu 0:db2c7dc10f89 11
thepaueu 0:db2c7dc10f89 12 private:
thepaueu 0:db2c7dc10f89 13
thepaueu 0:db2c7dc10f89 14 LCD_DISCO_F429ZI lcd;
thepaueu 0:db2c7dc10f89 15 unsigned char ucColumn;
thepaueu 0:db2c7dc10f89 16
thepaueu 0:db2c7dc10f89 17 };
thepaueu 0:db2c7dc10f89 18
thepaueu 0:db2c7dc10f89 19
thepaueu 0:db2c7dc10f89 20
thepaueu 0:db2c7dc10f89 21 #endif