How to compile Arduino in Visual Studio?

I am using Visual Studio to create a small Arduino sketch . I want to upload a sketch to my Arduino Uno . How to compile and load into Uno using Visual Studio?

+4
source share
2 answers

You will need to install the Arduino plugin (called Visual Micro ).

Their getting started guide says the build option will compile and load the code into Arduino.

See also this link .

+5
source

Bash is right. If you have Visual Micro installed, just press F5 or click on any of the usual Visual Studio Start / Start Debugging menus or toolbar commands,

A small green arrow on the toolbar pointing to the right will also work.

+2
source

Source: https://habr.com/ru/post/1433141/


All Articles