Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickysemenza/gola
Open Lighting Project client for golang using RPC over sockets
https://github.com/nickysemenza/gola
golang ola openlighting rpc
Last synced: 16 days ago
JSON representation
Open Lighting Project client for golang using RPC over sockets
- Host: GitHub
- URL: https://github.com/nickysemenza/gola
- Owner: nickysemenza
- License: mit
- Created: 2018-01-05T09:00:24.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-27T20:05:28.000Z (almost 6 years ago)
- Last Synced: 2024-06-21T17:01:10.398Z (5 months ago)
- Topics: golang, ola, openlighting, rpc
- Language: Go
- Homepage:
- Size: 63.5 KB
- Stars: 2
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gola
[WIP] Open Lighting Project client for golang using RPC over sockets[![Go Report Card](https://goreportcard.com/badge/github.com/nickysemenza/gola)](https://goreportcard.com/report/github.com/nickysemenza/gola)
[![GoDoc](https://godoc.org/github.com/nickysemenza/gola?status.svg)](https://godoc.org/github.com/nickysemenza/gola)Example:
```
client := New("localhost:9010")
defer client.Close()
# get DMX on universe 1if x, err := client.GetDmx(1); err != nil {
log.Printf("GetDmx: 1: %v", err)
} else {
log.Printf("GetDmx: 1: %v", x.Data)
}
```