mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
16 lines
231 B
C
16 lines
231 B
C
#ifndef HELIX_H
|
|
#define HELIX_H
|
|
|
|
#ifdef KEYBOARD_helix_rev1
|
|
#include "rev1.h"
|
|
#endif
|
|
#ifdef KEYBOARD_helix_rev2
|
|
#include "rev2.h"
|
|
#endif
|
|
#ifdef KEYBOARD_helix_pico
|
|
#include "pico.h"
|
|
#endif
|
|
|
|
#include "quantum.h"
|
|
|
|
#endif
|