1

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed

Keyboard_Ts.h

Committer:
marutson
Date:
2018-05-14
Revision:
0:6b004e89c859

File content as of revision 0:6b004e89c859:

#ifndef KEYBOARD_TS_H
#define KEYBOARD_TS_H
 
enum KeyboardState{
    RELEASED,
    LED_0,
    LED_1,
    LED_2,
    LED_3};
 
class KeyboardTs {
    
        
    public:
        KeyboardTs(unsigned char = 0);
        enum KeyboardState eRead(void);
};
 
#endif