Ćwiczenie zrealizowane na potrzeby przedmiotu PPO przez Krzysztofa Bolka

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

keyboard_ts_lcd.h

Committer:
bolko
Date:
2020-05-20
Revision:
1:d562d46c33b7
Parent:
0:f4c2a4d3c318

File content as of revision 1:d562d46c33b7:

#ifndef KEYBOARD_TS_LCD_H
#define KEYBOARD_TS_LCD_H
#include "led_lcd.h"
#include "keyboard_ts.h"

class KeyboardTsLcd{
    public:
    KeyboardTsLcd(uint8_t ui8Column);
    enum KeyboardState eRead(); 
    
    private:
    KeyboardTs *pKeyboard;
    LedLcd *pLed;
    
    };


#endif