GitHub | Latest release | Changelog | License
This is a simple Flipper Zero application to send left-clicks as a USB HID device.
|
|
| Main screen | Help screen |
|---|
- Great for auto-clicking in games like Idle Wizard 😁
Download the latest release
of the fap file and put it into the apps folder on your SD card of your Flipper Zero.
cd applications_user
git clone https://github.com/pbek/usb_hid_autofire.git
cd ..
# Build the application
./fbt fap_usb_hid_autofire
# Build and launch the application
./fbt launch_app APPSRC=usb_hid_autofireWhen VS Code runs in Remote - WSL, you can deploy and launch the app directly on a
USB-connected Flipper from WSL.
- Attach the Flipper USB device to WSL from Windows PowerShell:
usbipd list
usbipd bind --busid <BUSID>
usbipd attach --wsl --busid <BUSID>- In WSL, verify the device is available:
ls /dev/ttyACM*- Run launch from the firmware root:
./fbt launch APPSRC=applications_user/usb_hid_autofireIf your firmware/toolchain still uses the older launch target, use:
./fbt launch_app APPSRC=usb_hid_autofire- If you see
Permission denied: '/dev/ttyACM0', add your user todialoutand restart WSL:
sudo usermod -aG dialout "$USER"Then run in Windows PowerShell:
wsl --shutdown- Close
qFlipperwhile launching from WSL, otherwise the serial port may be busy.

