An open API service indexing awesome lists of open source software.

https://github.com/ideoforms/gobox

Support for the That Little Box USB Go Box
https://github.com/ideoforms/gobox

Last synced: about 1 year ago
JSON representation

Support for the That Little Box USB Go Box

Awesome Lists containing this project

README

          

# gobox

Support for the That Little Box [USB Go Box](https://www.thatlittlebox.co.uk/usb-go-box).

## Installation

```
pip3 install gobox
```

## Usage

```python
box = USBGoBox()
def on_press(button_name):
# button_name will be one of yellow, blue, red, green, left, right
print("Button pressed: %s" % button_name)
box.on_press = on_press
```