Podpunkt 2d_2 z ćwiczenia mbed_cz1

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

KeyboardTsLcd.h

Committer:
depsztyczek
Date:
2020-05-18
Revision:
0:4b909a2346a4

File content as of revision 0:4b909a2346a4:

#ifndef KEYBOARD_TS_LCD_H
#define KEYBOARD_TS_LCD_H

#include "Keyboard_Ts.h"
#include "Led_Lcd.h"

class KeyboardTsLcd{
    public:
        KeyboardTsLcd(uint8_t _ucColumn);
        Buttons eRead(void);
        KeyboardTs *pKeyboard;
        LedLcd *pLed;
};



#endif