DigisparkKeyboard
DigisparkKeyboard copied to clipboard
kbd_es_es kind of fix
hi, so like many other issues posted here, i was getting pure gibberish output with he es_es inclueded, i was able to kinda fix this by directly placing the contents of digi_es_es.h into the digi_en_us.h file i think im pretty close, im just missing a few characters for it to be fully operational:
from this:
#include "DigiKeyboard.h"
#define kbd_es_es
void setup() {
}
void loop() {
DigiKeyboard.sendKeyStroke(0);
DigiKeyboard.delay(1500);
DigiKeyboard.print("abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 1234567890 !#$%&'()*+,-./:;<=>?@[]^_`{|}~");
for(;;){}
}
i get this output:
abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 1234567890 !·$%&'()*+,-./:;<=>?@
so the only characters missing are: # [ ] ^ _ ` { | } ~
any ideas on how to get those?
PD I have NO idea why this worked tho, because i've modifies the en_us file, but i'm still including the es_es file on to the script XD
Hope this helps someone, cheers