Unanswered Questions
407 questions with no upvoted or accepted answers
5
votes
0
answers
903
views
Internet in ESP32 is not working with IPv6
I am using ESP-WROOM-32D in STA mode with Arduino IDE(2.0.5) ESP32 board(2.0.9).
I am trying to do http post request with ESP32. Router that provides internet supports only IPv6.
Here I am getting ...
4
votes
0
answers
140
views
Arduino IDE v 2.2.1 log file not limited in size (on Ubuntu 23.04)
I was learning/building with a new Arduino Nano ESP32 yesterday and left the Arduino IDE running overnight on Ubuntu 23.04 and it used all the space on my hard drive to write log files which broke my ...
4
votes
0
answers
2k
views
Is there a way to use ESP8266 in promiscuous(monitor) mode and see the the wifi packets?
I didn't find much documentation about ESP promiscuous mode (just from the espressif sdk although I'm using ArduinoIDE https://docs.espressif.com/projects/esp8266-rtos-sdk/en/latest/api-reference/wifi/...
4
votes
2
answers
137
views
Turn ESP8266 into an Arduino IDE-like "sketch uploader" (over hardware serial)
I have an ESP8266 module which has downloaded a hex file for an Arduino Mega2560. This hex file (call it mega2560.hex) is sitting in the ESP's SPIFFS file system. What I want to do is basically ...
3
votes
0
answers
1k
views
How to use C++20 in Arduino IDE?
I'm writing a program for esp32 using the Arduino IDE that needs to count the number of '1' bits in a byte.
I found a post elsewhere that says there's a nice function in the standard library to do it: ...
3
votes
2
answers
381
views
Is is possible to install a bootloader to an Arduino clone without a physical programmer?
I got an Arduino UNO clone, connected it to my PC via USB. I can't upload any sketches.
Correct board and port are selected in the IDE.
Windows recognizes it as a device, even though it has a CH340 (...
3
votes
0
answers
782
views
How can I connect my ESP32-WROOM-32 to Arduino IDE?
I'm using this 'ESP32-WROOM-32' but I can't find the correct board in the IDE. I see the esp32-wroom-DA (edit, i took it to the store where i bought it and it worked fine with theirs. they were on ...
3
votes
0
answers
5k
views
String.format("%i",i) equivalent
How do I format an arduino String when I do not want to print it?
I know that one can use printf() or other methods to print a formated string and unfortunately that's all I find with google.
But that'...
3
votes
0
answers
1k
views
TRIAC Pulse driver for Spot Welder (help needed with programming)
I have designed and built a transformer driver board for my spot welder. It is powered from mains electricity (230 V) and consists of the following segments: triac drive and protection, zero cross ...
3
votes
0
answers
957
views
Using CLion as Arduino IDE — Cannot find Libraries
I'm having a problem using CLion as Arduino IDE when integrating 3rd-party libraries:
Here is the CMakeList.txt
cmake_minimum_required(VERSION 2.8.4)
set(CMAKE_TOOLCHAIN_FILE ${CMAKE_SOURCE_DIR}/...
3
votes
0
answers
214
views
Atmel SAM MCU (on Arduino Due) only boots after second power up
I am using an Arduino Due as a prototyping board for a microcontroller project. The due has the chip Atmel ATSAM3X8E, with an ARM Cortex-M3 core. I am programming the flash directly using Atmel Studio ...
3
votes
0
answers
328
views
Arduino IDE programs Leonardo but cannot open serial terminal
I'm using Arduino: 1.6.7 (Mac OS X 10.11.3), Board: "Arduino Leonardo".
When I try to program my code, it works without problems.
When I want to open the built-in Serial Monitor or Serial Plotter, ...
3
votes
0
answers
2k
views
Using USB on a Leonardo to receive data from PC
I am new to the Leonardo, having only used a duemilanove before, and I am interested in using it's USB capabilities for a project.
Basically I need it to be an input and output device, communicating ...
3
votes
0
answers
195
views
9v adapter burned out Leonardo style board
My first experience with Arduino ended in a tragedy. I bought a Leonardo from ebay and upon arrival, attached it to my laptop. Programmed a simple blink demo with the onboard LED. It started working. ...
3
votes
0
answers
4k
views
Using Leonardo and getting absolute x,y Mouse values
Trying to modify the native mouse methods so that it can use absolute, rather than the relative values it currently uses. This is so it can function as a touch screen pointer, and NOT a mouse.
Am ...