acid-drop- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
commit e77b192dee6e3d10a1d627b38901d9677ba2058a
parent 68b86a1d6d22381da11849a81cd14acb9322d227 Author: acidvegas <acid.vegas@acid.vegas> Date: Wed, 5 Jun 2024 20:17:57 -0400 Fixed keyboard not working Diffstat:
|
1 file changed, 3 insertions(+), 0 deletions(-) |
diff --git a/src/main.ino b/src/main.ino @@ -1338,6 +1338,9 @@ void handleKeyboardInput(char key) { inputBuffer.remove(inputBuffer.length() - 1); displayInputLine(); } + } else { + inputBuffer += key; + displayInputLine(); } } |