code review

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

LedLcd.h

Committer:
thepaueu
Date:
2020-05-14
Revision:
0:db2c7dc10f89

File content as of revision 0:db2c7dc10f89:

#ifndef _LEDLCD_H
#define _LEDLCD_H

#include "LCD_DISCO_F429ZI.h"

class LedLcd{
    
    public:
    LedLcd(unsigned char);
    void On(unsigned char);
    
    private:
    
    LCD_DISCO_F429ZI lcd;
    unsigned char ucColumn;
    
    };



#endif