Plazmaz / Duckuino

A basic Duckyscript to Arduino converter
MIT License
61 stars 23 forks source link

Key Combos not being converted #12

Closed ButchMonkey closed 8 years ago

ButchMonkey commented 8 years ago

I take your example -

DELAY 100
STRING Hello world! I am Duckuino!
ENTER
CTRL ALT DELETE

and receive -

print(F("HELLO WORLD! I AM DUCKUINO!"));

type(KEY_RETURN,false);
Keyboard.releaseAll();

type(KEY_LEFT_CTRL,false);
type(' ',false);
Keyboard.releaseAll();

The strings are fine and so is the single command but CTRL ALT DELETE is lost

lowlevl commented 8 years ago

I saw this i've got a fixed version of this software that i'll upload to my github :D That's work with all combos :D

lowlevl commented 8 years ago

Done uploaded ^^ https://github.com/Thecakeisgit/DuckuinoPlus

Plazmaz commented 8 years ago

@Thecakeisgit please submit your changes as a PR or fix your project to pertain to the rules specified in the MIT license. EDIT: Just realized you are likely not using proprietary code. In that case, thank you for creating an alternative to a long dead project, don't worry about license stuff. Will link your project in the readme after I confirm it's working.