diff options
| author | Your Name <you@example.com> | 2026-05-18 23:41:19 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-18 23:41:19 +0530 |
| commit | 699fc6c03899c3b1ff853d8c7c6cf32173436354 (patch) | |
| tree | a1dbf26b3d2c6ea3dc12a5c8ee443c00b364bb4d /main/keyboard.h | |
| parent | 9ff7cffcff11237288cfddecee2684f499d23ddf (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.h | 2 |
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 | ||
| 14 | typedef enum { | 14 | typedef enum { |
| 15 | KB_ALPHA_LOWER, | 15 | KB_ALPHA_LOWER, |