AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Revision:
4:2c91c9eccf3a
Child:
11:50572814f73e
diff -r ce34dfe2463b -r 2c91c9eccf3a board/Keyboard.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/board/Keyboard.h	Sat Dec 13 10:11:24 2014 +0000
@@ -0,0 +1,17 @@
+#ifndef KEYBOARD_H
+#define KEYBOARD_H
+
+#include "mbed.h"
+
+struct KeyboardPins{
+    PinName rows[4];
+    PinName cols[3];
+};
+
+class Keyboard{
+    public:
+    Keyboard(KeyboardPins keyboardPins);    
+    
+};
+
+#endif
\ No newline at end of file