Mbed ex. 1

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led_Lcd.h

Committer:
lulusiova
Date:
2020-05-24
Revision:
0:5bdb01371db5

File content as of revision 0:5bdb01371db5:

#ifndef LEDLCD_H
#define LEDLCD_H

class LedLcd {
    public:
        LedLcd(unsigned char ucColumnPosition);
        void On(unsigned char ucLedIndex);
    private:
        unsigned char ucColumnIndex;
    };

#endif//LEDLCD_H