Skip to content

Raspberry pi zero virtual HID mouse and keyboard

License

Notifications You must be signed in to change notification settings

thkien/zero-hid

 
 

Repository files navigation

HID python library for emulating mouse and keyboard on PI zero.

Setup - Tested on Raspbian lite 5.10

  1. Install apt dependencies
sudo apt-get update
sudo apt-get install -y git python3-pip
  1. install usb gadget module
  2. Install zero-hid with pip
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!')

About

Raspberry pi zero virtual HID mouse and keyboard

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 71.6%
  • Shell 28.4%