mbed cz.1 ppo

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led_Lcd.h

Committer:
wkierepka
Date:
2020-06-01
Revision:
0:5a62c1cece88

File content as of revision 0:5a62c1cece88:

#ifndef LED_LCD_H
#define LED_LCD_H
#include "LCD_DISCO_F429ZI.h"

class LedLcd{
    public: 
        void On (unsigned char ucLed); 
        LedLcd(unsigned char ucColumn);
    private:
        unsigned char ucColumnPosition;
        };
#endif