AZERTY layout with Keyboard.h

ok so i bought an arduino pro micro, i live in belgium and we usually use an AZERTY keyboard here ... is there a command or layout in the Keyboard.h library so i can just keep using my azerty keyboard?

Isaak

The mapping from ASCII character to key codes for the US-EN keyboard is in Keyboard.cpp:

const uint8_t _asciimap[128] =

You can change that map to convert ASCII characters to the keycodes for your keyboard.

I cant find the file...

idv7:
I cant find the file...

In your Arduino IDE installation there are two directories called 'libraries':
libraries
and
hardware/arduino/avr/libraries
You want the first one. That contains the 'Keyboard' directory.

i'm sorry but i can't find it....

i attacht a screenshot

Isaak

ok i finally found it ...
but what should I change it to?
screenshot attached!

Isaak

For example, the key that has a 'Q' on the US-EN keyboard has an 'A' on the AZERTY keyboard. Take the '0x14' that represents the US 'Q' key and put that in place of the '0x04' that represents the US 'A' key in the place of the table entries for 'A' and 'a'. Do the same for every key on your keyboard that does not have the same character as the same key on the US-EN keyboard.

ok, now i understand!