Sending a hex value will turn the LEDs to the same hex color.
What ports can I use it on?
All of them!
Code
using Magic;
public class Demo : MonoBehaviour
{
// create a reference to the module
public Magic.Modules.GlowModule glow;
void Start()
{
}
void Update()
{
// create a new color
Color blue = new Color(0, 0, 255);
// call the module's function
glow.SetColor(blue);
}
}