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

https://github.com/chzchzchz/pedals

pedals
https://github.com/chzchzchz/pedals

Last synced: 3 months ago
JSON representation

pedals

Awesome Lists containing this project

README

        

# pedals

A little program for using pedals I bought off aliexpress.

## Build and Run

```sh
go get github.com/chzchzchz/pedals
pedals # lists devices
pedals your_config.json
```

## json example

Bind to device `usb-1a86_e026-event-kbd` and register handlers on key "a":

```json
[
{
"device" : "usb-1a86_e026-event-kbd",
"keys" : {"a" : {"up" : ["on_up.sh"], "down" : ["on_down.sh", "arg1"], "hold" : ["abc"] }}
}
]
```