A mouse jiggler software written in c using the Raspberry Pi Pico software and the TinyUSB library.
The mouse jiggler moves your mouse in random patterns every half a second in order to keep your computer active.
You can build the code using the CMake
build system.
The software requires the following libaraies in order jiggle your mouse:
- PicoSDK
- TinyUSB
You can follow the steps in the Raspberry Pi Pico Starting Guide to set up your development machine.
Following the following steps to build the code:
mkdir build
cd build
cmake ../src
make
Note: Don't forget to set the PICO_SDK_PATH
in your environment variables.
Please follow the following steps to deploy the compiled binaries into your Rapsberry Pi Pico.
- Buy a Raspberry Pi Pico
- Download the generated UF2 file from releases OR build it as described in section "How To Build"
- Hold the "BootSel" button while connecting the Pico to the computer
- Drag and drop the UF2 file to the device
- Congrats your mouse will move around ;)
Here is a short video explaining the process:
This software was modified from the TinyUSB HIB example. The project and CMake was created using the Pico Project Generator.