Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 547
Sponge Bob Avatar asked Apr 09 '13 19:04

Sponge Bob


1 Answers

With enough time, most certainly. You will probably run into problems when your Arduino C/C++ project uses AVR-specific hacks and options like timers and interrupts. From my understanding you can do these more advanced things on the Netduino but there is a significantly different way you'll have to go about coding it.

In order to effectively port the code you'll need a good understanding of C, a strong understanding of C#, as well as the Arduino and Netduino build process, coding conventions, APIs, etc.

like image 141
Kevin Mark Avatar answered Sep 28 '22 01:09

Kevin Mark