Skip to content

protoface/RazerChromaConnector

Repository files navigation

RazerChromaConnector

A easy to use Razer Chroma Connect interface for use with .net.

Usage

Razer Synapse 3 has to be installed to use the connector. You will also need a vaild AppId you can get from here.

Install the the Nuget-Package "protoface.ChromaConnector" or download the source and include ChromaConnector in your project.

using ChromaConnector;

Guid AppId = Guid.Parse("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx");
ChromaManager.Connect(AppId, Connector_OnBroadcast);

void Connector_OnBroadcast(ChromaConnector.Color[] e)
{
    // do stuff
}

// Dispose
ChromaManager.Unitialize();