I just got my new neduino plus 2, and I can't get it to just blink the led:
using System;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using SecretLabs.NETMF.Hardware;
using SecretLabs.NETMF.Hardware.Netduino;
namespace NetduinoApplication1
{
public class Program
{
public static void Main()
{
OutputPort led = new OutputPort(Pins.ONBOARD_LED, false);
while (true)
{
Thread.Sleep(1000);
led.Write(true);
Thread.Sleep(1000);
led.Write(false);
}
}
}
}
*************************************************************************************************************************************
I just installed the latest firmware, updates and everything and can't get it to work, it always tells me
"Error 1 Unable to communicate with device USB:Netduino ". I tried everything, go put it in serial and in usb again everything. Here are some screenshots. please help