Open auveele opened 7 years ago
Can you please tell us what problems you had and what you changed to solve them?
Of course, sorry.
I had problem with the symbols that need to press ALT_GR (ALT_RIGHT). Like: \ | @ # ~ [ ] { }
The firmware has the initAltGr function, but It never be called. This code is to modify the key, if the key code is in the _altGrMap array.
if (!_altFine) initAltGr();
if (_altGrMap[oldKey]){
_keyReport.modifiers |= 0x40;
} else {
_keyReport.modifiers = 0;
}
We updated the converter! Can you try out if it works?
Hi,
I test the converter in malduino.com/converter, with the es_ES language and i download the arduino Sketch. I test it, but it does not work, like at first.
I compare the Keyboard.cpp and I think it is the same as the beginning, it does not contain the update we talked about in this issue.
Have you updated it in the malduino.com/converter?
Try it again now.
I haven't got the Malduino with me, I'm at office now. But I download the code selecting the language es_Es, and I think that the Keyboard.cpp is the same. I saw that in your github an update in the Keyboard_end.cpp file with the additions.
#ifdef ADD_ALTGR
if (!_altFine) initAltGr();
if (_altGrMap[oldKey]){
_keyReport.modifiers |= 0x40;
} else {
_keyReport.modifiers = 0;
}
#endif
But that part isn't in the malduino.com/converter
Ah you're right
@Seytonic ... the converter.js
is updated but src/Keyboard_end.cpp
not.
Hi, With the changes that you did in keyboard.ccp I already work well the symbols but does not work the GUI R, what it does is press only GUI and then write R. I hope you can help me
Does it work with the previous spanish keyboard.cpp? You can put it together yourself by making the keyboard.cpp out of these 3 files (in this order): https://github.com/Seytonic/malduino/blob/master/converter/src/Keyboard_begin.cpp + https://github.com/Nurrl/LocaleKeyboard.js/blob/master/locales/es_ES.lang + https://github.com/Seytonic/malduino/blob/master/converter/src/Keyboard_end.cpp
THANK YOU. Already works, but now instead of writing \ write º, is it possible to solve it?
Ok it's as I thougt. If you want the keys to be correct you gotta use @auveele fix, but then you have the problem with the key combinations again.
@auveele do you have an idea what causes this?
Hi,
I am not good programming in arduino and wanted to know if it could be in firmware make it look in the string the backslash and make it press ALT 92.
HI, i'm tested the new converter an now work every special key but the GUI r doesn't´t work again. ;c
Hello, have the same issue on the french keyboard :( Can you help me please, I received my malduino lite today :) thank you !
Hello, I just received my malduino yesterday. I've been testing and enjoying it, but I had a problem with the keyboard layout. Even with the Malduino official web converter.
I read some forums and github issues, and finally I have managed to make it work. I wanna share with you, my changes in the Keyboard.cpp file.
I hope that this will be usefull.