mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
16 lines
260 B
C
16 lines
260 B
C
#ifndef CLUEBOARD_H
|
|
#define CLUEBOARD_H
|
|
|
|
#include "quantum.h"
|
|
|
|
#ifdef KEYBOARD_clueboard_66_rev1
|
|
#include "rev1.h"
|
|
#endif
|
|
#ifdef KEYBOARD_clueboard_66_rev2
|
|
#include "rev2.h"
|
|
#endif
|
|
#ifdef KEYBOARD_clueboard_66_rev3
|
|
#include "rev3.h"
|
|
#endif
|
|
|
|
#endif
|