I am enjoying programming in Visual Studio 2012 Express with the C# language, and have purchased an Arduino Uno.
I have read a couple of tutorials on how to get Visual Studio to work the Uno directly, but ones like this article have lines in it such as:
serialPort1.PortName = "COM4"
serialPort1.BaudRate = 9600;
When I am putting them into my test application, I am using the System.IO.Ports; but the serialPort1 does not recognise. Even when I make it a String value, then the PortName and BaudRate come up in the red.
Has anyone got a clear and detailed tutorial I can follow to get my "blink" test working on the board, or know how to fix the above please?