proba1

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led_Lcd.h

Committer:
shinoku99
Date:
2020-05-17
Revision:
0:e7ba689326e2

File content as of revision 0:e7ba689326e2:

#ifndef LED_LCD_H
#define LED_LCD_H

class LedLcd{
    public:
        LedLcd(unsigned char ucLedX = 0);
        void On (unsigned char ucLedIndex);
    private:
        unsigned char ucLedPosition;
};

#endif