Questions tagged [ide]
Integrated Development Environment - software that allows you to write and compile code. Use the arduino-ide tag for questions about the official Arduino software.
134 questions
0
votes
1
answer
80
views
When I try to debug using Arduino IDE for stm32 using stm32duino nucleo F767ZI throws error
I am trying to debug using Arduino IDE through STM32Duino for my STM32 Nucleo-144 F767ZI. The code is uploaded successfully, but upon pressing debug, I get this error.
Waiting for gdb server to start....
2
votes
0
answers
38
views
Unnecessary recompille after connection error
I sometimes multitask during a large compile (wifi, etc libraries) and don't get back in time to press the ESP32 upload button. If the connection times out, the IDE recompiles all the source again. ...
0
votes
2
answers
777
views
Arduino IDE Failing to Compile Any Sketches
OS: Windows 11
Arduino IDE Version: 2.3.2
I recently opened up my Arduino IDE to find that nothing--absolutely nothing--would compile. Whenever I tried, I got the following error message:
Using board '...
1
vote
0
answers
177
views
FTDI with STM32 [closed]
I'm using the Arduino IDE to program my STM32 using an ST-Link. Everything works fine, but I can't receive any data from the STM32 in the Serial Monitor. So, I decided to use an FTDI232 for serial ...
2
votes
1
answer
4k
views
Impossible to install the esp_camera library
I cannot install the esp_camera library. When I try to add the .zip, I get "does not contain a valid library.
Everything about this ESP-32 Cam seems to rely on that library, and I can't find a ...
2
votes
1
answer
482
views
Arduino IDE Auto Format Error
Whenever I try to format a sketch in the IDE (1.8.19) I get this output in the terminal:
Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: 'java.lang.String cc.arduino....
2
votes
1
answer
512
views
Arduino code working via IDE, not via PlatformIO Arduino code [closed]
I have a working Arduino code. The code works as intended when I upload it to an Arduino Nano using the old bootloader via the Arduino IDE. However, when I upload the same code via PlatformIO, the ...
1
vote
1
answer
363
views
Arduino Output Panel Font Color Change
I am using Arduino IDE 2.0.3. When compiling code if there is an error it shows on a black background with a red font, that is hard for me to read. Can I change either the background or the font? ...
0
votes
1
answer
445
views
Program Arduino using Eclipse on Mac in 2022
I started experimenting with Arduino a few weeks ago. My host is Mac OS and I have used Eclipse for many years, so my first choice is to use an Eclipse plugin. The most recent discussion of the ...
1
vote
3
answers
881
views
Is there a way to strip a library from all unused parts and defines, automatically?
Say you want to investigate part of the code you use from a rather large library, but it's buried between all kinds of #defines and classes etc, that you're never gonna use in your code.
Is there a ...
1
vote
1
answer
814
views
Permission denied on upload w/ IDE 2
Dealing with this very common issue on IDE v2.0.0., but not sure why.
I should be fine group-wise:
adm tty dialout cdrom sudo dip plugdev lpadmin lxd sambashare docker
I've also seen numerous ...
1
vote
1
answer
534
views
Provide custom AVR dude commands through the Arduino IDE
Besides the standard upload button that burns the code using FTDI, I want to then be able to provide custom AVRDude commands for burning fuses, when the external programmer is used.
Is this possible ...
0
votes
1
answer
200
views
boards.txt - how to create sub-menu (NOT new board!!!)
Arduino 1.8.19
Is it possible to create a sub-menu inside boards.txt that would allow having the boards grouped for example by the manufacturer?
If it is possible, please provide an example or at ...
1
vote
1
answer
151
views
Using a Microchip Fubarino with the Arduino IDE, how to acces and configure all pins
I recently got a Microchip Fubarino, contains a PIC32MX250F128D and I'm totally new to the Arduino IDE, i uploaded the blink sketch all fine and well.
Schematic: FubarinoMini_v15_sch
// the setup ...
1
vote
1
answer
919
views
Add library to CLion project
I have a new project created with PlatformIO in CLion. I've copied the Servo-1.1.8 library into the include directory.
#include <Arduino.h>
#include "Servo-1.1.8/src/Servo.h"
Servo ...