Mbed touchscreed project. To be corrected

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led_Lcd.h

Committer:
piotrlopata
Date:
2020-05-11
Revision:
4:35b2f0e76b02
Parent:
1:55e05d2aa9cd
Child:
7:982fb1421824

File content as of revision 4:35b2f0e76b02:

#ifndef LED_LCD_H
#define LED_LCD_H

#include "LCD_DISCO_F429ZI.h"

class LedLcd {
    private:
        uint16_t ColumnX;
        LCD_DISCO_F429ZI lcd;
    public:
        LedLcd(uint16_t);
        void On(uint16_t);  
};

#endif