
Best selling Electronics modules from Secret Labs LLC
On this page you’ll find a ranking of the best Electronics modules from Secret Labs LLC. To give you a quick overview, we’ve added the most important product details. This page always stays fresh and updates automatically.
1. Secret Labs LLC Netduino Go Potentiometer Modules
Netduino Go! - Potentiometer Module
Sample Code:
using Microsoft.SPOT;
namespace Module_Tests {
public class Program {
public static void Main() {
NetduinoGo.RgbLed led = new NetduinoGo.RgbLed();
NetduinoGo.Potentiometer pot = new NetduinoGo.Potentiometer();
// pot.GetValue() - Returns a float from 0 to 1.
while (true) {
led.SetColor(0, 0, (byte)(pot.GetValue() * 255));
}
}
}
}
Code with method to set a custom range:
using Microsoft.SPOT;
namespace Module_Tests {
public class Program {
public static void Main() {
NetduinoGo.RgbLed led = new NetduinoGo.RgbLed();
NetduinoGo.Potentiometer pot = new NetduinoGo.Potentiometer();
while (true) {
led.SetColor(0, 0, (byte)(Map(pot.GetValue(), 0, 1, 0, 255)));
}
}
// Used for mapping range of values to another range, linearly.
public static float Map(float input, float inMin, float inMax, float outMin, float outMax) {
return ((input - inMin) * (outMax - outMin) / (inMax - inMin) + outMin);
}
}
}.

2. Secret Labs LLC Netduino Go Button Module
The Netduino Go Button Module from Secret Labs LLC is a versatile electronics module specifically designed for integration into various hardware projects. It is a single button module that provides a simple and effective way to capture user inputs. The module supports both pressed and released events, making it ideal for applications that require interaction. The ButtonState property allows developers to query the current state of the button, facilitating the programming of responses to user actions. Thus, the Netduino Go Button Module is a valuable addition to projects that need a user-friendly interface.
- Supports pressed and released events for flexible interactions
- Easy integration into various hardware projects
- ButtonState property to query the current button status.

Secret Labs LLC Netduino Go Button Module
Badges
3. Secret Labs LLC Netduino Go RGB Led Module
The Netduino GO! RGB LED module is a single RGB LED that is very bright. The LED is set to reach only up to 33% of its possible brightness.
Example 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 } } }.
