From c1f8d5061c47aca0f501f254bc088fd34e268b0d Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Sat, 2 Mar 2024 14:55:58 +0100 Subject: add q8 keymap --- ferris/keymap.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ferris/keymap.c') diff --git a/ferris/keymap.c b/ferris/keymap.c index b43acbd..0dd36fb 100644 --- a/ferris/keymap.c +++ b/ferris/keymap.c @@ -16,5 +16,11 @@ #include QMK_KEYBOARD_H +// Returns true if `pos` on the left hand of the keyboard, false if right. +static bool on_left_hand(keypos_t pos) { + // works not really on planck for bottom row, but we handle that differently + return pos.row < MATRIX_ROWS / 2; +} + // our shared 34 keys keymap #include "../common/keymap.h" -- cgit v1.2.3