Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.
Photo

ERROR CANT CONNECT TO NEDUINO PLUS 2

NETDUINO PLUS 2 ERROR debug connect blink led

  • Please log in to reply
No replies to this topic

#1 frisch928

frisch928

    New Member

  • Members
  • Pip
  • 3 posts

Posted 29 August 2014 - 03:03 AM

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

Attached Files







Also tagged with one or more of these keywords: NETDUINO PLUS 2, ERROR, debug, connect, blink led

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.