-
So this will be my first time doing any sort of rubber ducky. I am a programmer but just unfamiliar with Arduino and wifi protocols. I am looking to make a wifi controlled mouse , I have a way to get the screen resolution and image I just need a way to tell the computer to move the mouse and I found your repository and it seems like a good fit. I saw in the other discussion that you had your ducky draw space invaders with the mouse but when I was looking at the commands in ducky script I only saw keyboard input commands and no mouse commands. So how do you tell the mouse where to go? I could have honestly just missed it but please point me in the right direction at least. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
just open a mspaint, select the pen, then issue the command "DrawSpaceInvaders" to the ducky parser |
Beta Was this translation helpful? Give feedback.
-
Arduino IDE needs the esp32-arduino 2.0.6 package you download from the boards manager, and a few libraries you can get from the library manager, so clicking is enough to get you there. After that you just open the .ino file with Arduino IDE, hit the compile button and read the error messages. You'll need a magnet to set the ESP32-WUD in upload mode as it comes flashed with USB-CDC disabled (which you can enable later to avoid using the magnet every time). |
Beta Was this translation helpful? Give feedback.
I'm not sure where you read that the USBHost was needed, but it's not.
ESP32-S2 has native USB support, there's no shield involved here, also it's not acting as a HOST but as a Device.
Espressif core comes with all the USB stuff, and wud-ducky is built over that, nothing else is needed but what is listed in the Readme:
Please don't divert from the instructions in the ReadMe if you expect any help.