Now that Microsoft has released their .NET Micro Framework under an open source license, we’re hoping to see some interesting projects come out of it. The makers of the .NET-powered FEZ boards wrote in with this cool project:
This project demonstrates how to use the Xbox Rock Band Stage Kit with Micro framework using GHI’s USB Host feature….no Xbox is necessary!
…
This example uses a distance detector to measure the distance from the stage kit. The closer you get, the more LEDs will turn on and you will get faster strobe. If you are too close, the fog machine will start working.Here’s some code:
// when it is connected, make a new device RBSKController rbsk = new RBSKController(device); // set strobe speed rbsk.SetStrobe(RBSKController.StrobeSpeed.Faster); // Turn on the second and sixth Blue LEDs rbsk.SetLEDs(RBSKController.LEDColor.Blue, RBSKController.LEDs
ADVERTISEMENT