AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Committer:
sillevl
Date:
Thu Feb 09 12:28:56 2017 +0000
Revision:
27:f29805113454
Parent:
4:2c91c9eccf3a
ARCHIVE WIP, not working (crashes, cause unknown)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sillevl 4:2c91c9eccf3a 1 #ifndef KEY_H
sillevl 4:2c91c9eccf3a 2 #define KEY_H
sillevl 4:2c91c9eccf3a 3
sillevl 4:2c91c9eccf3a 4 #include "Button.h"
sillevl 4:2c91c9eccf3a 5
sillevl 4:2c91c9eccf3a 6 class Key : public Button{
sillevl 4:2c91c9eccf3a 7 public:
sillevl 4:2c91c9eccf3a 8 Key(PinName keyPin);
sillevl 4:2c91c9eccf3a 9 };
sillevl 4:2c91c9eccf3a 10
sillevl 4:2c91c9eccf3a 11
sillevl 4:2c91c9eccf3a 12
sillevl 4:2c91c9eccf3a 13 #endif