Hello everyone
I have been busy programming the Arduino Leonardo with the goal of automating a Chromebook setup.
This works good, I have found This Dutch topic to put the Arduino in AZERTY mode, this works fine for the characters I have been using (TAB, nonspecial charachters) but I am stuck on the @ symbol, needed for entering an email address.
I can't get this to work.
What I have already tested:
Keyboard.print("@") //returns à
Keyboard.press(134) //Right ALT, from this link: [KeyboardModifiers](https://www.arduino.cc/en/Reference/KeyboardModifiers)
Keyboard.press(31) //Following the previous Dutch topic, this is the 2, dIt should be pressed together to get the @
Keyboard.releaseAll //Output : 13
No worky, so I tried using the ALT code:
Keyboard.Press(130) //Alt : [KeyboardModifiers](https://www.arduino.cc/en/Reference/KeyboardModifiers)
Keyboard.Press(235) //numpad 0
Keyboard.Release(235)
Keyboard.Press(231) //numpad 6
Keyboard.Release(231)
Keyboard.Press(229) //numpad 4
Keyboard.Release(229)
Keyboard.ReleaseAll // Return: 12
Does anyone know how to type out a @ sign from a Leonardo from a AZERTY locale. To be clear, I have replaced the asciimap code in Keyboard.cpp with the one found here:
https://github.com/Dukweeno/LocaleKeyboard.js/blob/master/locales/be_BE.lang
Thanks a bunch!