AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

board/Keyboard.h

Committer:
sillevl
Date:
2014-12-13
Revision:
4:2c91c9eccf3a
Child:
11:50572814f73e

File content as of revision 4:2c91c9eccf3a:

#ifndef KEYBOARD_H
#define KEYBOARD_H

#include "mbed.h"

struct KeyboardPins{
    PinName rows[4];
    PinName cols[3];
};

class Keyboard{
    public:
    Keyboard(KeyboardPins keyboardPins);    
    
};

#endif