Sending @ as keyboard

Brechnstange

New member
Hi
i strungle since yesterday to send an @ true the keyboard function ....
I didnt find anything in the net .. nor here in the board (and yes i did use the search function)
I also didnt see it as a special character on the help page "https://www.pjrc.com/teensy/td_keyboard.html"
or am i just blind .. ?

Thanks for your time and help
Cheers
Brechi
 
I'm not sure I understand your question correctly, but these few lines of code sends the @ character as if a USB keyboard is connected:
Code:
void loop() {
  Keyboard.println("@"); 
  delay(1000);
}

notepad.png

Paul
 
Back
Top