Mbed p1

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Keyboard_Ts_Lcd.h

Committer:
juten
Date:
2020-06-06
Revision:
1:57b3cfb31293
Parent:
0:57867f829c01

File content as of revision 1:57b3cfb31293:

#ifndef __KEYBOARD_TS_LED_H
#define __KEYBOARD_TS_LED_H

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

class Keyboard_Ts_Lcd{
    public:
        Keyboard_Ts_Lcd(unsigned char _ucColumn = 0);
        KeyState Read();
    protected:
        Keyboard_Ts *pKeyboard;
        Led_Lcd     *pLed;
};

#endif