The netduino GO! RGB LED module is a single RGB LED, a very bright one! The LED is set to only go up to 33% of its possible brightness.
Here is a quick video I (
Omar) made to show what can be done with it and how:
Sample Code:using System.Threading;
namespace Module_Tests
{
public class Program
{
public static void Main()
{
NetduinoGo.RgbLed led = new NetduinoGo.RgbLed();
led.SetColor(0, 0, 0);
Thread.Sleep(2000);
led.SetColor(255, 0, 0);
Thread.Sleep(2000);
led.SetColor(0, 255, 0);
Thread.Sleep(2000);
led.SetColor(0, 0, 255);
Thread.Sleep(2000);
led.SetColor(255, 255, 0);
Thread.Sleep(2000);
led.SetColor(0, 255, 255);
Thread.Sleep(2000);
led.SetColor(255, 0, 255);
Thread.Sleep(2000);
led.SetColor(255, 255, 255);
// 255 - Full brightness
// 0 - Off
}
}
}
Where to buy:
Design and NETMF Source Files are attached!¶