Skip to content

Open Lighting Project client for golang using RPC over sockets

License

Notifications You must be signed in to change notification settings

nickysemenza/gola

Repository files navigation

gola

[WIP] Open Lighting Project client for golang using RPC over sockets

Go Report Card GoDoc

Example:

client := New("localhost:9010")
defer client.Close()
# get DMX on universe 1

if x, err := client.GetDmx(1); err != nil {
	log.Printf("GetDmx: 1: %v", err)
}  else {
	log.Printf("GetDmx: 1: %v", x.Data)
}