mbeed1sdf

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed

Fork of 2D_2_ by Adrian Nowak

Led_Lcd.h

Committer:
adrianow795
Date:
2017-05-29
Revision:
0:1f84f23f3814

File content as of revision 0:1f84f23f3814:

#ifndef LED_LCD_H
#define LED_LCD_H

#include "LCD_DISCO_F429ZI.h"

class LedLcd
{
    public:
        LedLcd(uint8_t);
        void On(uint8_t );
    private:
        uint8_t Column;
        LCD_DISCO_F429ZI lcd;
        void DrawButton(uint8_t , char []);
        void PressButton(uint8_t , char []);
};

#endif