Archiviert
1
0
Dieses Repository ist archiviert. Du kannst Dateien ansehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
keybrd/src/Code.h

12 Zeilen
216 B
C

2016-05-09 14:05:08 +00:00
#ifndef CODE_H
#define CODE_H
#include "Key.h"
/* Code is an abstract base class.
Each Code object contains one USB scancode and sends the scancode to the computer.
2016-05-09 14:05:08 +00:00
*/
class Code : public Key
{
};
#endif