Using the .net framework with the arduino

Can the arduino be controlled by using the .net framework? If so, what lines of code would be needed in the sketch for it to recognize the .net framework.

What exactly do you want to do? Do youn want to install .NET on the Arduino, or do you want to connect from a desktop application to an arduino.
The first thing will propably not work, the second should be.

bertkollath:
Can the arduino be controlled by using the .net framework? If so, what lines of code would be needed in the sketch for it to recognize the .net framework.

U can control Arduino using vb or c# application via serialport...........

You can write a windows program using .NET to interact with the Arduino. If you want to use the .NET framework on a microcontroller, you should have a look at the .netduino, it is programmed in C#.

You can not directly program an Arduino in C# or VB.NET, but you can link a .NET program with an Arduino throw the serial port.
To make it easy, you can use a dedicated library such as

1 Like