Skip to content

realbucksavage/openrgb-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go OpenRGB Client

A Go client library for OpenRGB SDK Server. This library is Go a port of vlakreeh/openrgb, which is written in JavaScript.

Usage

Here's how this library can be used to do some stuff. There's an example file in this repository (examples/basic.go) that sets the color of all connected devices to Cyan.

A connection to an OpenRGB Server can be opened like this:

import "github.com/realbucksavage/openrgb-go"

func main() {
    c, err := openrgb.Connect("localhost", 6742)
    if err != nil {
        // ...
    }

    defer c.Close()
}

The Connect(...) method returns an instance of openrgb.Client. All available methods methods can be found in the client.go file (I'll update the docs later, I promise 😄).

Open TODOs

  • Documentation
  • Save/Load profile methods
  • I feel like openrgb.Client.UpdateZoneLEDs method can be written in a better way...

Contributing

What contributions are needed?

Anything that is an open to-do item, is a much welcome contribution.

How to reach me?

These are some ways:

  • Discord : bucksavage100x#0476
  • Email
  • Open a PR or an Issue on this project

Releases

No releases published

Packages

No packages published

Languages