Questions tagged [visualstudio]

Visual Studio is an integrated development environment (IDE) from Microsoft.

Microsoft Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs for Microsoft Windows, as well as web sites, web applications and web services. Visual Studio uses Microsoft software development platforms such as Windows API, Windows Forms, Windows Presentation Foundation, Windows Store and Microsoft Silverlight. It can produce both native code and managed code.

37 questions
8
votes
4 answers

Can I use Visual Studio instead of Arduino IDE?

I think that Visual Studio is a great product! I find the Arduino IDE is limited in its features. For example the Arduino IDE does not have: Code prediction Error highlighting Previews of #define values Peek at code definition Jump to code…
sa_leinad
  • 3,218
  • 2
  • 23
  • 51
5
votes
2 answers

Can I switch from Arduino IDE to Atmel studio or Visual Micro but still use Arduino library?

If switch from Arduino IDE to Atmel studio or Visual Micro, how to use existing Arduino library? Library serves important function of 'packaging' real and complex hardware (like NRF24L01 radio board) into functions of 'relatively standard format',…
EEd
  • 904
  • 1
  • 14
  • 21
3
votes
2 answers

Using Serial Plotter with Visual Studio Code

I'm using the Visual Studio Code extension to develop for Arduino which works great. It doesn't have a Serial Plotter like the regular Arduino IDE, which I need to debug this project. I can run the Arduino IDE's Serial Plotter alongside Visual…
Joel Spolsky
  • 171
  • 1
  • 8
3
votes
1 answer

Project structure to build for PC and Arduino

Recently I have started developing for Arduino Uno. I have 10 years experience in software development (C#, Delphi), but not much with C/C++. Compiling the Arduino sketches seems a little slow, and debugging isn't as convenient as it could be on a…
morcibacsi
  • 33
  • 2
3
votes
2 answers

Visual Studio integration with Arduino

I use Visual Studio 2015 extensively for work, so it would seem like a logical choice for getting started with Arduino programming (though my C/C++ is rusty, that may take some time to get back). From what I understand the Visual Micro Plugin is…
snappymcsnap
  • 131
  • 1
2
votes
0 answers

Problem in Uploading through Visual Studio

This is my simple program: int led = 13; void setup() { pinMode(led, OUTPUT); /* add setup code here */ } void loop() { digitalWrite(led, HIGH); delay(1000); digitalWrite(led, LOW); delay(1000); /* add main program code…
2
votes
1 answer

See compiled assembly output (Visual Micro)

I'm curious about what some of my code is being compiled into, is there a way to have the compiler save the intermediate assembly files, ideally somewhere in the project folder? I read some forum posts about holding down shift when compiling from…
Bob
  • 185
  • 7
2
votes
0 answers

Arduino IDE Visual Studio and compile problems blank project .ino hack

I'm new to Arduino and have little programming experience apart from my computer science degree. I used C++ for some projects in my degree but am barely proficient. My first project is relatively complex process control for an Arduino beginner and…
2
votes
0 answers

Arduino Uno - Firmata/Serial Communication in Visual Studio C++

I need to pass std::vector values from a C++ console program (written in Visual Studio 2015) running on a PC to Arduino in real-time using USB serial communication. Can anyone of you give any advice on how to implement Firmata or something…
PRS_
  • 21
  • 3
1
vote
0 answers

How can I get the serial monitor in vs code to automatically connect and disconnect when uploading to my arduino?

I am using an Arudino Nano with VS Code and PlatformIO. When developing. I want to streamline the process so that when I press 1 hotkey. It will automatically disconnect the Serial Monitor. Build. Upload. Then reconnect the Serial Monitor. I can…
John
  • 123
  • 4
1
vote
0 answers

Adding RTC Library for Arduino Project in Visual Studio

I am working in an Arduino project in visual studio. I need to get and set time to a RTC clock. That's why I am adding a ds3231 header file in my project from GitHub. When I want to build "it's showing me linking error. cccSeqVu.ltrans0.o*:…
Iqbal Hossain
  • 41
  • 1
  • 5
1
vote
0 answers

My arduino gives me several avrdude erros

For school we program an arduino with visual studio and micro visio. Since a few days ago my arduino wont run the code of the arduino. At first it didnt give any errors until i tried to upload a code with arduino ide itself. avrdude: ser_open():…
geekpeek
  • 11
  • 1
1
vote
0 answers

Having trouble compiling in VsCode when including arduino libraries. (Win10)

I recently switched over to Visual studio code and away from the arduino IDE though I am a novice at both. When using VSC and the neopixel library and sample code(strandtest) containing animations such as color wipe, I run into declaration errors. I…
mattr
  • 11
  • 1
1
vote
0 answers

Computer freezes while collecting serial data from Arduino Uno

I am an arduino noob. I have been searching for some interesting arduino projects recently and making a game controller using Arduino UNO seemed interesting. So I hooked up two dual-axis joystick modules to the arduino board and wrote a program to…
Mukesh M
  • 11
  • 1
1
vote
0 answers

How do I set up bluetooth to wirelessly control servo's connected to an arduino from my PC?

I have been working on a project that includes two servos, one is on X axis the other is Y, the Arduino takes my cursor's X,Y coordinates over a Visual C# program and translates them through the Arduino and to the two servos in order to effectively…
1
2 3