Pro Micro language issue

I recently bought a Pro Micro, for the HID capabilities, and I have had a slight problem. I live in Germany, most computer keyboard layouts are German, and so I want to configure it to type for a German keyboard layout. When using Arduino IDE, by default it configures it to type in English, but I need it to be German. I am trying to create a Rubber Ducky. For those unsure what that is, take a look at this video:

This means that I am typing in Duckyscript (the script used to program the Rubber Ducky). I am already familiar with it but I do not know how to code in Arduino Script. I have been using converters
(Duckyscript - Arduino Script). I have found one that works for English keyboard layouts:

http://seytonic.com/ducky/

But I need one for German, I tried this one, that lets you choose the language:

https://nurrl.github.io/Duckuino/

But it still doesn't work. Anyone know how I can fix this?

Anything would be a great help! Thank you!

Hi,
Welcome to the forum.

Please read the first post in any forum entitled how to use this forum.
http://forum.arduino.cc/index.php/topic,148850.0.html

Have you asked in the German language section of the forum?

Tom... :slight_smile:

Talinb:
When using Arduino IDE, by default it configures it to type in English, but I need it to be German.

For minor layout differences, edit the 'asciimap' table in Keyboard.cpp.

WARNING: For any characters that require the AltGr key you will need to add code to press that key. I think it is KEY_RIGHT_GUI or KEY_RIGHT_ALT. It looks like the highest key code used is the /? key (0x38). As long as the key codes are all under 64 (0x40) you could use 0x40 for the AltGr flag (0x80 is the SHIFT flag). Use the SHIFT code as a model.

I am trying to create a Rubber Ducky.

In that case don't expect any help from me