summaryrefslogtreecommitdiff
path: root/keyboards/planck/planck.h
blob: 1beafa7764a481d0af9563683bd16337115eb16c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef PLANCK_H
#define PLANCK_H

#include "quantum.h"

#define encoder_update(clockwise) encoder_update_user(uint8_t index, clockwise)

#if defined(KEYBOARD_planck_ez)
  #include "ez.h"
#elif defined(KEYBOARD_planck_light)
  #include "light.h"
#elif defined(KEYBOARD_planck_rev1)
  #include "rev1.h"
#elif defined(KEYBOARD_planck_rev2)
  #include "rev2.h"
#elif defined(KEYBOARD_planck_rev3)
  #include "rev3.h"
#elif defined(KEYBOARD_planck_rev4)
  #include "rev4.h"
#elif defined(KEYBOARD_planck_rev5)
  #include "rev5.h"
#elif defined(KEYBOARD_planck_rev6)
  #include "rev6.h"
#endif // Planck revisions

#endif