Duckuino is a translator from Ducky Script to Arduino, using Flex and Bison.
All keywords defined in the documentation (available here) are supported except for REPEAT. The addition of ALTGR and BACKSPACE keys is the only freedom taken from this specification.
These instructions will get you a copy of the project up and running on your local machine for development purposes.
Make sure that flex, bison and gcc are installed.
First you have to clone the git project:
git clone https://github.com/msommacal/duckuino.git
Then you can compile the project using Make:
make
Duckuino is designed to use redirections. To convert a file written in Ducky Script to an Arduino sketch, you need to use the following command:
./duckuino < input.txt > output.ino
This project is licensed under the GNU General Public License - see the LICENSE.md file for details.