70 questions
-1 votes
1 answer
117 views
Pulse sensor coding for Netduino Plus 2 gone wrong
I'm currently doing a project on Netduino Plus 2 using .net micro framework which requires me to code for a pulse sensor. I have tried finding codes for pulse sensor but to no avail. I tried using ...
4 votes
0 answers
270 views
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 ...
1 vote
1 answer
936 views
i2c read data from sensor with Netduino
I start learning Netduino short time ago. At now, I want to use it with MS5803 30BAR sensor. This Components communicate with I2C Protocol. I learned this protocol a little bit but not enough. I ...
0 votes
1 answer
430 views
Bricked Netduino 3 WIFI & Netduino Plus 2
I hope someone here can help me. I've managed to brick two Netduinos today. It happens when I run the following code: http://pastebin.com/DjUbM3hN I found the code example here and from what people ...
1 vote
1 answer
308 views
Netduino InterruptPort Inconsistency
Im writing a Netduino 3 program that will control turn lights and other relays for hayrides. My program was written before I got the device, so Im not sure how well it will work, but Im already having ...
2 votes
1 answer
295 views
Using .NET Micro Framework, Why does my Regular Expression match fail?
I'm developing a little network command interpreter for .net Micro Framework 4.3 running on a Netduino. I use a regular expression to parse user input that arrives from the network via a stream socket....
2 votes
1 answer
277 views
How to MFDeploy a configuration file
Colleagues and users testing various features in a program use MFDeploy to install for example "MyApp.exe" onto their Netduino +2. This method works great. Is there a way to also MFDeploy a "MyApp....
1 vote
0 answers
169 views
Erroneous i2c response from LSM303D to Netduino Plus
I have this module on a breadboard: https://www.pololu.com/product/2127 +3V3 into Vdd, GND to Netduino GND, SDA to Netduino pin A4 and SCL to Netduino pin A5. I'm attempting to use the NETMF i2c ...
1 vote
1 answer
1k views
How to properly change a static IP address using the Microframework?
I have my Netduino Plus 2 go out to a web service to look up some values that I would like it to use in my project. One of the values that I have the Netduino check is its preferred IP address. If ...
3 votes
1 answer
113 views
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?
1 vote
1 answer
466 views
Using C# and Netduino to log data
I am developing a telemetry platform for a nano-printing project. My team is using a Netduino 2 plus (not my first choice, but what are you going to do?) I am not at all familiar with C# and am a ...
-2 votes
1 answer
1k views
C# How to extract multiple smaller byte[] from 1 bigger byte[]?
This question is related to: C# How to extract bytes from byte array? With known starting byte I have "100 bytes byte[]", that is composed with several "14 bytes byte[]" that occur in the bigger ...
0 votes
1 answer
280 views
How can I get HttpWebRequest to work with Netduino? It is giving me System.NotSupportedException
I'm trying to send an http POST request from my netduino, I've been on the netduino forum and there is conflicting reports of this being able to work, the exception occurs on the first line ...
0 votes
2 answers
2k views
How do I properly post data using the HttpWebRequest in C#
I am using the HttpWebRequest method in the .Net Micro Framework. I am trying to post data to a another server using the method below. I am getting the following : Exception: "System.Net....
1 vote
1 answer
102 views
Why do I have to execute my button function twice in order for my logic to work properly?
I'm writing a simple alarm program that uses a PIR motion sensor that detects an intrusion. My expected logic is trying to make toggle button for my sensor to be turn on or off. By default the ...