Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 730 Bytes

File metadata and controls

33 lines (20 loc) · 730 Bytes

AnnePy

AnnePy is a reverse engineered python module to help you create scritps to remote control the lights on your OBINS Anne Pro 2 Keeb.

Installation

Use the package manager pip to install dependencies

pip install -r requirements.txt

Usage

from Annepy import Keeb
import time
b = Keeb() ## Detect and instance your anne pro2 keeb, as easy as that

b.set_multi([[255,0,0],[50,100,0]]) ## will turn on ESC and 1 with diferent colors

time.sleep(2.0) ## durr

b.set_all(100,100,100) ## will turn all leds with only one color

TODO

Create a method to set single or multi keys by name.

License

GNU-GPL3