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
7
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,118
  • 1
  • 20
  • 49
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
  • 894
  • 1
  • 13
  • 21
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

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
  • 161
  • 1
  • 8
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

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
  • 43
  • 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
vote
1 answer

Error messages while verifying code with Visual Studio Code

I move recently to use Visual Studio Code to develop for arduino. But I'm receiving some error messages while I'm trying to verify my code that confuse me. The messages are: 2020-04-12T13:53:40.409Z INFO c.a.u.n.HttpConnectionManager:148…
1
vote
2 answers

Upload application from Visual Studio 2019 with PlatformIO

How upload application from Visual Studio? I can’t find upload process from standard VS in documentation https://docs.platformio.org/en/latest/ide/visualstudio.html I hate VS Code.
Abedron
  • 141
  • 5
1
2 3