mbed cz.1 ppo

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led_Lcd.h

Committer:
wkierepka
Date:
2020-06-08
Revision:
2:3a2602b8d89b
Parent:
0:5a62c1cece88

File content as of revision 2:3a2602b8d89b:

#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