Meredith who is 8 wrote her first .Net MF program
public class Program
{
public static void Main()
{
OutputPort led = new OutputPort((Cpu.Pin)FEZ_Pin.Digital.Di9, ledState);
AnalogIn volume = new AnalogIn((AnalogIn.Pin)FEZ_Pin.AnalogIn.An1);
while (true)
{
Debug.Print("Volume = " + volume.Read().ToString());
Thread.Sleep(volume.Read());
led.Write(!led.Read());
}
}
She wants to hack the robot code next, small steps