-
Notifications
You must be signed in to change notification settings - Fork 27
Repost of "German Keyboard Bug + other Bugs #44
Comments
I answered 38min ago on the other, I'll close it. |
You could use logic, To type [, you type SHIFT + 8, so you take the value of 8(0x25, Value found in the _asciimap) and you apply SHIFT so : [ -> 0x25|SHIFT |
Using this logic, you can guess the other ;) |
ok, so ALT GR is just for example: "value of <|ALT GR" |
No, I couldn't do this because of Arduino Core limitations.. So i made the _altGrMap : |
ok thanks, i'll try it |
The characters I mentioned are already included:
And I wrote them for example like this;
Did I do something wrong? |
Hi @ConTRoniiX, did you tried with all the chars ? |
Yes, I did. And none of the ones I listed at the beginning is working. |
Would be nice if you would help me, I'm still having the same problem. No hate, I really love your project and I think it is awesome that you helped me so much at my past messages and you probably just missed my last one ;) |
Hi, yep I missed it: const uint8_t _asciimap[128] =
{
/* ... */
<Hex code for 'ß'>, // bslash
/* ... */
};
void initAltGr() {
_altFine = true;
/* ... */
_altGrMap[92] = true; // bslash
/* ... */
} Because you do 'ß' + altGr. This apply for all 'altGr keystrokes'. For other, I need your complete .lang :D |
Hello,
I didn't get an answer on my last Issue, so I thought i should repost it.
Bugs I found for the german keyboard:
\ is instead ß. I write it like this: ALT GR + ß
@ is instead q. I write it like this: ALT GR + Q
[ is instead 8 and ] is instead 9. I write them like this: SHIFT + 8 and SHIFT + 9
| is instead <. I write it like this: ALT GR + <
I hope you can fix it. I found a way to get around the first error (not using the backslash), but the other ones are unreplacable.
ConTRoniiX
The text was updated successfully, but these errors were encountered: