Initial version.

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led_Lcd.h

Committer:
bridzysta
Date:
2020-05-25
Revision:
1:6a6bc6bc51b0
Parent:
0:00760a80f72b

File content as of revision 1:6a6bc6bc51b0:

#ifndef LEDLCD_H
#define LEDLCD_H

#include "LCD_DISCO_F429ZI.h"

class LedLcd{
    public:
        LedLcd(unsigned char ucColumnXPosition);
        void On(unsigned char ucButtonLight);
    private:
        unsigned char ucColumnXIndex;
};

#endif