A couple of weeks ago I ordered a NetMF board from MikroElektronika in Serbia. Last night I downloaded the platform libraries and built my first application for the device (the obligatory flashing an LED). This afternoon I soldered the headers onto the clicks and hopefully didn’t make a mess of it.
using MBN; using MBN.Exceptions; using System.Threading; using Microsoft.SPOT.Hardware; namespace MBFlashy { public class Program { public static void Main() { while( true ) { MBN.Hardware.Led1.Write(!MBN.Hardware.Led1.Read()); Thread.Sleep(500); } } } }
Next steps will be to get the nRF24L01 and joystick clicks working, maybe as a remote control for my 4WD robot.
Thats brilliant, we are looking forward to hear how it goes, keep us posted!
Pingback: Mikrobus.Net Quail and Thumbstick Click | devMobile's blog