Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
0 answers
45 views

The title (mostly) explains the question. Simply put, I'm trying to run multiple HK16K33 4digit 7 segment displays, with different outputs, on one Arduino. Some searching gives me the library ...
Beans's user avatar
  • 1
1 vote
0 answers
79 views

I'm not good at English, so I used a translator. Please understand that we cannot show all the code. Currently, I am trying to open AP mode in ESP32 and send HTML information to the connected person. ...
조민석's user avatar
4 votes
1 answer
53 views

I'm a beginner in programming and looking for a solution for a windows user- interface to change parameters on a arduino board. The whole target is a control unit for camera, flash and valves to make ...
Martin Forster's user avatar
1 vote
2 answers
99 views

I'm working on an Arduino project in pure C with multiple buttons. Each button has a different action associated with it, and I want to handle button presses using interrupts. Currently, the typical ...
Cufa Niello's user avatar
-1 votes
0 answers
39 views

I am building an IoT system to measure the distance from two individual points by using two HC-SR04 ultrasonic sensors and two 16x2 I²C LCD displays to show each sensor’s reading separately. Sensor 1 ...
Sanniddha's user avatar
-1 votes
0 answers
43 views

There is a builin function / method for the IPADDRESS class, .toString() which works fine on output via Serial.println However it does not seem to covert it actually completely when storing it in a ...
Mike Collins's user avatar
2 votes
1 answer
143 views

The ESP32 cant find the NFC module (Pn532). I used the I2C and SPI without any promising results. I used the Example code and edited the Pins Every time I only Get this result: Serial.print("Didn'...
Moritz Ende's user avatar
0 votes
1 answer
20 views

If anybody is conform with SIM800L, I've got a working design regarding sending data through TCV via SIM800L, building up the network is ok. What is working: AT+CIPSTART waiting about 2 sec AT+CIPSEND=...
Erkman's user avatar
  • 1
1 vote
0 answers
87 views

I decided to program a PWM using an ARDUINO UNO R4 WIFI. I tried to configure the RENESAS RA4M1 microcontroller with the FSP libraries through the Arduino IDE. What I want to do is generate a PWM and ...
Victor Prosper's user avatar
0 votes
1 answer
75 views

For a project I have to fulfill the following conditions: Setup interrupts on the ARM Cortex MCU using CMSIS APIs a) Show how to initialise global interrupts on the ARM Cortex for GPIO pins and ...
Daiyan Khan's user avatar
2 votes
1 answer
120 views

I'm currently developing a project with Arduino Nano BLE 33 rev2 (an MCU equipped with Bluetooth, accelerometer, gryoscope and magnetometer) and Python to get the yaw (XY plane degree) and pitch (XZ ...
Edoardo Fiorini's user avatar
1 vote
1 answer
102 views

I’m building an analog clock on an ESP32 Wrover Kit with a TFT LCD using the TFT_eSPI library. The clock displays the correct time using NTP, but I have a problem with the hands: When the hands move, ...
nima's user avatar
  • 13
2 votes
0 answers
87 views

I am using an ESP32-C3 Dev Module on Windows 11 with Arduino IDE (ESP32 package 3.3.0). Minimal sketches, such as the following, immediately trigger a watchdog reset during startup: void setup() { ...
Luis Silva's user avatar
2 votes
1 answer
121 views

I want my LED to have three states with push button on blinking off But the second state didn't blink, it is only off-->on. Here's the code: #define btn 7 #define led 8 int button; int a; void ...
Bimo Anggoro's user avatar
0 votes
0 answers
50 views

I'm working on a 6-DOF robotic arm project, but the inverse kinematics (IK) code in my `control.ino` file doesn't work as expected for controlling the arm in the 3D x-y-z plane. The code is designed ...
Nguyen Chau Tan Cuong's user avatar
0 votes
0 answers
63 views

I am using the Arduino IDE for uploading and compiling code for these microcontrollers. These two sketches should send a serial monitor input from the user of the master to the slave and then the same ...
SpieleTyp's user avatar
2 votes
1 answer
98 views

When I've developed for the ESP32, I've always included the linker attribute IRAM_ATTR when I've declared functions called from interrupts. This is based on https://docs.espressif.com/projects/esp-idf/...
axlan's user avatar
  • 1,013
0 votes
0 answers
97 views

I'm making a software latch with following features: ATtiny85 @ 1 MHz, BOD disabled PB0 = LED, PB3 = Button (with internal pull-up) Interrupt on change Deep sleep until button press Change state with ...
tubos's user avatar
  • 99
2 votes
1 answer
66 views

I'm running into a problem converting raw rgb565 into rgb888. I'm getting psychedelic looking images: I followed the advice from this forum post, but I have not been able to fix the problem. Has ...
Jan van der Kuyl's user avatar
2 votes
1 answer
110 views

I am trying to write a class to help me interface a Bluetooth module with an ESP32 over serial, but I am having trouble. Sometimes, the Bluetooth module sends events without being prompted, so I'm ...
Luke's user avatar
  • 33
7 votes
1 answer
80 views

I want to wake up the ESP when it receives a message on the UART2 port. However, with the following code it never wakes up, even if a message is received. I am using the Lolin 32 Lite Devboard. #...
Tillmann's user avatar
  • 133
1 vote
2 answers
170 views

I have an Arduino Uno (atmega328p) and this sketch which sends data every 100ms #include <SoftwareSerial.h> const int BT_RX_PIN = 15; // SoftwareSerial RX const int BT_TX_PIN = 17; // ...
IOviSpot's user avatar
  • 348
0 votes
1 answer
90 views

I have an embedded systems course in my university and i have a weird question that i don't know the answer to the question gives us the code (i may have a syntax error but the logic is correct) void ...
zeyad daowd's user avatar
-2 votes
1 answer
124 views

I am using Arduino C++11 I want to create and execute a dynamically function pointer list from different instantiated class members. A function holding the dynamic list of funtion pointerns is called ...
jebmdk's user avatar
  • 1
0 votes
1 answer
40 views

I'm working on a project involving two Arduino boards communicating over SPI — one configured as master, the other as slave. The master sends a byte (0xA5) every 500ms, and the slave is supposed to ...
Althey they's user avatar

1
2 3 4 5
390