diff options
Diffstat (limited to 'keyboards/claw44/claw44.c')
| -rw-r--r-- | keyboards/claw44/claw44.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboards/claw44/claw44.c b/keyboards/claw44/claw44.c new file mode 100644 index 000000000..f564fb623 --- /dev/null +++ b/keyboards/claw44/claw44.c | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #include "claw44.h" | ||
| 2 | #include "ssd1306.h" | ||
| 3 | |||
| 4 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
| 5 | #ifdef SSD1306OLED | ||
| 6 | return process_record_gfx(keycode,record) && process_record_user(keycode, record); | ||
| 7 | #else | ||
| 8 | return process_record_user(keycode, record); | ||
| 9 | #endif | ||
| 10 | } | ||
