Rubber ducky with Attiny85 - language problem

I have been trying to create my own Rubber Ducky type device with Arduino. Using Attiny85 but have some problem with the keyboards keys. I'm using Swedish keyboard and the rubber ducky will be used on swedish layout.

I want to use @ and -
But on US keyboard they are located as " and +
Any ideas?

You should be able to reffer to them as their ascii code.

 byte ASCIIvalue = 64;                          //For the @ character
  Serial.write(ASCIIvalue);
1 Like

Isn’t a Rubber Ducky a hacking/virus type device .
if it is you won’t get help here !! So wot is it ?

1 Like

It’s true. I have a couple of 100 Chromebooks to enroll. With this solution I will save time… much time.

Have you looked at centipede ?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.