Skip to main content
1 vote
2 answers
95 views

I'm trying to make 3 LEDs (a red, a green, and a blue) flash simultaneously. The blue one should flash slowly, the green one should go quicker, and the red should be fastest. I tried putting multiple ...
StriderRobotics's user avatar
1 vote
1 answer
166 views

I’m working on an Arduino Morse code decoder that interprets durations (positive/negative for tone on/off) into dots, dashes, and spaces. I add random noise to simulate real-world signal variance, but ...
Alfredoe's user avatar
Advice
0 votes
2 replies
119 views

I'm trying to build my own handheld games console similar to a Game Boy. Currently for the POC I’m using the Arduino Uno, separate SD card reader module and 2.4 inch TFT Display. I want to put the ...
user15155666's user avatar
1 vote
1 answer
142 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
0 answers
108 views

I'm trying to connect an ESP32 (as Bluetooth master) to an Arduino Uno that has an HC-05 Bluetooth module attached. My goal is to send serial data between the ESP32 and the Uno. Setup: Arduino Uno ...
Osama Tharwat's user avatar
0 votes
0 answers
68 views

I am very new to embedded programming and I2C protocol. I would like to develop a command "CMD_READ_V" which will eventually read an analog voltage from the MSP430 A0 and report it back to ...
Cameron Cohen's user avatar
1 vote
2 answers
79 views

With an Arduino Nano ATmega328P (Arduino IDE 1.8), the following C++ code (with 8bit operands): volatile uint8_t un8 = 123; volatile uint8_t res8; res8 = un8 >> 1; generates a 16bit shift ...
brewmanz's user avatar
  • 1,230
1 vote
2 answers
153 views

I am working on a personal project that consists of synchronizing my addressable ws2811 light strip to Spotify. There is no real-time audio analysis. My python program reads a JSON file, and based on ...
Edouard Marsolais's user avatar
0 votes
0 answers
124 views

I am using an Arduino Uno with a SEEED CAN-bus shield and a 4x20 LCD with the Adafruit I2C backpack. I'm trying to make the Uno recieve several different messages via CAN, then display the data it ...
mysteryflavor133's user avatar
1 vote
1 answer
118 views

I need to use data collected from a sensor connected to an arduino Uno in a Python code. It's a basic question of getting the state of the digitalPin to my Python code. I first wanted to try my hand ...
Tsuyo's user avatar
  • 29
0 votes
1 answer
127 views

I using Arduino UNO with HC06 This is my code include <SoftwareSerial.h> SoftwareSerial BTSerial(10, 11); void setup() { Serial.begin(9600); BTSerial.begin(9600); } void loop() { if (...
CYC's user avatar
  • 39
0 votes
2 answers
61 views

The code can be found in Checking INTF0 Without ISR The code works as expected when the main() function is present but it does not when main() function is left out of the code. I do not want to use ...
santosgcot's user avatar
0 votes
1 answer
34 views

I try to write a Temperature Logging station using a RTC 1307 and timestamping my measurements. The issue is at the beginning, creating the filename: #include <dht_nonblocking.h> #define ...
mr_harm's user avatar
  • 61
1 vote
0 answers
77 views

The end goal is simple: use one arduino + nRF24L01 setup to remotely turn on an LED on another arduino + nRF24L01 setup. I'm stuck on the the transmitter side. The transmission keeps failing and I'm ...
Mike 's user avatar
  • 11
0 votes
0 answers
39 views

I seem to have an issue where, when I send 33 bits out through 5 shift registers to LEDs (only using one output on the final register) it loops through array entries 1-15 just fine, but then flashes ...
Peter Sikkens's user avatar

15 30 50 per page
1
2 3 4 5
147