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.

frisch928

Member Since 28 Aug 2014
Offline Last Active Sep 03 2014 01:08 AM
-----

Topics I've Started

ERROR CANT CONNECT TO NEDUINO PLUS 2

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

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.