Skip to content

sakar111/ch9329

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ch9329

Python module to control ch9329

Installation

You can install the package via pip:

pip install ch9329

Usage

from serial import Serial

from ch9329 import keyboard
from ch9329 import mouse

ser = Serial("COM3", 9600, timeout=1)

keyboard.press_and_release(ser, key="a", modifier="ctrl")
keyboard.write(ser, text="HEllo@World;")

mouse.move(ser, x=500, y=500)
mouse.move(ser, x=50, y=50, relative=True)
mouse.click(ser, button="left")

ser.close()

License

This project is licensed under the terms of the MIT license.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Contact

If you want to contact me you can reach me at [email protected].

About

Python module to control ch9329

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages