HID python library for emulating mouse and keyboard on PI zero.
Setup - Tested on Raspbian lite 5.10
- Install apt dependencies
sudo apt-get update
sudo apt-get install -y git python3-pip
- install usb gadget module
- Install
zero-hid
withpip
pip3 install zero-hid
Note: You should connect the data usb port (left one) to the raspberry, and NOT the power port
- Control mouse
from zero_hid import Mouse
m = Mouse()
for i in range(5):
m.move_relative(10, 10)
- Control keyboard
from zero_hid import Keyboard
k = Keyboard()
k.type('Hello world!')