Hi, I'm using the new Arduino R4 WiFi, I've been experimenting with the hid library(Keyboard) and I've noticed that some characters aren't correct.
As example if i use this program
#include <Keyboard.h>
void setup() {
Keyboard.begin();
}
void loop() {
Keyboard.press('+');
Keyboard.releaseAll();
delay(1000);
}
Instead of typing '+', Arduino types '^'. Does anyone knows why I'm not getting the correct character?
J-M-L
June 22, 2024, 3:35pm
2
are you using a US layout keyboard on your computer ?
1 Like
No, I'm using an Italian keyboard
kolaha
June 22, 2024, 3:46pm
4
use/send/write key codes instead of symbols
Keyboard.write(KEY_KPPLUS );
you may try:
Keyboard.write('+');
Keyboard.print('+');
Secret HID Scancodes
hidden
J-M-L
June 22, 2024, 3:51pm
5
so that's the issue. The library sends codes that map to an US QWERTY keyboard.
you could double check this doc and
/*
* Italian keyboard layout.
*/
#include "KeyboardLayout.h"
extern const uint8_t KeyboardLayout_it_IT[128] PROGMEM =
{
0x00, // NUL
0x00, // SOH
0x00, // STX
0x00, // ETX
0x00, // EOT
0x00, // ENQ
0x00, // ACK
0x00, // BEL
0x2a, // BS Backspace
0x2b, // TAB Tab
0x28, // LF Enter
0x00, // VT
This file has been truncated. show original
1 Like
Ok, now it works. I had to open the Keyboard.cpp file and replacing the array content with the italian version and defining the ALT_GR key as 0xc0.
Thank you for your help
system
Closed
December 19, 2024, 4:19pm
8
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.