Questions tagged [netduino]

Netduino is an open-source electronics platform using the .NET Micro Framework.

A tag for any questions related to the open-source electronics platform, Netduino.

Netduino's current hardware variants consist of the Netduino 2, Netduino Plus 2, and Netduino Go. Their legacy hardware variants are the Netduino, Netduino Plus, and the Netduino Mini. With this tag, you can post questions relating to whichever type of Netduino you own. All variants run the .NET Micro Framework, meaning you can use much of the same programming skills and techniques you have learned as a C# programmer to venture into the world of physical computing.

For further information about Netduino, check out netduino.com and to learn more about the .NET Micro Framework, go to netmf.com.

71 questions
28
votes
4 answers

What is the difference betweet Netduino and .NET Gadgeteer?

I wanted to learn .NET Microframework and found that there is (among others) Netduino which is somehow compatible with Arduino. Recently .NET Gadgeteer came to public. There was a lot of enthusiasm, so it looks like important step for .NET…
stej
  • 28,745
  • 11
  • 71
  • 104
16
votes
4 answers

How to convert this hex string into a long?

I have: "0xE94C827CEB" in hex but as a string. Which is: 1002011000043 (dd mm yyyy HH mm ss) Unfortunately I don't know how to do the conversion if I only have it in string format, and I don't have a Convert.ToLong("0xE94C827CEB", 16) function…
Daniel Minnaar
  • 5,865
  • 5
  • 31
  • 52
11
votes
4 answers

Netduino no "Console.WriteLine", Console does not exist in current context

I cannot seem to get my very simple netduino program to write to the debug console; VS throws an error The name 'Console' does not exist in the current context Any ideas what might cause it to not exist? using System; using System.Text; using…
wmarbut
  • 4,595
  • 7
  • 42
  • 72
9
votes
5 answers

Greater time resolution using .NET Micro Framework on Netduino board (for dimming an LED)?

I'm programming a Netduino board using the .NET Micro Framework 4.1 and want to get a higher time resolution than milliseconds. This is because I'm attempting to dim an LED by blinking it really fast. The issue is that the sample code uses…
John K
  • 28,441
  • 31
  • 139
  • 229
7
votes
3 answers

Json Library for .Net Microframework

I'm running a light webserver using .Net Microframework and I was wondering what libraries would work well for for mainly JSON serialization, but possibly deserialization as well. Problem I've found with a lot of JSON libraries is they use fancy…
Ryu
  • 8,641
  • 10
  • 65
  • 98
7
votes
3 answers

How can I port an Arduino program to .net for use on a Netduino?

I have a program written with the standard Arduino IDE in C. Is there any way that I can port my program to C# so I can use it with .net and my Netduino?
Sponge Bob
  • 1,551
  • 5
  • 17
  • 23
5
votes
4 answers

Trouble polling an ultrasonic sensor's pulse width using .net micro fw

I am following one of many examples of interfacing C# and .net micro framework with a Parallax Ping sensor. Parallax http://learn.parallax.com/KickStart/28015 Tutorial 1 https://www.ghielectronics.com/community/codeshare/entry/123 Tutorial…
Adrian
  • 3,332
  • 5
  • 34
  • 52
4
votes
0 answers

Problems with Visual Studio 2013 debugger - The debugging target and the debugger engine failed to initialize because of unspecified device errors

I am a hobbyist-programmer and build a few nice working solutions on NetDuino Plus 2 in C#. Recently I acquired the new Netduino 3 Ethernet. My problem is that the debugger does not work. When I load my C# application I get an error message: The…
Arno
  • 41
  • 2
3
votes
2 answers

SerialPort access denied after a while

I have a FEZ Board (I don't think this matters) and I'm communicating with it through a serial port. I made a WPF application, where I open the COM port and write data over it. This all works great, but after sending data a random amount of times…
3
votes
3 answers

Netduino or Gadgeteer running IIS and ASP.NET MVC

Is it possible to deploy ASP.NET MVC3 applications onto either a Netduino or .NetGadgeteer? If so how would I go about such a thing? What I want to do is have a Netduino, connected to a wifi router, that will host an MVC web app.
Anish Patel
  • 4,332
  • 1
  • 30
  • 45
3
votes
4 answers

CInt not working as expected in .Net MF

I've got something pretty noddy to cross-fade the colour of an RGB led and I'm having problems getting the desired values. I've stripped this example down to a bare minimum but Start, End and Steps will all be variable... This should linearly…
Basic
  • 26,321
  • 24
  • 115
  • 201
3
votes
2 answers

Netduino plus, SD Card cannot get basic example working

Hi I want to try my SD card on de the netduino plus. I downloaded the SDK from this website yesterday. I could not find documentation so I figured out the following code. However it gives "CLR_E_VOLUME_NOT_FOUND".. What do I do wrong ? I read…
Julian de Wit
  • 3,084
  • 2
  • 29
  • 29
3
votes
1 answer

Is there any possibility to use Regex in .NET microframework 4.1?

I am using netduino and Quectel GSM module and I would like to parse with regex recieved sms. Does anybody knows something about this?
3
votes
2 answers

Does not contain definition for ASCII

So I'm trying to use a bluetooth module (HC-06) to read data sent to my Netduino board from my cell phone. However, I cant get the bytes converted into text so I can compare the characters I send and thus turn them into conditional statements. From…
Justin Gardner
  • 605
  • 2
  • 9
  • 17
3
votes
2 answers

abort a thread or just let it to be cleaned by the computer?

I have the following code, I want to abort a thread if it is unfinished in 2 secs. You can see from the first code that i create a new myThread evertyime in the while loop and do not abort it. Well, I dont want to it to be like this, but if i take…
henryyao
  • 1,758
  • 6
  • 23
  • 37
1
2 3 4 5