Great to see Netduino back!

Hi really glad to see the Netduino back being supported. I own 4 of them (a Netduino 1, 2, 3 and a Mini) and constantly think of new things to use them for.

Good luck!

1 Like

Hiiii

I have some problem, when I do connect my Netduino Plus 2 board to PC via USB cable its not showing in the MFDeploy tool.
I do select Device to USB, but in the selection box ny Netduino is not showing.

Is there any problem is comed in my device or there is any problem. Please help me out.

Thanks

Have you checked that the board can be seen in Device Manager?

If the device cannot be seen then try an alternative USB cable.

Regards,
Mark

Thanks Nevyn Sir,

My problem is solved.
Actually there is some little problem in .NET MFW version and netduino SDK.
When I updated it, its work fine.

But when I debug this code its showing error

using System;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using System.Threading;
using SecretLabs.NETMF.Hardware.Netduino;

namespace NedunioBlink
{
public class Program
{
public static void Main()
{
OutputPort led = new OutputPort(Pins.ONBOARD_LED, false);
Debug.Print(ā€œHellodā€);
while (true)
{
led.Write(!(led.Read()));
Thread.Sleep(1000);
}
}
}
}

Error is:

Error 1 Cannot deploy the base assembly ā€˜mscorlibā€™, or any of his satellite assemblies, to device - USB:Netduino twice. Assembly ā€˜mscorlibā€™ on the device has version 4.3.1.0, while the program is trying to deploy version 4.2.0.0

(what should I do now to get start my first experience with Netduino board, do I go for the coding which are based on 4.3.1.0)

Please do suggest me Sir, Iā€™m beginner.

Personally, I would use 4.3 but this would require a framework upgrade on your PC. You would need to check if your version of Visual Studio is compatible with 4.3.

Regards,
Mark

Finally a forum for Netduino, many thanks.
I, like so many others (I think), registered at the old forum only to find myself unable to post.
I hope it works better this time :yum: