Library for emulate mouse and keyboard on raspberry pi zero
Project description
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
Usage
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!')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
zero_hid-0.1.3.tar.gz
(29.1 kB
view hashes)
Built Distribution
zero_hid-0.1.3-py3-none-any.whl
(44.2 kB
view hashes)