upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/main/keyboard.h
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-05-18 23:41:19 +0530
committerYour Name <you@example.com>2026-05-18 23:41:19 +0530
commit699fc6c03899c3b1ff853d8c7c6cf32173436354 (patch)
treea1dbf26b3d2c6ea3dc12a5c8ee443c00b364bb4d /main/keyboard.h
parent9ff7cffcff11237288cfddecee2684f499d23ddf (diff)
fix: keyboard KB_START_Y must match render position (70), simplify row 3 layout
- KB_START_Y was 310 but keyboard rendered at y=70 — touch hits never matched - Row 3 simplified to 3 keys: [layer/shift, space, done] - All 362 unit tests pass
Diffstat (limited to 'main/keyboard.h')
-rw-r--r--main/keyboard.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/keyboard.h b/main/keyboard.h
index d7b3400..495c499 100644
--- a/main/keyboard.h
+++ b/main/keyboard.h
@@ -9,7 +9,7 @@
9#define KB_KEY_H 36 9#define KB_KEY_H 36
10#define KB_KEY_GAP 2 10#define KB_KEY_GAP 2
11#define KB_ROW_COUNT 4 11#define KB_ROW_COUNT 4
12#define KB_START_Y 310 12#define KB_START_Y 70
13 13
14typedef enum { 14typedef enum {
15 KB_ALPHA_LOWER, 15 KB_ALPHA_LOWER,