@ vs "

I am using DIYmore Leonardo board to automate keystrokes to enroll chromebooks.

When I need it to input @, instead it inputs "

I am using the Centipede code, developed by Amplified Labs, linked below:

I have edited small parts of the code, as advised in the code, using Arduino Web Editor.

I have installed Arduino Create Agent on Windows 10 PC and then uploaded the code to my DIYmore board.

PC uses UK keyboard as does Chromebooks.

Can anyone help?

The library is written for the US keyboard layout, thus the problem.

The @ is Shift-2 on the US keyboard but on a UK keyboard, Shift-2 is double-quote.

To get the @ which is Shift-SingleQuote (two keys to the right of 'L') , send DoubleQuote which is in that position on the US keyboard. Yes, the two are swapped for some reason.