Questions tagged [keyboard]
A text input device. Utilize this tag to ask programming questions regarding reading input from it or blinking the lights, etc.
130 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
35
views
ItsyBitsy 32u4 missing keyboard.h [closed]
the ItsyBitsy 32u4 has the HID and can emulate a mouse, but when I do the #include "Keyboard.h" it says file not found in the board definition in the IDE.
Is there something missing in the ...
0
votes
2
answers
161
views
Is a programmable keyboard (Arduino Pro Micro + USB HOST ) possible?
How to use Arduino to create a programmable keyboard?
I want to connect a USB keyboard to my Arduino and then connect my Arduino to my computer via USB so that my Arduino is recognized as a keyboard. ...
-1
votes
1
answer
82
views
Arduino Nano Keyboard. Keys keeps pressed
I'm new in coding with Arduino, and I am trying to make a one hand keyboard with joystick as personal project. I tried to make it print some ASCII characters, but I don't know why the button keeps ...
0
votes
1
answer
601
views
HID keyboard: send modifier keys only
I want to send modifier keys like shift, alt, ctrl, etc. without any other key.
It should be theoretically possible due to the fact that it works for my normal keyboard (tested it with Xoutput and ...
1
vote
0
answers
147
views
DigiKeyboard BIOS Compatibility
I am using a custom version of the DigiKeyboard library, to use a Digispark as a keyboard in the BIOS. It works on most computers, but HP 730 Thin clients dont recognize it as a keyboard.
Below is the ...
-3
votes
1
answer
248
views
How to use Arduino Uno as PS/2 to USB converter for typical keyboard usages?
I'm beginner in Arduino and recently programmed an Arduino uno board with various PS/2 to USB converters. They work when typing in Serial Monitor of Arduino IDE, but not in the other programs such as ...
1
vote
1
answer
310
views
Intercepting Keyboard Data on a Micro Controller
Recently I have purchased male and female USB-C breakout boards. I intend to connect the male breakout to a keyboard and the female end to my computer using a USB-C cable and wire the breakouts ...
2
votes
2
answers
397
views
With reference to Arduino Keyboard library, it does not have a keymap for UK keyboard, has anyone created a KeyboardLayout_en_UK.cpp file for this?
With reference to the Arduino Keyboard library, it does not have a keymap for the UK keyboard. I have tried to find a keyboard map that shows the hex value for the UK keyboard but I didn't have any ...
2
votes
0
answers
221
views
How to connect a ps/2 keyboard to an arduino?
I want to connect an old hp ps/2 keyboard to my arduino (nucleo 64 F303RE). The keyboard has a power rating of 5v and 50mA, I guess this is milliamps.
The ps/2 connector has 4 connecting cables:
GND
...
1
vote
1
answer
483
views
Will an Arduino Nano work instead of Teensy 3.2?
I hope this is ok to post here and I appreciate any suggestions or help and opinions/facts to make this work.
First off I’ve Never programmed an Arduino device!
I was looking at this project:
https://...
1
vote
2
answers
790
views
Arduino keyboard Input language problem
I need my Arduino (Leonardo) to open cmd, but if keyboard input language isn’t English it prints another language letters.
——— code ———
Keyboard.begin();
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press('...
0
votes
1
answer
171
views
Why does keyboard.h add 136 to each key?
I want to create a custom keyboard mapping in the official arduino keyboard library
Why do the key definitions add 136 to each number?
See Keyboard_es_ES.h on github
#define KEY_MASCULINE_ORDINAL (...
1
vote
1
answer
1k
views
Mouse.move: how do I move the mouse to the center of a screen?
I have a program operating in full screen mode. I would like to move the mouse to the center of the screen. Is this something I can do with the functionality of Mouse.h?
https://www.arduino.cc/...
4
votes
2
answers
405
views
How to cut down size of imported DigiKeyboard library
I'm working on a project with a Digispark ATTiny85, that performs keystrokes using the DigisparkKeyboard library (https://github.com/digistump/DigisparkArduinoIntegration/tree/master/libraries/...
0
votes
1
answer
741
views
Adjusting Threshold for Digital Pins
I am working on a project using Force Sensors to build a keyboard for MD patients.
I have connected the sensors (each with 4 input pins) to digital pins to Arduino Due.
I want to adjust the threshold ...