How to get the best out of this forum

See also FAQ - Arduino Forum for general rules on forum behavior and etiquette.

Hello,

Welcome to the Arduino Forum.
This guide explains how to get the best out of this forum. Please read and follow the instructions below.

Being new here you might think this is having rules for the sake of rules, but that is not the case. If you don’t follow the guidelines all that happens is there is a long exchange of posts while we try to get you to tell us what we need in order to help you, which is frustrating for you and frustrating for us.

The people who try to help with your project are volunteers doing this for free in their spare time. If you follow these guidelines it helps us to help you and gets your project working quickly.

Without the correct information, it is difficult or impossible to give you the help you need.

Preferred language
If English is not your preferred language there are categories in other languages

Essentials

Below are some things we need which are often missed by people posting for the first time

Choose the right category of the Forum

There are lots of different categories to choose from. Choosing the right one is important because not everyone who might be able to help you reads every category. Some questions might reasonably fit in to more than one category but please do not post the same question in two or more different categories. Also, if you have more than one question but the questions are all about the same project then it is usually preferable to keep the questions in one topic. Keeping them together helps get better answers as the answer to one provides the context for the next. Creating the same question multiple times or creating lots of different questions about the same project is against the forum rules and will incur the wrath of the moderators when they see it.

Hardware

We need to know exactly what hardware you have. We need to know what Arduino board (or other brand, such as ESP32) you are using and exactly what other hardware you are connecting it to. The more details we have, the easier it is to help.

If you are using something that is a non-Arduino product then it helps to have a link to its technical data sheet or a link to where you bought it.

Code problems

We can only find problems in code we can see. Please supply your complete code in code tags <CODE/> More about posting code and using code tags. If you are using Arduino Cloud then you can post a link to your project (but keep in mind that not everyone uses Arduino Cloud).

Posting a snippet of code is generally useless. The problem is usually in another part of the program.

Before posting code, please use Tools / Auto Format at the top of the IDE. It makes the code much easier to read and you will probably find it very helpful yourself. Once you've done that, use Edit / Copy for Forum.

Always use code tags (<CODE/>) when posting code or compiler error messages.
Using code tags makes the code easier to read and easy to copy. Not using code tags means some of the code gets displayed with smiley faces and other stuff that should not be there. Be aware that there is a limit of 120000 characters for a post. If your code takes you above this limit then you can add your .ino file as an attachment. However, it will be much easier to help you if you can write a short program that illustrates the problem you are having and post that.

Please don't post an image of code instead of the code itself, or an image of error messages instead of the error messages themselves.

It is very important to be clear about what is expected from code and what happens instead. Code ALWAYS works; that is the nature of code. Whether it does what you expect is a different thing altogether. We need to know what you expected the code to do and what happened instead.
More about posting code and common code problems.

Schematics or circuit diagrams

The language of electronics is a schematic or circuit diagram. Long descriptions of what is connected to what are generally useless. A schematic is a drawing of what connects to what; please make one and photograph it. We don't mind if it's hand drawn, scruffy and does not use the correct symbols, but please make sure it is accurately and completely labelled.

If you want to use computer software to create a schematic, then you might like to try Circuit Diagram or KiCad, although any software capable of creating a schematic will be fine.
More about creating a schematic of your project including how to upload an image.

General

Please try to avoid posting links to other sites where code or photos or schematics are hosted. Most of us will not follow such links, partly due to the risk that they hold malware or other unwanted content, partly to maintain everything on this site for the benefit of future users looking for an answer to a similar question, and partly because we feel that if you want our help you should provide everything we need on this site not expect us to go hunting elsewhere for it.

Research

Please do some research before posting. Most beginner problems have already been dealt with on the Forum so please use the forum search tool and the Arduino Help Center to try and find an answer to your question. You can also use your favorite search engine to find answers.

Be specific

Please ask a specific question about the problem you are having so we can provide a clear, specific answer.

If you don't understand some of the advice that you get, please say so. Then we can explain in more detail. If you want to know more about how to ask a question that is likely to get a really helpful answer, then have a read of this, admittedly rather long, tutorial How To Ask Questions The Smart Way and use the principles explained there to ask a really effective question here.

AI generated content

Artificial intelligence (AI) services such as ChatGPT are able to generate Arduino project code and answers for Arduino-related questions. As with other non-authoritative sources of information found on the Internet, this should be used with caution.

Questions about information provided by an AI

If you would like to ask for assistance with AI-generated code or information here on the forum, please clearly identify the source.

Using AI-generated content to provide assistance

When providing assistance, copy/pasting content without giving any thought to the information is irresponsible, regardless of the source of that information.

Please carefully evaluate AI-generated content for accuracy, relevance, and appropriateness within the context before using it to provide assistance. If you are not able to make such an evaluation, then please don't share the content here on the forum.

About us

Those of us answering questions have a wide variety of backgrounds and electronics knowledge, some through working in electronics or computing, some through electronics or computing as a hobby, some both. Most of us are not trained as teachers so probably miss the finer points of how to teach and explain things effectively. We are not, with the odd exception, employees or representatives of Arduino.
Please also remember we are volunteers doing this for free in our spare time and are more inclined to help people who make it easy for us to provide help by providing the information we ask for.

About you

We only know about you and your project what you tell us. If you tell us your level of experience with electronics or microcontrollers, we can tailor our answer to your level of knowledge. We also don't know if you have problems with English or language or communication in general unless you tell us. We can be sympathetic about things we know about, but if you don't tell us we don't know.

More information

There is more information below.

Making your first post

Now please go to the forum index, select the right category and make your first post.

Thank you.


Making your first post

1. Choose the right category

It is important to choose the right category and the right language so that the people most likely to be able to help you will see your question. Not everyone here reads questions in every category so please take your time and post in a category related to your question.

If English is not your preferred language then scroll down and choose from one of the other language categories.

Please only post in English in the English language categories. If your language is not shown then please use Google Translate and post in an English language category using English.

Forum categories

2. Make a topic

Once you have found the right category you can start your post. Click on New Topic

3. Write your post

Enter a title and a description of your problem:

Don't forget to include code in code tags <CODE/> and a schematic of your circuit.

For your first two posts, the right hand side of the post composer pane will show a welcome message. Once you have closed that message, you will see a preview of how your post will look once you have submitted it.

4. Publish your topic

When you are happy with your post click on + Create Topic to post it.

That's your first post completed.


Posting code and common code problems

Post all your code

Without your code, all your code, we cannot provide any answers about your code, other than the most vague and probably unhelpful of answers. One of the frustrating things about writing code is that a mistake in one place can produce an error in what seems like a completely different, unrelated place. This is a nightmare if you are new to writing code, but often easy to spot for anyone who is experienced in looking for such problems. It is for this reason we want all your code, not just the bit with the error or the bit you think is causing the problem.

Format your code

Before copying your code for the forum, look in Tools on the menu bar of the Arduino IDE and select Auto Format. This will format the code correctly. If you prefer, Ctrl+T will do the same thing. Once formatted, you can copy and paste your code with code tags.

Use code tags

Code should be be in code tags, these are the <CODE/> in the tool bar above where you edit your post, and correctly formatted, like this:

char message[][4] = { "hi", "bye" };

void setup() {
  //Serial.begin() configures the serial port
  Serial.begin(9600);
}

void loop() {
  for (byte x = 0; x < 2; x++) {
    Serial.println(message[x]);
    delay(1000);
  }
}

If you don't use code tags then it ends up like this:


char message[][4] = { "hi", "bye" }; // <---- There's a box now

void setup() {
//Serial.begin() configures the serial port // <---- Some strange link
Serial.begin(9600); // <---- Indentation lost
}

void loop() {
for (byte x = 0; x < 2; x++) {
Serial.println(message[x]); // <---- There's a checkbox
delay(1000);
}
}


There's more than one way to add code tags, you can:

  • Paste your code in the box where you are editing your post, select all the code and click on <CODE/>.
  • In the Arduino IDE under the 'Edit' menu there is 'Copy for Forum', this puts your code on the clipboard with code tags added ready to paste into your question.

Minimal, Reproducible Example

The forum has a limit of 120000 characters per post, which means that you can't post a program longer than this directly. In this case, you can attach the .ino file to your post or, if you are using Arduino Cloud, you can post a link to your project.

However, consider that the longer your program, the harder it is for anyone to understand it and help you. For this reason, consider writing a short program that illustrates the problem and post or link to that instead. You are more likely to get help with a short, easy to understand program than with a long, complicated one. For more about this see How to create a Minimal, Reproducible Example.

Error messages

When you compile your code the Arduino IDE will check for certain problems with the code and generate error messages to indicate any problems it finds. If this happens then we need to see the error messages as well as the complete code, as the error messages offer clues to what the problem is. If you have error messages then in the bottom right hand corner of the IDE there will be a button 'Copy error messages'. Click the button and paste the result into your question, don't forget to add the code tags.

Common mistakes with code and posting code

Posting a screenshot of code or error messages. A screenshot is useless, with a screenshot it is impossible for us to paste the code into the IDE and test it. Please post your code and error messages, not an image of them.

Only posting the part of the code you think has the problem. Often code problems are not in the place they might obviously seem to be, often a mistake in one place shows up as a problem elsewhere. The only way to see this is to see all the code. Also be aware that some mistakes cause a cascade of multiple errors. If this happens, deal with the first one and see if the other disappear.

It is essential that every opening bracket has a corresponding closing bracket. Check that every { has a corresponding }, every ( has a corresponding ) and every [ has a corresponding ] before you post your code. In the IDE if you place your cursor next to any bracket of any kind the IDE will draw a rectangle round its partner, if there's no corresponding bracket, or there is a corresponding bracket but it's not the one you expected then you have found your problem. Also, if you use Auto Format (Tools > Auto Format or Ctrl+T) your code will be tidied up and missing brackets of all kinds should become a lot easier to see.

Forum rules and netiquette

The instructions above are to help you make a successful post, 'successful' meaning you get a useful and satisfactory answer to your question. In order to keep the forum working smoothly there are some rules that apply to everyone, breaches of which can lead to suspension or being removed from the forum altogether.

Only ask your question once, in one category of the forum

We know you are anxious to get an answer to your problem, but re-posting the same question to multiple categories of the forum causes duplicate effort, and divides the focus on your problem. You'll get a better answer if everyone can discuss it in one place. Asking the same question multiple times is called cross-posting. Cross-posting is very annoying to people trying to help you. If you cross-post, the moderators will delete your extra posts, and you will get a warning. Save all the hassle, and just post the question once. It will be noticed.

If you aren't sure which category to post in (Programming, General Electronics, etc.), make a guess. Don't cross-post "just in case".

Start a new topic; don't hijack an existing topic

You might see an existing topic related to what you want to ask and think about tagging your question on the end. Please don't do this. If the existing question is just what you were looking for and the answer helps you then there is no need. Otherwise, the existing topic isn't what you were looking for and you should create a new topic. There's no harm including a link back to the existing discussion if you think there's some relevance.

Don't bump!

Don't bump your topic after an hour. Because of the different time zones, the person who knows the answer may be asleep, or away for the day or maybe on holiday. Maybe after a couple of days, but even then think about whether you have provided enough information and asked a question that can be answered. You could even ask us 'what else can I provide in order to get some help?'.

Getting help from a particular person

You might have read answers from a particular person and think that person would be the best person to help you. You can bring your question to someone's attention by using @ followed by their username, for example @username. If you do this, they will get a notification. Please do not send a PM (private message) to someone you don't know asking a question; most will ignore you.

Commercial projects

One thing really guaranteed to ensure you don't get help is to tell us you can't provide all the information because it is commercially confidential. If it's commercially confidential then you should consider paying someone to help you and ensure a confidentiality agreement is in place with them. If you want help with a commercial project then create a topic in Jobs and Paid Consultancy - Arduino Forum and indicate what your terms are, including how much your budget is. This is a hobby forum, not a place for free help with commercial projects.

Ready written code

Ready written code for every possible application does not exist, including for your application. Asking for the code for what you are trying to do will not get you anywhere, other than possibly some annoyed replies. You either have to write your own, which we are here to help with when you get stuck, or you can pay for someone else to write it for you. If you want someone to write code for you the place to ask is Jobs and Paid Consultancy - Arduino Forum. If you neither want to learn to write code yourself nor pay someone else to do it for you then this is probably not the right place for you.

Be polite

A little courtesy and politeness goes a long way. Even if you think a question has been asked before, or you don't see the point of it, try to answer politely. Remember a lot of the posters with high post counts see the same questions every day, and they may get a bit terse if you appear not to have tried very hard to help yourself in the first place. You will find that if you respond in a friendly way, people will stick with you and you will almost certainly get your problem solved. Personal insults, rudeness and offensive language are not acceptable and will result in a ban. Stick to the topic.

DON'T SHOUT

TYPING IN ALL UPPER CASE is considered to be SHOUTING. It won't get you an answer any quicker, it will just annoy people.

Homework

We get a lot of questions from students wanting help with their homework. Such questions are generally one of two kinds: Questions by students who are obviously making a real effort but have got stuck; these get helpful answers. Questions from students who are obviously not making any effort at all and just want someone to do their homework for them; these usually get a lecture. By all means, post homework questions when you are stuck, but make sure you've put some effort in first.

Thank people who help you

Those of us who answer questions on here are doing so for free, out of community spirit. Please thank people who provide helpful answers and don't forget to give :heart:s as well.

It also helps if you click the :check_box_with_check: Solution button at the bottom of the reply that answered your question. This will make it easy for helpers to see that it is solved and for others with the same question to find the answer quickly.

Credits

Much of this tutorial has been inspired by or copied from the original forum instructions created by Nick Gammon.
My thanks to Ballscrewbob, Robin2 and Idahowalker all of whom have provided a great deal of support and feedback, without which this tutorial would contain far more errors than it does and would be a lot less clear than it is.

Feedback

Please provide comments, feedback or suggestions for improvements for these instructions here.

Thank you.

40 Likes
How to get the best from this forum feedback and comments
DHT11 gives only 0% humidity en 0°C
Code Request - 3 100k NTC Data Logging - Teensy LC
Object measurements
How to add bus in arduino
How to Serial Communication
Does ATMEGA32U4RC-Au ic come with bootloader?
Concatenate Char* and uint64_t
Failed to verify certificate. : x509 certificate signed unknown Authority
[SOLVED] Nano Every behaving strangely with daisy chained 74HC595
Why isn't the client.available function working in this code
Panasonic EVWAE/EVWAD position sensor
Arduino Tetris MAX7219 controling trough Android (NodMCU and Blynk)
The port does not recognize the Arduino
GY-91 Sendor - avrdude errors
Help. p10 led matrix hub no zigzag
Decode serial port output of MPU6050 sensor data with a second arduino
Millis timing relays start with a pushbutton
Quick question about TCA9548A addressing
How To Use The Mills() Fonction
Websocket send data from ina219 help
Power nrf24L01 without usb
MP3 shield interferring with Serial Monitor (I think). How can we all get along?
No response from the servos
Can we use analog inputs as analog outputs?
Trouble #DEFINE on a 74HC595
Compilation error with Arduino mega board
First project RC car won't move
What is problem
How to get the best out of this forum
How to get the best out of this forum
I want to combine the Arduino program, but there are still problems with the LCD program not being able to change/transition and the sound sensor can'
Can Somone Help Me Please!
Uno R3 onBoard Led
Hello, do you know how to solve it with the code and the elements of electronics?
Unknown Error while uploading code
Motors attached to L298n not rotating withlower PWM values
Problema con output
Struggling with Ppm
Relay stays open and keeps solenoid triggered
Error when burning the bootloader,
ESP32-S3-DevKitC-1 compiling error
I am working with rdm6300 and arduino uno. I am able to read 16527278 But i want to read 252,12206. Please Help me. How can i read this? watch picture
Aurdino is not accepting more than 8 http
H-Bridge engines are not running
Jai fait ce code pour commander un palan electrique a distance a laide du app inventor et arduino .. ma seul probleme c est que le module relais ne fonctionne pas bien avec le programme
Mirco to sensor to input
Having trouble getting two wheels to work
Code for random alarm in 6 hour shift Arduino uno
Exit status 1 Error code
How to precisely stop stepper motor with Arduino code
Display stays blank after uploading
Modbus MultiCoils
The data loss of SPI on DUE board
Up Down Counter back direction count issue
Arduino Online Editor not showing port options
Rotary switch to control the menu on lcd display 16x2
Using millis() in for loop. Delay is not constant
Integration Issue with Nodemcu ESP8266, ADXL345, and Micro SD Card Module
Looking for help on a stepper sketch
Help on displaying current step of stepper motor
Controlling 8 BLDC motor with arduino
Nrf24L01 Antenna Problem
My stepper motor driver LED won’t turn on when the power is on. Is it meant to?
IRremote + OLED I2C
Freenove Tracking Line
Common ground and why you need one
Need garbage degradation project code
Cd player controller
RTC error message "Not declared in scope"
Merging codes togther
Push button timed audio and disco ball
L298N motor driver only takes IN1 and IN2 for inputs
Capteur de distance bouton actif ou inactif
Send commands from ATMEGA2560 to Vantage Pro 2 (weather station) via UART
Reset Arduino Micro? help plz
Using ADXL345 with Arduino UNO R3 to Obtain Time Domain Vibration Signals and Convert to Frequency Domain via FFT
Since installation IDE 2.0.3 problems with verify code
Does anyone know what's wrong?
Floating numbers in LCD
SD data logger SD.open() fails
Charging Circuit
Need Intro Project Help!
Ayuda! con el for
'microsecondsToCentimeters' was not declared in this scope
Digital pin reading "High" when plugged into specific computer
Speaker won’t stop making background noises
Need 25 Pin as out put 2 pins for sensor & 23 for Relays
Please help me with my stepper motor issue
Using PWM sequence with Arduino Uno
L298n controlling only 1 motor direction esp8266
How to communicate the IMU sensor with esp32 via SPI communication
Exception Code 3 when writing to multiple coils MODBUS
Start the void.loop with a command
Using 433MHz RF module and esp8266 WIFI module(not Nodemcu) in same arduino?
What does this mean? Arduino pro mini
Is there something wrong with my Ultrasonic code
ESP32 Bluetooth to Win10
SMS read/write problem sim800 and arduino uno
Is my esp32 incompatible with my nRF24l01 module ?
Schottky diode for analog input protection
ArduinoFFT library Compute returns NAN on NANO
Advise needed for shift registers and programming buttons on it with hold and multi press
Generating two PWM signals with 50% duty cycle, variable frequency and one signal is 30 degrees phase shifted with another
Need help with compiling and translating binary
Reset Toner Chip from my Printer
Urgent Help Needed Please!
Lights with Shift Registers and Buttons
Problems with my code
Errors Onesheeld code please help me
Proyecto Dispensador fino graneador
LCD is functioning, will not display
Com port change with Nano 33 BLE Sense
Reading Sensor Values from Myoware Muscle Sensor
Problem with connecting a MCP23017 with arduino Uno
Issue with reading CAN data using UART serial CAN Bus device
What software do I need for this...?
Push button Switches Won't work
Want to combine these sketches
Can you store a lines of code in a variable?
Coin operated water dispenser help!
Code for project w/ wireless communication between board w/ gyro sensor and board with LED
Unable to Start Debugger in IDE 2.3.1
8 relay module 12v not working as aspected
Millis() is wayy off
ESP32+MQTT fallas
Servo position hold while operating with Joystick
Ayuda es para hoy
Arduino Door lock system using fingerprint and keypad both
Water Flow sensor Switch
Having trouble with the "if" function
5.1 volume control
AtMega328p and Relays
Reading a 5 bit encoder on a Port with 0ne instruction
Impedance matching system using SPDT relay
Data section exceeds available space in board
Programming problem expert level
Problem with analogRead
Get a input from a relay
Code for Arduino uno from AI
Stepper motor driver power LED not switching on
Mushroom Growroom Box
ButtonPress - setting of variable
Envoyer un string entre deux ESP32
Controlling H-bridge via bluetooth input
Please my code is not uploading to the board
Can Arduino analog input tolerate 5.6V?
fd_forward.h: No such file or directory
Help with counter and led light
Portenta H7 with Nextion Serial Strings Read
I need help learning
Setting up the Relays to water for 30 seconds each when individually triggered
Problemas con error No such file or directory
Servo shifts to last position of other pwm servo
Neo 6 m in Node mcu
Rs485 and arduino mini pro
Problem making a global variable for 2 functions local varible
Global Values - taking up too much memory
Very Broken program
Trying to make a simple Lixie clock and cant Figure out the code
Implementing a DND feature on an intercom
DS18B20 Temperature Sensor *Amazon (Experts Help)
Set Timer for automatic pet feeder
MR24FDB1-Sensor incorrect data
Arduino UNO 4 wifi Blocked
NRF24L01 Causes servo to vibrate
Serialtransfer.h using String Crash
Relay activation even if the circuit remains closed or open [Solved]
Header file error
How to get the best from this forum feedback and comments
Zwei verschiedene Frequenzen abwechselnd erzeugen
Problem with two loops
Loop is broken (led is not blinking for long time it was broken)
Change a value from json
A simple question
SSD1306 allocation problem
Function-definition is not allowed here before ‘{’ token
How do i make 2 arduino devices track each other?
My Brushless Motor is beeping
Stepper motor code question
Finding the minimum, middle and maximum values
How can I output a signal from an electric guitar to an amp with arduino uno?
Short Circuit Detector using Arduino Uno
May I know why would this happened and how can I solve it?
Need help with explaining me a code
Flash sequence numbers
Need feedback on this code because I am trying to work a Stepper Motor 28BYJ-48 with this code
I'm having servo trouble
I’m new. Please help me with this coding
MAX30105 heart rate sensor not recognized by its own library
Advanced chart, grayed out Things while adding variables, Time Zone problem
Arduino 1 switch , 1 poten , 1 lcd , 1 buzzer
I want to write a ESP32 code about automatically controlling the brightness of the Neopixel light bar
Motor with fixed frequency but changing amplitude
Sending data to multiple slaves to single master via RS485
Can't load sketch to ESP8266-12E
Can't find MPU6050 connected to TCA9548A multiplexer
Any one can help me to know how to fix this error when i used MPU-6050
Desde una sola bateria obtener 5 y 12 voltios
Some really basic questions on circuit boards
A bit of help in Modifying the Program
My button is reading from pins that are not declared
Controlling in Solenoid valve
Help with my code for making my my project named Routine Ranger
Help suddenly cant upload grbl to my arduino boards
The merits of delay() vs millis()
MAX30105 was not found. Please check wiring/power
Up Down Counter
Can someone please tell me what I am doing wrong?
Checking my understanding of functions specifically voids
Adafruit 0.96 display won't work with my code
Programing for N298
Electronics for Sonic Screwdriver prop HELP
Control PID de temperatura
Add count by 0.5 mm after every pulse recive in digital
Changing baud rate interactively
Hola querria ajuntar dos codigos pero me esta dando problemas, si alguien estaria dispuesto ayudarme
RFID data to JSON
Serial Monitor - Messages from core or libraries
Arduino with DMX Shield with trigger button
Arduino with nextion display
MFRC522 not Working on ESP8266
Can Anyone Help Me Understand What I am Doing Wrong?
68:4: error: #error "Required HOMING_CYCLE_0 not defined." #error "Required HOMING_CYCLE_0 not defined."
Using a nrf to send button signals to control a servo
MeanWell HLG PWM controll
Wemos D1 external power through 5v pin
SOS sketch needs a pause in LED sequence
TFT LCD shield shows a blank white screen
Issue obtaining data from MQ135 Sensor
ESP32 and RP-S40-ST force sensor
Are my connections correct
IR sensor spitting out multiple different codes for the same button, and occasional 0's?
Hi guyss can you pls correct this code , this have some mistakes plsss and i cannot find the mistakes
Hello all, how do I solve ovf bcos after the reciever print the float value it continously print the ovf. Please help
Reverse ? error in serial
Controlling stepper with buttons. buttons only working at top of loop
Arduino Mega with Ethernet stops working
Problem with TFT screen while compiling
Digital RCU tester
D13 triggers when powering up (simon says)
Сompile code error: “undefined Reference to `Num::getNum()`
Arduino Nano R4 window compatible issue
Sensor de huellas dactilares con ESP32cam
Project code sugestion
Hello everyone I am new in arduino how can i solve this problem .. i am trygin to call data from gps function and tracking function
High Current Measuring with ACS712 and Buzzer Module
Arduino Uno and Reyax Rylr990 LoRa transceiver
Serial is printing character by character
TFT lcd blank screen
Arduino code for pin i/o over BLE
SoftwareSerial TX problem
Using a class from a separate .cpp is not working
Neopixel WS2812B need find code int
Ultrasonic Sensor Code
Need to run the loop function only when I call any function
Powering and Controlling Separate LED Strips
Uploading using programmer doesnt work
Float array print issue
Need help quickly! Arduino Code. Fixed
RC signal to trigger sounds on DFplayerMini using SparkFun ProMicro
HardwareSerial Problem with ESP8266
DHT11 if else statements not working
Magnetic hall sensors
Arduino Chessboard
HC-05 Serial Comms - 2 way not working in SoftwareSerial
How do i print this string and float value
Script only runs if it is connected with the computer
I need help fixing my code
Momentary Push Button - One Push for Entire Code
Here is my Dragonframe CNC Shield V3 Moco Solution & code!
Problems with serial input
UTFT few display connection
LM35 another topic
HP4067 Mux convert Serial to DigitalRead
Using limit switch
Not receiving data to the app
Smoothing problem
Need Help with programming this code
Analog Reading for Temperature sensor Cumulative value
How to add x1 and x2 button mouse logitech leonardo + usb shield
Sending BMP280 data over 433 mhz
Need help with rf24l01 modules [SOLVED]
Arduino pro mini timing seems to be off
Uploading using programmer doesnt work
Turning string output of function into a String
Pump Control with Mosfet
DragonFrame Motor Only going one way
Can't get expected readings using PulseIn command
PIR sensor controlling servo always reading HIGH
Serial Monitor and FDTI connection
Arduino motor issues
ESP 32 keeps restarting with AsyncWebServer
To measure current and volatge
Error de complilación
help to solve it please
TMRpcm not working (stops playing immediately)
Data request using GSM shield
Stepper motor 24byj48 vs 28byj48
Mega/Motor Shield Power Problem
Stepper Motor loosing steps
3 square wave generater
RFID wrong code received over RS232
AVRDUDE ERROR with the code that ARDUINO's website provides
Adding readings of two load cell
Arduino UNO - increase motor speed (easy)
Problem Using STM32 with Arduino IDE
How to properly insert delay() function
ATtiny 13a issues
Error library Adafruit_Fingerprint
Not declared in this scope, sound!
Lathe threading problem
Controlling Several LED methods via Bluetooth
Using Uno to control a 5V non addressable led strip
ESP32 with MCP2515 Not Receiving BMS CANBUS Data (ID 0x100)
Get first 5 digits
Full Sketch Compilation Error
Wiring diagram for limit switchs in cnc shild v3
Ultrasonic theremin
UBLOX Neo-6M GPS Module not working / not powering on
Arduino Nano digital read/write problem
Using a dc motor with a photoresistor
SingleTact sensor
Choosing a battery to power multiple high power servos with different specs
Df mini player with atmega32
Need help with bypassing the 50 day limit of millis() function
Starting and stopping 2 DC motors with limit switches
Unable to create a precompiled Library for ESP32 boards
Secondary Clock ''СТРЕЛА" made in USSR
Vane anemometer from ruoshoi digital anemometer
[Solved] Problem with Arduino Logic Analyzer project
Triggering events with multiple sensors
Create code for Arduino
Serial Monitor Not printing with ESP-01
Code for Multi turn Pot
Esp32 cam error
Building a BMX gate and having sound issues
Giga Display Blank (No Graphics)
Arduino potentiometer replacement
Keeping the angle measurement the same for holding position
Fix your slow cloud service
Differing voltages on pin D7 and D8D6D5
Reading multiple analogue inputs and printing values
Arduino showing an error for some reason
Ide 1.6 geeft fout in 2.1.3
TPS Voltage regulator not working
Duplicated libraries
Can't use digital.Write in void correctly. ''digital was not declared''
Arduino Mega 2560, and Modbus Slave RTU Library
How to fix this
In function 'void setup()': 66:14: error: expected primary-expression before ',' token
DHT Humidity and Temperature Sensor not working
Arduino snap rover
Aruino UnO connected to SM sensor
Cnc router uno r3 based
Modify GPS tracker coding
RGB LED controlled using IR Remote
Thermocouple reading drop for 20C when Motor driver TB6600 is connected which is using 24V PSU
LM324N connection problem in a sensor circuit
Raw EMG signal does not change with muscle contraction on Arduino / STM32 ADC
Expected intializer before string
Wemos D1 mini upload failure
Best Sensor for Coin Sorter
I want to extend nrf24 range with antenna to 1km or above. Please help me
"How to control an electric wheelchair using voice and head movement?"
Fan Speed AND DHT22 (temp/humidity)
Decode data stream from serial
Arduino uno r3 , Esp8266
Using a nrf to send button signals to control a servo
How to read data from sd card and compare the id from r307 finger print sensor?
RGB LED controlled using IR Remote
LCD Display Problem/Question
Starterkit - Project 14 - Tweak the logo - Processing error
Sketch upload error on arduino
Hello, I like some help about this code. I´m having trouble running - It´s for building a Magnetometer. I´m new in arduino programing
Read sensor connected to USB port via Arduino
Ethernet_shield not continously working
Set up sample rate of arduino
Firebeetle ESP 32 error or my laptop?
PIR Sensor analog value oscillation?
Help with blinking single LED
Help on my Electronic Project Deployment
Arduino UNO y NANO con CH340 (chinos)
Program using a button timer
Sketch seems to be skipping data
Combination of flex sensor and LSM6DS3
Alternative definitions for analog pins
Duplicated Row on RGB Matrix 64x32
DNC Via Arduino Serial
PPM Sensor result on LCD blinking
How to hack OBD-II to measure steering angle of a CAR?
Comunication with module sim800l
External EEPROM Interfacing With Arduino Uno
How useful is an Arduino Sensor Shield?
Camera Web Server
Parsing SMS Message
Unable to connect to the mqtt
Water flow sensor connection to Uno Board with pull up resistor
Error compiling LowLatencyLogger
Why doesent it work
Stupid question I know, but please help
Help, Encoder EC28A Android Radio
Adafruit VL53L0X high accuracy with Adafruit_VL53L0X libray
SIM900A and Float Switch
Updating libraries, boards taking very very long and still not finished
The 3D Magnetic Levitation System: This is a completed, fully working hardware project
Multiple leds on ONE PWM pin
Serial Prints Average Sensor Read
Capacitive sensor with Arduino and AD7746
Sainsmart 5 inch display, Compile errors
Coding help? vfd to LCD or OLED
Joy it 20kg pressure sensor coding/hardware isn't working help!
Linear Voltage Increase
Help with arduino code!
Connect arduino wirelessly
Servo no regresa a la posicion inicial
Doorlock.. Proplem with the servo motor
IR Reciver not working!
PLEASE HELP noob
Buid a TV Lifter
Arduino - bluetootth
Help for Decoding SEA j1939 Using MCP2515 and Arduino Uno
Code for rolling shade using Uno and Stepper
Please Help me In Debug this code
COM port not being read
Reading load measurments in increments
iRobot create movement with arduino
FSR voltage steadily increasing
Selfbalancing robot doesn't react fast enough when falling
Concatination of string
Manejo de 4 servos con un solo sensor ultrasonico
Help with making a competition buzzer box
Washing Maching code doesn' wait for fill water tank after 1st. washing is complete
Mp3-tf-16p with arduino nano
Why can't I put my Arduino Mega into dfu mode
nRF24L01+ Transmission failed or timed out
Problem with compiling for Nano on IDE
Three servos controlled by only one digital input
Arduino code to read the pins
Random specific colors for NeoPixel
Control hot water
Unbekannte Fehlermeldung beim Sketch
How to fix unstable analog output from A0 pin
Sensor de huella con arduino usando un servidor web
How I can read Serial monitor on a device
Can you make a arduino in to a computer
I'm beyond help with this Stepper Motor
Random specific colors for NeoPixel
Did I kill my nano?
Can anyone help with passing serial command from arduino Mega 2560 to M6e reader. I am getting connecting error
Arduino con Bluetooth HC-06
FastLED Parallel Output (Same Data Different Pins)
Using 2 arduinos and TMP36 to send message
Is it possible to create a wireless transmitter to several people ?
RF remote control robot for school project
Uart does not name a type including MKRGSM.h
Arduino code MAX30100 and DS18B20 doesn't work
Need help 3 servo control with arduino uno
PIR Motion Sensor
How to maintain original data using strchr
Unable to compile for esp32 dev board module
Making a little "lots of joysticks" device
ESP32 not in port. Used wrong board
Need help at coding
Problema con orientacion de MD_Max72xx
Continuous rotation servo with feedback and pulse sensor
Need pointer to RF reciever control of Relay
Serial.print sends non wanted data
Receiving 5 volts as an input, and then sending 5 volts as an Output
Ouput current dropping down
Urgent help needed to fix the temperature sensor
Esp32 solenoid control problem
ESP32 as iBeacon
Pushbutton Not Activating a Certain Function In My Code
SIM800L prints strange characters ot HTTPPARA="URL"
VMA340 Pulse sensor false data
I want to take data from one device using usb and send to pc . which arduino board I should prefer?
Expected { at end of input
Sincronizar hora de RTC DS3231 con arduino UNo
I got an Adafruit feather with DVI output, Now I'm in trouble
Generating varying frequencies on pin PA21 for ATSAMD21G18AU
Stepper motor driver
To amplify milliVolts (say 10-100 mV) data into 0-5 Volts using Arduino UNO
Compile error with Razor9dof package
I want to press the button to call the numbers available in the sim card
What Causes the Torque Sensor to Have Unstable Output Signals?
Conversion from 'const char*' to 'char'
NRF24L01+PA not working
atTiny85 internal Vcc analog voltage reference
DC Motor Control using Mosfet
Everything seem to be OKay, but not work normally. pls help!
M5stic cplus error while verify code
Guide sketch for 2 DC motor , L9110s, and an ultra sonic sensor
Arduino UNO + HC05 => weird data transfer
Array passing problem
NO OUTPUT for a proposed project
Crgbarray not meshing with crgb in declarations
I2c esclavo respondiendo por varias direcciones
Error while compiling the code
Temperature controlled actuator
Coding in Home Position for DC Motor
Code corruption? Thoughts?
Simple ultrasonic sensor
How to alter the value of a signal via poti?
How do I make my potentiometer increase the sound of the buzzer?
How write sd card cvs in the next column
Problem in my lab
LoRa: Initializarion problem that follows the code and not the hardware
Tilt compensated robot compass
Press a button and move the joystick
Problem with pot
Multiple sensor thermostat
Esp32 lora PCF8574ap
Comparing analog signals
4 button's 4 leds debounce
Using 2 sensors advice
Troubleshooting dc motor motion control
Serial2 read ESP32 wroomer wrong characters
Best way to make a web based configurator tool
I don't know how to read an entire word in the serial
UNO Q and Nano R4 qwiic port does not support
Adding Millis to program in youtube
Fastled library help
Problemas con WT32 ETH01
Disable hall effects sensor
Arduinos UNO, SENSORs, LEDs maybe POINTs
Code given error
Is it possible to manipulate arrays like this?
How to wire ESP8266 nodeMCU to powerbank/battery?
Conflit urtouch and sdfat lib
Decimal to binary converter
MPU6050 (Self balancing Robot)
Arduino Mega with 2004 Lcd Screen problem
ESP32 - DRV8825 Stepper Driver - NEMA17 - BLE Problems
Need help with my calculation to find the stepper the motor that allows for the use right pulley
Auto-Closing of topics?
Issues restarting SD card
Convert speech to text with esp32 i2s imp411
I have a question for Arduino
Bluetooth Controlled Car Problems
Help value EEPROM lost after reboot
12v on raw but 0.3v on vcc
HM-10 Bluetooth Not Responsive
IoT Cloud and pictures
Medir 12Kv de cerca electrica
Serial string sum comparison
Garage Door Opener
Attiny85 with DC motor and pushbutton
Help with Saving Motor Position and Recovery after Interruptions
Need help for this i got an error for this one
Using Switch in a If if condition
Load Cell of 5 Kg with HX711 Module with Arduino
It's been so long I've fprgotten what T do
Heating Elements via Mosfet + NPN-Transistor
How to measure power in PID controlled circuit
4004 lcd problems
DFPlayer not working after multiples loops
BMP280 newby pressure relay
Loadcell as a switch
Relay is being high at starting, Can we make it Low at start up until input matches
2 pwm signals without delay
Problem About ADC Reading Potentiometer
Troubles with if statements in for loops
Multiple cards on one RC522
How to get the best out of this forum
Insert switch to lcd clock
Wiznet W5500-EVB Pico - On board switches
My arduino uno is uploading but not working
Cannot upload project after conecting Wifi shield
Two leds blink with one button
Analog Read Issues (Interference?)
Problemas con mis servos
XBEE Configuration
Stepper motor+hall sensor+arduino
Nano Every LED Lamp Diagram Review
Run 12V through a MCP4151 Pot?
Accel Stepper Library Forward and Backward Motion
Unable to compile sketch
Arduino setup runs when relay activates
Nano freezes after several loops
How to store data and call it out anytime
Double BTS7960 43A H-Bridge suitable for peltier heat and cool control?
Problem with a basic code
Help please! Trouble using analog pins
Error in code with arduino and vPython
Need Help with programming this code
How do I declare for "sendCommand" and "getData"
How to send commands without typing it on the serial monitor?
Arduino code for pin i/o over BLE
Arduino code for pin i/o over BLE
Unscented Kalman Filtering to find displacement
Want to help someone who is code illiterate?
1.8 tft 128*160 lcd error
Esp 32 cam not working
Help Error message!
Arduino - bluetootth
Arduino mega 2560 not function !
Wemos D1 mini/ ESP8266 have problem in serial monitor output
Need help making arduino robot start and stop when button is pressed in MIT app inventor
Beginners seeking help
How do I Implement a first order system on Arduino?
Can communication with can spi module
Is this a complete code or not?
SMS send but no receive.. the available() function takes forever
I don't know what's wrong with this code that bugging me, here's the code can any one find the error? this is the code for 128x64glcd oscilloscope
Datenlogger und LCD Keypad Shield
X y pen plotter coding problem
General Guidance and How to use the Forum
No funciona la libreria "arduino FFT"
Cómo puedo utilizar el SDA y el SCL del arduino UNO en vez del A4 y A5
General Guidance and How to use the Forum
General Guidance and How to use the Forum
ledcDetachPin(Pin) seems not working
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
How to decode binary coming from the neurosky module?
General Guidance and How to use the Forum
Micromouse Simulator (MMS) interface
Complete newbie need startup advice
Error message: no match to operator&' (operand type are Pot** and Pot
Controllig car led's with pwm
Pair a motor driver to fingerprint sensor
Trouble with Coin Acceptor/120V triggering pulse
Arduino UNO R3 using two outputs dependent to different inputs
Same string getting rewriten every second, RAM usage issue?
BB-2590/U Battery I2C communication with arduino
M5STACK Serial monitor
About hacking neuroskyeeg star wars force trainer toy
Arduino nano does not work with battery
Attaching a servo affects pulseIn readings
I cant receive data from BQ76PL455
L298N Enable Pin
Controlling Servo Motor with Arduino and PIR Sensor
Arduino Nano Programmer
Can I use ULN2003 driver module to control a linear actuator that requires 1.7A?
How to make a menu with submenus?
Conectar un nodemcu a plc
I am facing some errors while compiling code. Please help
I am not getting how to use api and get the data to personal app please help me asap
Problem with getting a Mouse to work with a ESP32
UNO Q - can't get past failed update window to enter Linux password
How can i control 2 relay in different timings with arduino and pir sensor
Interrumpir void loop con modulo bluetooth
Esp32 communicating over wifi (mqtt)
Gps tracker " No GPS detected, Check wiring"
Simulating EEPROM in flash memory
How I get 100 hz frequency in arduino mega 2560
Problems displaying oled and lcd at the same timt
PWM Control Problem
Fix my code for proximity sensor and stepper motors
PWM with the L298N motor driver
LCD Code causes Arduino to not execute void setup AND void loop
Wifi esp8266 error when use adafruit_neopixel
Mbed end of life
ESP32 Cam no Serial Output
Can't connect my ps2 controller to arduino
DHT 11 sensor interfering with other sensors
Ramp up to speed for steppers
Need help, display blink when press button or HC SR04
RS485 serial comms failing using different ports on Mega2560
Error compiling for board arduino uno - Airflow, Humidity, Particulate Matter Seonsors
Multiple DHT22 on UNO with Adafruit Data logger shield
Can a multiplexer handle more than one type of input<control surface.h>
How to stop continuously servo with push button
Arduino Mega R3 Interrupt pins
Arduino PID Temperature control Increasing values
Arduino project issue
MAX 485 Modbus request/responce
Arduino Uno project
Nextion display
Set the DS3231 module
React Native Error: ENOSPC: System limit for number of file watchers reached
Problem uploading to UNO
Error Compiling on Arduino Uno
Problem with serial monitor on arduino nano with CH340G chip
Thing Variables Falling Through - Nano 33 IoT
Ultrasonic Transducer Data collection
Arduino uno shock
The Arduino does not execute commands when I unplug the Arduino.. It only executes commands when I press the restart button
Error Asteroid Attack
L LED in low state still emitting light
Problemas con modulo GPS y tarjeta sd
Help me with this problem!
Ardunio & TB6612FNG Motor Driver
Cant compile this code
Motor Driver Problems
Automatically railway crossing system
Design for two tightly looping ISRs
CallBack MQTT PUBSUB doesn't work
Can you help me for my program and explain me
Arduino uno with multiple oled displays
Need help I don’t understand this error message
Newbie 1st project - Will this work?
Arduino code help with fade_functions
Facing some problem declaring interrupts
How to debug my sketch code step-by-step?
Characters backwards and split up [MAX7219]
Parts for ultrasonic directional speaker
Fatal error: ArduinoBLE.h: No such file or directory
How to debug this code so that my accelerometer will work?
Code explanation needed please
Storing serial monitor values in an array
Need advice to make conectionto buttons
RFM95W + Nano Initialization issue
I want to write drivers for sensors starting from 0
Arduino serial port output messy code
'button_on_release' was not declared in this scope
No Wifi (ELEGOO Smart Robot Car V4.0)
FSR sensor comparison data in using Arduino Array
Potentiometer problem steering wheel
Problem with iot project
Turn on realy in every hour with rtc using arduino
Beginner here needing some help
My Arduino Code Won’t Compile, But it Works on TinkerCad
Code not woking correctly and i dont know why it wont run the nested if statements
Controlling DC motor using a MOSFET
PLX-DAQ version 2 - now with 64 bit support! (and further new features)
Multi tasking structre for my arduino sketch
Looking for Help With Troubleshooting Sensor-Activated LED Setup
Add led to midi buttons sketch
HC-SR04 to sense water flow
Project 6 - Tone Not Declared in This Scope
One out of two servo motors will not run
About my programing
Serial communication
Multiple serial connections (SPI & I2C at the same time) in Nano IOT 33
Help........ 16*2 LCD display squares
Esp8266 cant upload to webserver from it's serial monitor..Help
Compile fails on Linux/ChromeOS
Control Digital to Analog converter
Arduinio Nano Error Exit Status 1
Problems using External IRQ's as Slave I2C
Self Balancing Robot Help
Mega 2650 solar tracker LDR Relay
PIR Sensor and Arduino
What's wrong with this coding
Temperature based controlled fan arduino code
PWM converter, need help
1 button 1 led fade
analogWrite vs SoftPWM
Case in Fastled sketch combining with the previous case
Problem with my Velostat pressure sensor using multiplexers
Sending data from ESP32 to local flask server fails: "send payload failed (-3)"
Verify my project schema by more experienced world
BLDC Pump PWM Control
Help With Programing!
12v Relay Module not being powered
USB Sabertooth 2*32 with simply serial mode
Need help with checking code and circuit diagram!
Maximum number of devices used in daisy chained spi configuration
FSR sensor comparison data in using Arduino Array
Help........ 16*2 LCD display squares
How to select different loop programs to control Stepper motor with IR remote
Rc excavator project
Rc excavator project
New to Arduino, Need Help With Turning LED's on after set amount of time
Uso de doble comunicacion por I2C con pantalla LCD con modulo I2C y sensor BH1750
Arduino IDE - LED Sketch question
Monitoring sensor
Display does not start on power on
Why does this code line not work?
I Need help on making a Gerber file and a PCB as a beginner
Adapt existing robot code to use SimpleFOC commander & BLDC
Why does the led rgb bar light up in pixel order after running the program?
New Arduino Uno Mini Issue
Cc1101 receive from unknown transmitters problem
Clearcore modbusread and write using the erthenet port
USB Controller Using Aduino Micro pro
Como les va gente bonita? Estaba haciendo un proyecto de una banda transportadora con sensores infrarrojos, pero no me funciono, Esta bien el código?
Servo motor sweep and LED blinking using millis
Lm 35 temperature sensor
Serial.read() wont serial read bytes over 128
Program error questions
Variar frecuencia de un motor 3F AC
Comunicación I2C
Just starting and need help
Why always error when iam going to use simple http project, Is it because of the driver?`
Conflict between FastLED and PrintEx libraries
NANO IOT 33 Disconnecting after code upload
How to save something like array on EEPROM of ESP8266 ?
Guru Meditation Error: Core 0 panic'ed
My code only runs once ? It seems to get stuck in a function, not allowing my car to move after the first click
Arduino UNO + Software vs Hardware Serial Connection with alphanumeric OLED problem
New version of an old neopixel sketch not working for me
Code Not working for OLED with arduino Nano
DFPlayer mini random play function - part two
ESP8266 soil sensor
Stepper motor, encoder and zero angle
Li-Fi based Text Communication between Two Arduino
Multiple DHT22 Sensors with LCD I2C display [SOLVED]
Powering problem,
Automatically water, soap, hand sanitizer and hand dryer problems
Pantalla lcd de 2 pulgadas no muestra nada
10 button controls
ESP8266 D1 Wifi board, can't find the port on MAC OS
Problem with iot project
Light flicker measurement
Counters not working
14 line error aa raha hai
Timer interrupt with analogread
SPI TFT LCD on Uno R4 Minima
Trouble with RF24 library
DS18B20 gives me only one negative value in every temperature . That value is not even close.It is -127 celcius. I also added 4.7K pullup resistor
Using an IR remote to control DC motor
Using the Bluetooth with the Voice Rec
'positive' isn't declared and I can't figure it out
Why SD card is not storing the file? I am have to display 6 DS18B20 temperature sensor data and store themin SD Card. But File storing not working
Delayed output using Keyboard.println()
Need to control four audio stages digitally, namely gain, volume, tone & level
Nedo mcu 8266 serial port display shows broken characters
Ultra slow sketch execution!
(Moved) sample code needed
Arduino MP3 player controled by 433MHz RF receive
Automatic plants watering system
Bad LCD visualization
How do i combine 2 codes in 1 Arduino mega? (capping machine)
Knock sensor with motor
Flame sensor random false detection
ILI9341 and SD Card not working
Interfacing the RS232 to TTL with Raspberry pi pico using arduinoIDE
Ultrasonic sensor range appears to be limited to around 100cm
Multiple neoxipel rings radial fadeing
Why can't I install ESP8266 library into arduinodroid?
DC motor control with Bluetooth
Two different components, two different baud rates
Hall Effect helping
An light light ring with wifi and bluetooth
Sending Data between 2 Node MCU chips using ESP8266 in WiFi
Smart door. help me please
IoT carrier cloud messenger widget
Arduino (Making Bad USB) "Enter" command doesn't work
Please help with oled and leonardo
Noisy AC voltmeter
BMP180 using 433MHz modules
Encoder conection pin 6,7
Windows instructions for arduino
Overvloei functie voor twee projectoren
Read CAN bus data with MCP2515 module
Conectar Esp32 con un Enchufe
My arduino blinking so fast and it not working
Arduino Nano & OLED Display Multiple Library Issue
Arduino SIM800L IMEI CHANGER
Esp32 tony bot code lost
Synaptics 920-003267-02RevB connection to arduino
Soft WDT Reset ESP8266 Lora E220
Project on automatic parking system
2 bluetooth HC-05 sending data to one Arduino containing another HC-05
Can arduino switch on pins commands reading comports?
1Pump 1Valves with Blynk IoT
XBee S2C Rssi value is always zero
ILI9341 Calibration
How to use arduino nano with NRF24 ?
Interrupt quesion
HMC5883L not working
UNO with Micro SD error! Help!
fastLED beatsin16 just one way
Understanding forward/reverse operation of dc motor
Please ideas for my project
Time off Delay for pump control without using delay
ESP32 XIAO S3 SeeedStudio v1.2 and PMS5003 not working
Whats the way to send data to server from remote place
Help wifi telnet to serial. :)
Compilation error: 'drawFrame1' was not declared in this scope
Stuck with a TXS0108E logic level shifter
Obstacle Avoidance Robot Not Working
I made a code and I need help. I need to change the adc to minimum adc and maximum adc instate of adc at diffrent times
Arduino Script for Triggering Stops after ~50 sec. on Nicla Sense ME
String conversion Error
'countof' was not declared in this scope
Serial issues in my codes
For Loop Doesn't Stop
Controlling several motors
Suggest parentheses around comparison in operand of '|' [-Werror=parentheses]
Can this DO (dissolved oxygen) sensor be still programmed in an Arduino?
Nesesito ayuda para hacer un ascensor de 3 pisos con arduino 1
ATTiny85 and long int
16x2 LCD not displaying text
Project on automatic parking system
Glider flap settting indicator to OLED display
Nema23 stepper motor vibrate when run
Putting 3 codes to 1 code / exit status 1
Arduino Adafruit_ST7735 TFT with touch screen (st7735s)
Display midi information from ableton to LCD
Powering Arduino efficiently
Number format in gauge
Can I use another bracket inside a delay bracket?(Solved:nikoexcited:)
SD error- no guarda información - error al abrir el archivo
Arduino RP2040 device id
Need help with code that crashes
Irregularity in stepper motor
lcd.setCursor(0,1) makes wrong value
Board Stability on OOP
Stepper motor control
Detecting when an aux cable is conneceted on a TRRS breakout board
I want to set the PWM frequency to 500khz
NODMCU sketch problem
Hall Effect Sensor doing weird things
'positive' isn't declared and I can't figure it out
Invalid header finle tinkercad
Inputs on clock keep going off
Coche teledirigido no funciona con pila de 9v pero si enchufado al pc
Arduino nano 33 iot compilation error
Arduino nano no detectado
Rc car cant move
How to perform i2c read from AW9523B breakout. without library
220 vac solenoid valve control with single channel relay module using arduino stuck issue
Why does listFiles work but this code doesn't?
What's the matter of this Error compiling for board ESP32S3 Dev Module
@NRF24L01 range problem
Servo Motor Freezing
Building Smarter Embedded Systems with Studio
Help me with thissssssssssssss
Loop development for DAC
Controlling Stepper and DC Motor with Arduino
Dropdown using websocket
Awful sound on my DAC using i2s
Combinacion de pulsaciones para diferentes acciones
Dfrobot Dissolved Oxygen meter reading 0 voltage
My Mp3 Doesn't work
Project discussion : water level indicator with auto cut off and purity checker
I am experiencinga slow sampling frequency whenever i try to print 3 sensor output on the serial monitor
How can i connect 3 hx711 to ardunio leonardo r3
Running a two axis lathe program without G-code?
LED Matrix not working correctly
Juntar 4 códigos
2s complement conversion
Is my wiring of a 6v solenoid valve correct?
Newbie: MAX7219 Problem LED's all are lit however NO TEXT
Buttons serial print
How to control servo motor, IR sensor, traffic light if light is red and ir detected object then servo motor works for 10 s
Returning value string from a function, does not work!
Automatic parallel parking
Attach interrupt getting ISR not defined
Problems with interrupt function
Reduce signal noise
Sending data from ESP 8266 Wifi Module to PC using Arduino
Is there a limit on serial?
Joystick/4 switch please help me!
Neo6m not sending data serially to Arduino 2560 Mega Port 0
Using a nano RP2040 to make a gimbal
Change I2C SDA and SCL pin of Arduino and Trinket M0
What more do I need to drive a V4 expansion shield
Need help with code to trigger a relay and a switch button together
Arduino IDE 2.0.0 - rc3
Let the LED flash 3 times when you press a button
WiFi.h me da error con softAP ¿Ahí solución?
Temperature and humidity not showing on LCD display but Serial Monitor testing works fine arduino uno
Newby coding problem
Force Sensor Resistor to display weight and voltage
Need help with an Arduino Uno Project which should be controlled from a web site
Cathode and anode wiring
Reverse Engineering problem, Controlling an unknown coolant valve
Trying to sample all 12 ADC inputs but getting error with advanced lib
Motor stopped working
ESP32 Web Function
Which statement is used to send CAN data frames?
Please help me troubleshoot
Control stepper motor with single button
CAN bus programm code not getting compile
Como puedo unir un codigo de una calculadora y de un juego en uno mismo
Placas expansivas
How do I connect an H bridge to arduino?
Switch task with potentiometer, mulltitasking
Adafruit nokia 5110 display
Help for merge coding for Rc car HC-05 and Ultrasonic sensor
Potentiometer does not read values
Potentiometer does not read values
Discord webhooks
LCD Screen Glitching, Resetting
Problem is robot will avoid the obstacle, but after that no forward again
Using a push button to stop a motor
Rs232 to max232 timing issue
Analog input value
Can you guys help why this is blank for my monitor
Attach interrupt getting ISR not defined
Predictive Fault maintanance project
Variable output wrong
Error in first data serial communication
How to connect Arduino mega and esp8266 to firebase
Arduino no me funciona con el transformador
Problema Sensor JSN-SR04T en placa Shield Ethernet arduino Uno R3
Colorize texts with editor
IbusBM problem with showing two values
The two classes work perfectly independently, but not together
900 LED Infinity Mirror Programming Issue
Pcf8574 with telegram bot
Question about led cube code
Connection problem with arduino nano every clone board
Mapping 4 pin button to keyboard input
Make two serial.read run together
Help Needed – DIY Autonomous Vacuum Cleaner Robot with Arduino Mega (Wi-Fi, Bluetooth, Obstacle Avoidance)
Mysterious inclusion of deleted libraries
Line following and obstecle avoiding
Hi everyone, i am new and trying to remove keypad code and want to use normal push button instead
Help needed in making a scrolling text
When will be Student Toolkit of Arduino available to buy?
How String Hex to dec
Data logging shield from TRU components
Connectivity between pins but one pin may have another signal
Suggestions for using arduino mega to power multiple devices
Timer in an if statement
Arduino control voltage up to 100V
Sensor design with arduino
Mega and external PSU
Huge Error on build
HC-SRO4 code problems
ESP8266 code merge
Problema en programa del casco de iron man
Code getting me crazy
Reset needed for sketch to work
Brownout detector was triggered , rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
Is it possible to execute a binary from LittleFS on ESP8266?
I have a problem using the PIR sensor
How Serial read work any explanation
How Serial read work any explanation
Nano 33 BLE beacon advertising
Wire write buffer duplicating problem
LCD and Max7219
Enter the i value into href= tag
Desactivar alarma en arduino con un boton fijo enclavado
Arduino Master Modbus Rtu max485
Bool functions?
Why my arduino leonardo not working with bluetooth module , However this same code is working with Arduino UNO, Plz suggest me changes
How to sense activation of a magnetic reed switch
Can't get anything to work
Partager ses projets Arduino efficacement
Corriente por pines digitales y analogicos
Cronometer in binary
LoRa module long delay
PIR Sensor and Button Relay Control
WiFi IP in Uno Q problem
Proyecto de robotica
Help with lcd interfacing to arduino nano board
Error: expected constructor, destructor, or type conversion before ';' token. Error is occuring at void_mStop
Is it possible to print on one line only?
What relay to use?
'lcd' was not declared in this scope. Plz help
Ethernet Shield 2 not working on Arduino Mega
Mismatch at byte
Running code on a controller that isn't plugged into my PC
Control 12V Solenoid with Nano
TFT_Touch_calibrate_v2 example with 800x480 touch screen
Print distance and speed on one line
Powering Arduino Uno with DC12v
Suggest parentheses around comparison in operand of '|' [-Werror=parentheses]
Compiler bug ? Nonsensical result
Trouble with batter and dc motor
Leanardo + USB Host Shield Mouse Problem
Arduino Serial Plotter Not Displaying Negative Values for EMG Signal
Help with running Dobot offline using Arduino Mega 2560 and LOGO!
Wire.read() not updating on Arduino Due
General Guidance and How to use the Forum
Stepper motor stops every revolution
About looping an action for certain time
How to structure my code
2 analog values to one digital pin
How to handle an USB device?
Again on Arduino Due and a working LiquidCrystal_I2C
Issue with button presses displaying on serial monitor
1 dc motor, 1 servo, 2 nrf24l01 doesnt work, please help
Help with activating a Solenoid from a sensor
Transferring image with infrared communication
Konica minolta bizhub c25 With Arduino Uno
Variables and constants in RAM (global, static), used 29640 / 80192 bytes (36%)
Sorting through code from Fiverr programmer
Lcd and rtc project
Digispark Attiny85 İnstall
Sending user to diffrent pages from same page
Maqueta de habitación con sensores
Making a fountains show with Vixen 3
I have a problem with my code it should be a water shooting robot by gravity plus mapping
Help identifying a starter kit
Arduino Nano -Erratic Analog to Digital Conversion
NeoPixels not lightning as programmed, it code or circuit?
How do I do scrolling text on a 5x7 LED Matrix
Self balancing project
Greetings! I need help for wiring and how to code MHZ19B co2 sensors
Unable to install library: grbl-master.zip
I2c Write issue on ic ch455
Arduino freezes after 30-90min
SD card + SIM800L failed sending
Arduino project - connection problem
Help for understand the operation of the circuit
Some LED Trouble
MeArm (servos) controlling little problem
Urgent help(stepmotor and DHT11)
Arduino Mega and Magnetic Tape sensor
MODBUS library to read / write the for coil or relay output
Controlling a stepper motor with 3 programs on 1 Arduino Uno
HELP! How to split data on multiple distance sensors?
Please help with sending and receiving data through hc-06 bluetooth for android
Arduino connection to a coin-operated device
About the problems encountered in using the Ds1302 module
Problem whith I2C digital potentiometer MCP40D18
Stepper motor distance control
Integrating servo with Bluetooth module
How to control RGB LED with push switches?
Why my Servo does not turn?
Basic alarm system activated by keypad
Trying to adjust intensity of coin motor vibration
How to program 3 ultrasonic sensors?
Programme with Led
Connecting my Arduino with Win cc tia portal using RTU protocol
DC Motor Control with IR Receiver and VNH2SP30 driver
I am trying to connect MPU9250 with my Arduino UNO and I am getting this error while uploading the code
Flash Arduino without IDE
Input LCD 16x2 name and surname
General Guidance and How to use the Forum
Why my RFID module is giving access to every ID card of my college students
A fatal esptool.py error occurred: Failed to connect to ESP8266: Timed out waiting for packet header
Receive error message while loading sketch
Servo Motor controlled by inductive sensor <HELP>
KalmanFilter Error in Arduino
Digital camera with Mega and OV5642 Arducam
Mcp4725 rectangular pulses
My kid created a new design of "LED Bar Graph"
DFPlayer suddenly behaving strange - plays first track only
ESP 32 16 channel relay control ?
Problem to link my variable inside my dashboard
Radar project, code error
GIGA R1 error message
Communication Issue between Arduino and Python Script in Jupyter Notebook
Arduino Cloud Scheduler responding to UTC time instead of Local Time
Serial monitor prints 2
Data section exceeds available space in board (tinkercard)
Making an Ultrasonic Anemometer Using Just 2 Ultrassonic Sensors (HC-SR04)
Need help with a switch for a led timer
How to interface arduino (any ) to AD7156 and get the average capacitance value
Problem uploading code to esp8266
Problema con pcb y ATMEGA2560
Parallel Arduino Mega2560, transmitting Temperature to display on LCDs
Display gradient lcd
Expected initializer before setup
Looking for code
Looking for code
Arduino Noob Code
Counting number of times a set of LED's flash
Joystick.h - Can I change the button count on runtime?
Help for an high and low on a pin
RTC Gives wrong time after few days
Automatic curtain code review for improvements and potential pitfalls
Esp32sim7000g manejo de sd
Busy Timeouts using Wavwshare Board
No crypto present
Using OLED and rotary encoder on Micro
Code to detect radio waves not working
How to turn a light if the buzzer makes a sound greater than 500
Can we reset the on/off delay timer in arduino code
Joystick button, EEPROM, servo motor
Fitting everything in
RC car custom made
Esp8266 stops comunicating
Controlling Ledstrip using Wifi
Writing to LCD (20x4) with SDA & SCL
ADS1015 ads.begin() and serial monitor not working
Pestaña desaparecio del lugar que frecuentaba
CH32V003 - Analogwrite()
Finding beam deflection in a Wheatstone bridge using a single strain gauge
Error compiling for board LOLIN(WEMOS) D1 R2 & Mini (with Telegram & WiFi)
2 potentiometer 2 stepper motor and 2 switch
SPS30 & SD DataLogger
Compiling problem
Photoresistor and Actuator Extension and Retraction Project
Google Coral Dev board
Trying to convert Int to string so Oled will display it
Maqueta de madera, placas arduino, esp32
Help with compiling
Relogio (watch)
Sending data from arduino to processing is not working as intended
Esp32 error no core dump partition found
I have problem in automatic transfer switch it doesnt update pins on arduino nano if i run when main supply is on it display supply but donot update
64x16 MAX7219 LED DOT MATRIX DISPLAY
Arduino and Photodiode Array Sensor
Controlling a Servo Motor with a Push Button
Arduino motror controller using interruptions
My esp32(wifi and bluetooth) is not connecting to the arduino ide
433mhz Transmitter and receiver without library
How do you code a Bitmap Image
[SOLUCIONADO] Problemas al subir sketch a Arduino Nano V3
Code explanation pleas
How to add Code to your question?
Can't open device "\\.\COM3"
Gps Distance between 2 points (FLYSKY SENSOR)
Wemos D1 Mini Pro to Hilitand MOSFET board
Traffic lights for emergency vehicle detection
Motor driver and test circuit with arduino
Unclear error in code
Melody with delay
Need help with drawing part of an image
Arduino CanBus data HEX to DEC
How do i make lcd wright a variable
I don't know what's wrong with the code
Split code into files
An arduino telescope
5v Relay not taking input from MKR Wifi 1010
Gimdal by arduino nano
LCD 1602A totally unresponsive
Hall effect sensors with a mega 2560 and a relay module to power solenoids
Arduino COM port problem with PICO and PICO2
Alimentar 3 servomotores
Using rotary encoder and serial monitor
Create an Temperature controlled Relais - Help appreciated
Pre-compiler bug or compiler bug? If defined does not work
Arduino USB Host and Barcode Scanner
Home project, def not an expert
Problem with LedControl library
Triggering 5 millisecond pulses part #1
Ultrasonic sensor troubles
As5147p hall sensor
Temperaturelogging
FastLED WS2812B ATtiny85 color change with button
Can A4988 driver run any stepper motors in its voltage range?
Adafruit custom keypad / EEPROM issue
Trettenit electroniqu
Questions about reset the Arduino bootloader on the Nano ESP32 s3
"Error Initializing MCP2515..." using coryjfowler lib
4 stepper and 2 servo with CNC shield
Serial communication between esp32 and arduino mega
Connection between Raspberry Pi + Arduino + Relays gets lock up
Mbed_BLE_HID.h - Eclipse
Arduinio stuck at home screen
8x8 Font editor, for MAXduino type fonts
Msp430f5529lp double click
Ardunio automotive gauges
Connecting a controller to an remote controller
I need help my project take so many erorr pls say me What am I doing wrong? :)
Email Trigger with Timestamp content
Error quemando bootloader
Can someone help? I am new and I can't seem to get my functions to work an compile
ESP32 code for Digital lock
Else without previous if PLS helllpppp
Rc522 disable when bike starts or horn blowse
Why do all LEDs turn on when I plug in my Arduino
How to control heating rate?
Issue with Accessing "ESP8266 Sketch Data Upload" Menu Item in Arduino IDE
Code isn't running
Help with a project
CAT5113 Digital Potentiometer
AT Commands Not Working for HC-05 Bluetooth Modules
Communication between RS485 module and esp8266
espALEXA port 80
The will to help depends on how you present yourself - egoistic demanding or engaged having done the easy things yourSELF
Different serial communication with R4
ESP32S3 With Waveshare epaper
Need to control 37 digital I/O pins with different states at once
Arduino no registra huellas
Modbus over Arduino
Arduino relay code for 14 in 5 timing
Stepper Motor not rotating (oscillating) in a particular range of speed (100-150 RPM)
How to show my random time on my 4times 7segment display
Servos going crazy/ possible incorrect code wording
Arduino robot problem
RPM measuring using proximity sensor
Arduino Uno Starter Kit DS1307 Problems
NTC test circuit
How to show data from a sensor on the serial monitor using arduino WiFI and mqtt broker
Unable to communicate with uno on serial
Problems with code in python
Trettenit electroniqu
Error in interfacing robot car speed using speed sensor LM393
Control a dc motor with PID control
how to program new buttons using an existing sketch
Lcd does not name a type?
Arduino Uno not pls helpworking
Attiny 1634 with microSD card libraries
Various troubles with CNC
2 servo motors with different rotations
Joystick and led
Connection problem with my PS4 controller
Exit status 1 on arduino UNO board
Countdown timer misbehaving
Teyleten Robot Mega2560 + WiFi R3 USB-TTL CH340G ATmega2560 ESP8266 Memory 32Mb
Servomotor Project 5 (edited)
Stoping rgb sensor at specific rgb value
Transmit Arduino Sensors Data to Nodemcu using RF Module Transmitter & Receiver
Do have any idea about this ?
Error compiling for board NodeMCU 1.0 (ESP-12E Module). for MS5837
Showing DS18B20 temperature sensor data in Nextion screen
Bionic Arm for my physically disabled teacher
Design and implementation of a surveillance agricultural robot
Uploading error in Arduinodroid
Expansion Board Kit for Arduino UNO
Switch Always reading as high
Led pattern using push button to turn on all leds problems
Nrf24l01 does not show all characters in the receiver
Request for member 'startsWith' in 'Serial.HardwareSerial::read()', which is of non-class type 'int'
I want to interface with Chinese Temperature & Humidity Module TTL level Serial Port with Arduino
A 50m laser range finder module from Elecbee
Trouble with receiving GPS data on UBLOX Neo-6M
Adding delay using counters in arduino mega
Error code in setting up
Overheating FETs
Bluetooth problem, please help
Error uploading cyber falls code to nano
Puting stuff on a grove 128x64 oled
What'svthe problem here
Need wiring diagram for 5pin LED strip
Completely new to arduino, please help
Arduino music instruments
Sistema de monitoreo de calidad del agua
Sketch Upload not possible on ARM Cortex-M0 Processor / SAMD21 Board
Button-sketch error. "expected primary-expression before ','token
Using motor position inputs (via incremental encoder) to control output signal to mosfet driver to drive motor
I want to activate an output when my esp32 cam begins streaming
Passing steering wheel control signals via I2C
Fjern aflæsning
Working with Remote
Change element in HTML page hosted on arduino
Sensor de calidad del aire
Error with the Arduino Serial Monitor
Touch Paint! Couldn't start touchscreen controller
Communication between MFRC522 and an ISO 14443-4 Tag
Stepper motor with IR sensor
Probleme with SP610 Pressure sensor
Stable Multiprocessing README
'D8' was not declared in this scope; did you mean 's8'?
How to connect ws2812b leds in strips
Controlling stepper motors speed Help
A special build
Board disconnects from Serial Monitor after upload
The OLED Display on SPI communication Stops working after using pulse oximeter library
Fire fighting robot
Avrdude: ser_open(): can't set com-state for "\\.\COM7"
PCB Design Feedback Request: ESP32, SIM808, and Sensor Integration
I want to turn on the gyro sensor of Arduino Nano 33 BLE and make a program that transmits information to the nRF connector
Two Injector Banks Timing
Personal Safety Keychain with Mobile App
Void value not ignored as it ought to be error
Programación de alarma
GSM Module - SIM800l and NEO-6M Gps module arduino code not working together
ESP8266 malfunctioning
Hc05 Bluetooth communication got 2 second delay
Is it possible to make the DC motor turn at a slow speed?
Arduino controlled 70s electronic percussion board
I need to find the error in this system, I simulate and display on Virtual tesmial is wrong, talented people please help!
Why is my circuit not working?
Conexión Fallida Arduino Nano ESP32
I want some advice
AT commands not responding
How do I find two part harmony notes for 8 bit songs
Can't call function in void setup()
IR sensor signal detected by different pin from the one connected to
Adafruit NeoPixel won't output a solid color
Pantala LCD 20x4 con cuadros negros
PWM for LED not working
An initial blink issue
I want to send array from processing software to arduino
No se guarda el codigo en ARDUINO UNO pirata
WS2811 LEDs aren't doing what I think they should
When board powered up led turn on for 1min and meanwhile when button pressed turn off it immediately
Invalid Library ESP32-cam
How to use the updated Arduino sketch book
Arduino Uno no conecta windows 10
Value of Array of Custom Classes Doesnt Change
Including another library breaks LEDController
Using arduino to make an oscilloscope for automotive use
Hoverboard Arduino flysky
Problema con lectura de dos sensores max6675
Arduino bluetooth hc-06 car
A mi me sigue saliendo OFFLINE en el Arduino IOT Cloud
Arduino bluetooth hc-06 car
Arduino uno connect to usb 3.0?
Can you please explain this code give below?
Water pump crashing system
Please someone help me
Arduino Uno - Windows 10 - Driver - Error
PIR sensor output toggled always even noone near to sensor
http.begin("http://192.168.100.5/NodeMCU_RC522_Mysql/getUID.php"); //Specify request destination
I have 3 separated codes for my project but when i try to make them together i keep getting no sense errors that didnt't show before
ESP Now on Uno R4 WiFi
Failed uploading: uploading error: exit status 1
Window comparator
Beginner with Grideye, examples not working
N424l01 wireless fireworks ignition system
Hello World problem
Need help: my code dosen't work on my uno
Advice on new renewable energy technology
AccelStepper Cancel moveTo
ESP32 Bluetooth does not reconnect after multiple connection disconnection
New with ethernet enc28j60
If I change the delay time, code not working
"PWM vs. Full Voltage with Gear Reduction: Which Yields Higher Output Torque?"
Interactive menu code little problem
Voltage measuring resulting in wrong outcome if anything else uses power
Hola soy nuevo en esto y necesito ayuda. Me hace la función que quiero pero al momento de hacer el print hacer varios ala vez sin presionar el botón
Please help me write the code
Question about IR Thermometer with 2 Line LCD on Uno
Not able to send CAN messages-Need Help
Please how do i solve this?
INPUT_PULLUP not working
How to create threshold and show a value?
Timed servo door for chiken coop
Issue with nRF24L01 module and arduino uno
Timer using registers
Arduino curcuit keeps freezing
Using a Benewake TF mini plus Lidar to create a 3D point cloud using Arduino
How do I make my Mega 2560 check if something has changed ten times a second?
Is arduino mandatory for L293D motor driver?
How to Read Speaker values from some device to use as if function
I have Done Coding in Aurdino UNO but it's not uploading and Yesterday i have to give Presentation on my project. Kindly Please Help
I want to make call using phonebook number
I Cant figure out the issue
Load cell sketch errors
Ultrasonic Water Level Indicator Using ESP32 Wi-Fi based
Leer milivoltios con arduino
Blue LED not working
Finicky Nano 33 IOT USB (Windows)
Habilitar entrada de micro sd del módulo a9g
Issue with Using libraries
Esp32 error con pantallas y hx711
egArray was not declared in this scope
Problema con arduino y controlador l298n
Subject: Combining PIR Motion Sensor and Soil Moisture Sensor Code
Help with programming flex sensor to trigger a relay
How to change outcome if previous statement occurs
PIR sensor help part counter
I2C transmission of sensor data
Ht12e encoder with arduino nano
Using nRF24L01 to create arudino transmitter and receiver
Arduino soil moisture sensor without sensor module
Sensor and microprocessor
Iron Man Box and Loop helmet code issues
MAX31865's VDD and GND short circuit problem
I2C sensor No device found
How to change directions on MAX7219 DOT MATRIX
Changing the lenght of a millis with a potentiometer
Fatal error : EEPROMex.h: No such file or directory (Need Help NOOB)
Voltage under over curoff
PC does not recognise Arduino UNO R4 WiFi
Inconsistent pressure readings on my Touchscreen
How to controll servo via imu on nano rp2040
Please fix status of app on ios
Stepper Motor/LCD coding and wiring help?
On the Byte Limit Problem of AsyncWebServer_ESP32_W5500
Physical pin number VS Mapped Digital pin number
Bluetooth seems to work but not properly?
Adafruit 2.4" TFT FeatherWing V2
LED matrix 5 x 5 using arduino and breadboard UPDATED
Waveshare oled module is not working
Coding Assistance required :(
Error: unable to open ftdi device with description '*', serial '*' at bus location '*'
Project won't work upon being powered, but will under other conditions
No text appearing
Help understanding a complex code
Node MCU Challenge
Analog inputs reporting 14,15,16
Dad needs help Fading multiple LEDs
Measure a small current of 0 to 4000 microamperes
Turn on a pump on and solenoid valve
New user - First post !
Two data send and store database using firebase with esp8266
Different Values Not printing Simultaneously on the Serial monitor
Local Mosquito broker and ESP32 does not connect
CO2 readings via I2C not working
My code dosent work nor use any dynamic memory
Controlador PID de presión
LED light Strips coding help fade effects
Questions on stepper 28BYJ-48 to make a kinetic flower
ACS712 not accurate with a dimmer on same circuit
Direct addressing to the Arduino Flash Memory
I have a problem with my arduino pro micro
Need help converting $9.39e-6 number to decimal number please
Did I fry my tx pin?
How should i connect 3v micro gear motor to arduino?
Controlling WS2812b LEDs with atmega88
Two push buttons led brightness controller code?
LED blinking when clicking at one button
Controling relay or valve pin with serial input
MPU9250/GY-91 Magnetometer is not working
WS2812B single row scrolling Help needed
More than one button with a screen
Motor Control with D1 Mini
Arduino Cloud and User_Setup_Select.h
Int to hex char (0xFF)
Open Loop BOOST Converter with Arduino
Arduino Code is not working, Anything is Wrong with it?
Write and read char, string, int array for EEPROM
Code security with blink
How to increase the frequency of data collection per second and record the data upto 4 decimal point
Entradas analogicas dejan de funcionar
Lcd 2004A Show nothing with I2C
Arduino to be connected with ultrasonic sensor and electric horn and electromagnetic solenoid for automatic brake system
Joystick 2 servos x and y postitions
A simple controller for steppers & fans
Getting state change value from analogRead()
C# Arduino Serial read....I dont know how to read it oustide a while loop, it wont work with the rest of the code outside a while loop
Arduino cloud interfacing in cloud
Arduino uno board
Joystick analog reading values sometimes changed
Forwards and Backwards, Stepper Motor, CNC Sheild, Trying to limit void loop() from continuously looping
Keyboard text to binary output
Why void setup() is called repeatedly?
Seeking Expert Guidance for Dual-Axis Solar Tracking Robot Prototype Project Using Arduino Uno
Hello , I'm new to programming with the Arduino. I'm trying to build an interface but I keep getting this error "expected ')' before numeric constant
Arduino resets when relay turns on/of
Hi everyone, my code keeps stopping after a while. please Help!
Can someone help me with my clock LCD?
Wireless serial communication doesn't pick up signals after reset or power cut of receiver side
Corrupt data, serialport, esp8266 with arduino mega
Connecting multiple IMUs to an Arduino Nano 33 IoT
Need Help Adding 16x2 LCD function to Dual IR Temp sensors
Arduino uno storage capacity
Need help combining sketches
HC-SR04 wont continue working after one loop
Ultrasonic goes off and LCD go crazy and display weird characters when i activate water pump through relay and 9v battery
QuantAsylum QA-403
Help detecting a connector
Multichannel Gas Sensor Not Detecting Error (not compatible with nodeMCU (ESP8266) )
Hi I would like to know the code to make it count the movements of the servo motor to open the bin thanks
Interrupt conflict
Little problem with my program
Ultrasonic goes off and LCD go crazy and display weird characters when i activate water pump through relay and 9v battery
Arduino MFRC522 RFID Continuous Reading
I can't display what I want on my console
Small Arduino code consumes high ram usage in VSCode compilation
Help with esp8266 coding l298n
Question About SoftI2CMaster
General Expert Advise needed
BME/BMP280 code crashes at bmp.begin()
Dfplayer mini sound module
Identify this smd component
General question about DEMUX for 12v motor
Vibration sensor to activate alexa light
Send recive data separated by comma
LCD with i2C connected to Raspberry pi 4 not working
I connected my BLDC but it doesn't work
Serial port read error please help
Expected numeric before constant error
Using a single momentary button to advance states
Esp32 on P8 RGB LED
My toilet flush project
Want to make a circus recirculation machine for Kids
Codigo para medir ph
43 servo motors through transistors, jittering
Getting out of a cycle in a for loop
How to make a mouse work with USB Host Shield?
Help regarding esp32
Sharing Voltage Comparator that can Swing from Positive to Negative
Programming - EEPROM
HC-05 not pairing after disconnection
L298N driver heats up very much
An error occurred while uploading the sketch
Arduino y nextion editor
I want to rotate the motor for 3 sec and stop and then wait for ir signal and rotate for 3 sec in reverse and stop,but my motor rotates infinitely
Help writing code for actuator control
Several seconds of lag on serial processing
Distance measurement using IR sensor FC 51
ESP32-S3 as USB Host for Quectel EG800Q Modem (CDC Interface Issue)
How to interrupt my robotic arm using ISR?
UART in ESP32 With TMC2209
Bulgarian text on Max7219 using Arduino Uno
RC522 Authentication failed
Estacion meteorologica sensores rs485 y esp32
Water pump crashing system
Counter with arduino
Help a New guy Please
When I call <Adafruit_ADS1115 object>.begin(); my program running on arduino hangs. Any direction or advice?
Blank Serial Monitor Problem
Noob Macro Keyboard Trouble
WS2812B with FastLED shows only 1 first led
Storing and comparing SRAM memory address
Sketches stopped uploading on MKR WAN 1300 after running in SPI slave mode
Receiving data problem via bluetooth communication
Adding code to a code
New project Water tank
What code is necessary to make a potentionmeter work like a clutch?
Question about moving servo with voice commands
ESP32 as a proximity sensor coding help
Servo acting wierd, pls help
Leonardo board --Keyboard press
Conectar nextion con ESP32
Cleaning Solar Panels
Code for 2 pir and led arduino
Communication Between Linux and Arduino
Two Metal Gearmotors 37Dx57L mm 12V with 64 CPR Encoders (No End Cap) running with Arduino Mega or Mega 2560
SD card read config.txt file to get values
FastLED and IRremote
Using relay on solenoid lock
Ir Sensor + Vibrating Pad
Problems with communication between Wemos D1 Mini and Arduino Mega
Error in running code. E (2244)
Wifi connection for esp32
PIR sensor based security code for esp32
Puedo conectar una pila de 12v a 4 servomotores mg995?
LED capacitive touch sensor
PIR to Run Blink w/o Delay
Unable to get DS18B20 to read on Nano ESP32
LED's dimming mysterious behavior with Nano
Digital Stethoscope using Arduino
Designate TX pin for character transmission
8 buttons from 4 buttons and a potentiometer
Fatal error in script
Код в GPT3 AI нужна помошь ламеру ))
Arduino 2.0 IDE does not launch
XKC-Y25-NPN using without arduino
LED circuit won’t function
PMODNAV doesn't work
An New Problem Occurs in NodeMCU Check the board everyone!
Connecting problem to servo +moisture+ir sensor
Help with my urgent project
Weather Station Compile Library Errors
Hi every one I use mpu6050 for self balancing robot when I Scan the element i use this program but still shaw me 'scannig i2c devise'
Serial Communication from Raspberry Pi to Arduino Stepper Motor not working
Arduino Nano OLED distortion
Relay does not turn on when I press the button
Convert String to unsigned Char [16];
Timing between 2 events
Temperature dependent time control
Hoping to fix school code \342 error with this post
How to add button resetting angel of Ultrasonic Sensor and Servo Motor
Talking through Arduino
Arduino 2.0.0 not working
TFT LCD screen does not work
Need LEDs to reset with a timer
What's wrong with this as the picture shown?
How to measure stator current in 1ph induction motor
Me ayudan a unir estos dos codigos
Sensor ardoino cnc
No port shown in Arduino IDE for my board
Problem uploading to board
Making a children's toy for a NEA
ESP32 delay() doesn't work
I want to make the 'void AutoRun ()' and 'void Motion()' run automatically without needing input from me
Custom Function
What is wrong with my code?
DRV8825 & NEMA 17 Causing massive vibrations & inconsistant spin
Forum member 'ranks' ('Jackson' for example')
Condition to run void loop from void setup
Esp32 con modulo ch376s SPI
Cant get the mac adress from de esp32
Ошибка в коде arduino
Reducing the risolution of an optical encoder
7 segment display using esp32
Analog pins not being declared with rtc, And iostream and ctime error
Potentiometer dilemma
I get no response to AT commands with HC-05 and Arduino Nano Every
"_ledonn_"was not declared in this scope
GSM SIM900A error shown when send a message
Calculate angles
Help for using huskylens
Two Arduino Pro Micro's connected by only one USB cable
7 segment digital dice
I need help with my project
I want to transmit a 1 or 0 byte with I2C from a slave to a master
IR remote and LEDs
How can I turn on 4 leds and activate 2 servos with 2 push buttons?
Suddenly no response to FSRs in my project
RFID reader not working with LCD
Error Connecting to mySQL using arduino
3.5 TFT LCD SHIELD ATMEGA2560 whitescreen
Controlling coreless motors with Arduino via MOSFET
This library's only send maximum 48 bits i want to send 71 bits
How to program an interrupt code with automatic output pin
Compilation error: exit status 1 message on Arduino Uno
Error message when uploading the code
Ardinyo123456789
Joystick was not declared in this scope error
SSR Relay latching
NRF24L01 module
Trying to set relay up in code
Midi sysex receive problem
Control of PN2221A transistor
AS608 Fingerprint and ESP8266
How to notify email without press reset button
Popcorn coffee roaster
Can't receive signals from Flight Controller
Arduino Nano and L298n Motor Drivers Not working
Help me to recreate this master level project
Control de voltaje variable con arduino pro mini
Help With ERROR- RTC SCOPE NOT DECTED
Arduino UNO + zdm-2ha865 Driver
I2c lcd with pi pico
Nrf24l01 with many transmitters and single receiver
LCD Left Scroll on Row 1 & Right Scroll in Row 2 at a time
Measuring AC current in multiphase supply
Creating Remote Control for LED Animations with IR Remote
Point display in 4-digit 7-segment module TM1637
I2C communication with portenta breakout with I2C_0 and I2C_2?
Arduino offset from reading a mV voltage! HELP!
Arduino Leonardo Disconnecting During Sketch Upload
Can't correctly get the analogRead value
I need a code for turn on and off led with sim800L/arduino
I2C scanning (I2C scanning... )not show the device address
New to arduino, need help with this code related to ir sensor and motor
Error compiling for board Arduino Uno. (Arduino IDE 1.8.19)
Storage space please help
Need Help on my Simple Project on LED!
Heating Elements
Hi I'm new to Arduino and I'm having problems with VarSpeedServo
Arduino UNO R4 WiFi LVD
Question about coding
Board is not responding to code
DFPlayer code help
Help with Voltage to Pressure
LCD1602 problem running example code
Arduino avr platform is not installing,it is showing error 2 EOF
Inverter keeps tripping
Inputting multiple different variables into the serial monitor
I'm trying to activate different LED flashing modes via a push button
ESP8266 will not compile with ESP8266WiFi.h
Resizing a bitmap image on adafruit gfx
ESP32 Troubleshooting with DIY LED Clock
Error when compiling
How do I use RTC DS3231 to trigger a servo at a specific time of the day
How do I use RTC DS3231 to trigger a servo at a specific time of the day
Need help understanding the codes of a program
Esp32 with RTC ds1307 - do not work
Message in upload exit status 2
I get uploading error: exit status 1 when trying to upload my code to an arduino uno. how can i fix this error. below is my code
Unable to transfer code form HC-05 to arduino nano
Aliens pulse rifle assistance
Why is it possible not to declare pin as Input?
Adding more strips in one code #im really new to this
Level Gauge using led bar graph
AccelStepper Motor Issues
Issues whith serial dataincome
Compialtion error on uplaod to Arduino Nano using Arduino IDE 2.3.2
Automatic water pump with PZEM-004T
Switch case statements
Help me reduce the memory usage of my sketch
Predictive Fault maintanance project
DC motor and audio amp GND interference... help needed
Program works connected to PC but not battery/bench
How to power a 60kg servo
Why the "River water level has reach 50%" sending too many message but others send correctly one time but only this message sending too many time
Turning on & off a motor using PWM from a remote control
ESP 32 error compiling board
Nrf24l01 problem occured
I need some help in my fingerprint project
Sonicsee project, that explains to the deaf what the lecturer is saying
Why arduino mega is not port
HC-06 disconnecting when servos using
Emotiv Insight tutorial
Connect to Arduino NICLA SENSE ME via Bluetooth
Servo control with RTC on Arduino uno
Esp8266 + st7796S
When programming AT28c16 it returns all "02" in the field area
Robo r1 plus 3d printer
Stepper Motor will only go in one direction
Controlling a sensorless BLDC vibration motor
ESP32 Wifi Server Receiving Data and Acting on it
SRF08 in Arduino
Esp32 guru meditation error
How to read sensor value (analog read) from arduino to processing ide?
Problem sending UDP message
AD9833 y servomotor
My Keypad Sends something and doesnt stops
Uno HC-05 Software Serial No response to AT command
Can someone pls correct this code
I have connected my stripLED connected to a pin set as an output and I would like to control it with 3 or more pin inputs and I couldn't. Help me
ArduinoFFT library Compute returns NAN on NANO
Why does my Serial Monitor print per character to the next line?
Transmit LTC TimeCode SMPTE over distance
SIM A7670c UART communication is not working
Error while interfacing SD card and Arduino Nano ESP32
Dissolved oxygen is reading negative values
Need help with project
Can't differentiate Oxigenation sensor Max30100 and Max30102
Code doesn't even work
Hello everyone, I have a question that needs help. I am using the Ubuntu 22 operating system and am configuring the esp8266 development environment. I
Tinybee z offset
Controll of a motor via wifi (webpage controlled) - can this project be modified?
Limiting the decimal places of float numbers
Unipolar: Bipolar In1:in2 Step & Dir
I cannot compilate the code
How to use Console app in IDE2
Controlling several groups of LEDs together
Need help with Nano HC-05 project
Help me fix this error
Waveshare Barcode Scanner and Arduino Uno
Servo Motor not working properly, moves on its own
Unable to connect STM32 in arduino IDE using bootloader
SoftwareSerial - restrictions on Pins ? (Nano)
Copy from Serial Monitor - absolutely need solution
Booton box con Arduino Leonardo
Error de Interrupciones caudalimetro
Arduino Mega controlling large servo, noise/grounding issue
Reverse loop for model railway`s
Error: 'serial' does not name a type
Retraso con el puerto serial de Arduino
Linear encoder from printer, can’t get it to work
Unsure how to remove visual aspect of Processing to move project to Arduino
Problem uploading to board.
Reverse loop for model railway`s
How to upgrade SI4732 Board from V1.1.5 using Arduino IDE2.1.0 ?
Downloading code
Removing Sensor Shield V5's V-in pin
Control Arduino Pins from C/C++ program on PC
Thermometer missing files
My code is not working it is not upluding to my arduino nano
LCD light up but did not print out anything
Windows could not find drivers for your device
Detect key press while running algoirhtm
Please modify the code , stepper motor rotate one direction please modify the code ,when pin 4 ON then stepper motor rotate backward direction
Error on uploading code
Cannot upload to Arduino Nano
How to power an ESP32-S2 AND 2 Motors from the same battery
Upload Error
What Kind of Motor Is this?
LCD will not print when it is inside an if loop.
MKR1000 Port disappeared
Problem with firmware
New PC: Setting processor to "ATmega328P (Old Bootloader)"
Arduino unable to upload code
Whyy can't our location tracker send a message to the phone number registered?
Find detailed information about the fuse bits of the ATmega 168 microcontroller
Is the 5 Volt Pin of the micro short-circuit proof?
Help/Thoughts on project
Nano+servo stop working
How to print the content of char array?
Ctcss issue with code
Need Help with Arduino Code Errors
Can bus project /// i need help
Voice recognition module v3.1
PCA9685 driver issue
Servo speed HCPCA9675
Interfacing Arduino with the the adc mcp3461
Low battery indicator
Attiny841 Bootloading Issues with Arduino Nano
Issues integrating a stepper motor with a Arduino Uno
Officially ban ChatGPT and AI
ModbusMaster library. Poor performances?
Combining IoT Variables
IRremote.h allwasys give FFFFFFFF
Serial monitor not displaying anything2
Combine Sen0321 and bme 280 but can't get the data
IDE hangs on startup: "terminator_CreateInstance: Failed to CreateInstance in ICD"
Esp32 rfid real time to mysql
How to Fix this Arduino Car
Unable to flash ESP8285
Initialization of the optical flow sensor (pmw3901) failed
Putting Arduino under snap on UBUNTU
Coin acceptor problem with false pulse reading
¿Puedo alimentar mi ESP32 con un regulador 5V - 3A?
Control temp. Meter
Help Arduino Compilation error: expected initializer before '.' token. Can any body help me with this
Motor goes on forever!
Solar charging assistance please
Connecting arduinonano via UART to tmc 2209
How connect 7 semgent display on ATMEL
Error while compiling: "undefined reference to loop"
Help for making a remote control car
Brushless motors
Arduino Nano ESP32 no output voltage
HI I'm new. I am working on a iron man helmet
How to install https://github.com/esp8266/Arduino in to Arduino IDE
Prototipo de Guante para no videntes
Hilfe bei einem sketch,, Problem exit status 1
Keep Frying Boards!
ST7735 touchscreen issues
Joystick jitters
[solved] One column on keyboard dosen't work right
Countdown time using TM1637
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
Gpio pin not turning on
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
Linear Actuator setup help needed (time delay)
Error adding floats
ESP32 TTGO TFT_eSPI TDisplay
Input activates when touched
Suggest me a budget-friendly soldering iron & SMD station for prototyping IoT device , soldering QFN, BGA etc
"While" Command
Feedback on PCB Design
Measure pH, conductivity, temperature, humidity, nitrogen, phosphorus, and potassium using the JXBS-3001-RS485- SOIL SENSOR
Exit status 2 error message Arduino IDE
Timer program not working properly
JuncTek KG-F Batterymonitor Library
Help to continuous run the ultrasonic even the car was turning right or left. Becauses when the car is turning right the ultrasonic is stop scanning h
My code does not work i'm working on making the piezo buzz and led to light up, whenever my servo turns
I need help to modify my code
Connecting a motor to an HMC5883L type magnetometer
BMI160 board orientation problem
Need Help Writing Code for watering system
Arduino on comX but cannot choose port through Arduino IDE
Laser tag board paired with Arduino
Lavado LG inverter
Giga R1 /Display bundle
Coding Help! Project with IR, Servo, DC motors and ultrasonic
Hi guys, need help with code for stepper motor and keeps coming up with stepper not in library
Arduino uno Keypad with lcd password project
Arduino-project with color-sensor and rgb-led
Proximity and light sensors Amperk VL6180. Incorrect work with the multiplexer
Transmit on power up
Frustrating not being able to fix "A fatal error occurred: Failed to connect to ESP32: No serial data received" error
Code Arduino Not Working
Codes for Education Starter Kit - HELP
Arduino Uno resetting itself in specific situation
Connecting Arduino r4 with thingspeak to transmit data from sensors
I am having error. "Compilation error: redefinition of 'RH_ASK driver'" Any suggestion ?
Windows doesn't recognise my arduino mkr wan 1310
External power for Sg 90 micor Servo motor
Void value not ignored as it ought to be
MODULO CH367s con ESP32
Document forum post markup
Saving stepper motor position with corresponding RSSI value
Arduino Code 5 motors with 3 boards LN298N and ESP8266
I'm having trouble using a TCS3200 Color sensor
Arduino Code 5 motors with 3 boards LN298N and ESP8266
Determine the transfer function of dc motor of an arduino?
Problemas na programação
Interfacing HB100 Doppler Radar with Arduino
Programming error
Why I need to use write() in here
Elegoo smart robot car kit 4.0 with camera
To receive a GET request from an NGROK tunnel on an ESP32
I'm having trouble reading my sensors reading
Please Help Me With the Circuit System
I got ban from the discord without any reason because of an angry mod
TensorFlow Lite Micro on Arduino Uno – cstddef: No such file or directory compilation error
Optimization Help for Ohmmeter with Modbus and OLED Display on 16 MHz Arduino
Servo library problem
Auto sensor switiching
Help on Building CNC using Arduino Nano + CNC Shield v4
Why Is My Arduino Code Not Producing the Expected Output?
PC communicate to arudino via the usb
Is there a best pin's for thermistors?
PPM Sensing Issue
Sensor npk with esp32
Automatic Cat Feeder
Esp32 WIfi manager auto connect and send sensor data
Flex sensors problem with arduino uno without breadboard
LD2420 Not Working with Arduino
Sequencing Events
Heat measuring device
Help me to convert this fuzzy rules into Arduino IDE base on code i found on web
Control Relay With RF Controller
Sim 800L false trigger
Trouble with SPI on custom PCB with SdFat
Sensor for car lift
How to connect my mobile device in arduino cloud?
NRF24L01 Module Not Responding - No Output on PrintDetails() or Serial Monitor
Instrumentation project
MCP23017 Not Working
Two L298N and 4 Linear actuators
MAX30100 sensor does not work
Esp-wroom-32 doesn't connect to arduino 2.3.1 windows 10
USB MIDI from scratch, how?
Fsr + servo motor
My Motors work differently
Problem with IQS7211A and ESP32 while using Wire
Plz guide code that Aruduino MEGA can read from ADC converter
The stepper motor spins only if I touch the STEP pin on the driver A4988
NodeMCU esp8266
LCD + Water Senser
Hid device programming help
Unqualified id error message
Arduino cloud iot master slave
LCD + Water Senser
Control 2 servos, 1 pot
RC combat wing servo mixing and hardware
Can I use another bracket inside a delay bracket?(Solved:nikoexcited:)
How can I check the output of my code using Arduino IDE and ESP8266 when I want to display the data to a large 7-segment LED
Comparator not working without Serial.Print or a delay - but works in other areas!
Arduino and AD5206
Multiple steppers with ContinousStepper.h library
Problem Connecting JXCT RS485 Soil PH sensor to Arduino Due using RS485 to TTL Converter (Two Way Converter) Transceiver XY-485
Aplicar Tarjeta Arduino letrero de despalzamiento led
Aurdino Skipping some statments in the code
Bend labs digital flex sensor 1-axis setI2Caddress
Portenta C33 I2C Not working with SparkFun VR IMU Breakout - BNO086
LM 393 thermistor module code
PWM on Piezoelectric sensor
Best way to optimize Arduino sensor data logging without losing readings?
Esp 01 void setup not working
DS18B20 Strange Behaviour Using One Wire
Problem trying to publish library
Demultiplexar en CD74HC4067
Arduino UNO R4 has been released. Do you know when these development boards were released?
Envio de tramas por UART de forma incorrecta
Lora BLE bridge
Guru Meditation Error : Alarm codeing
3 floor elevator
Making MP3 file play through speaker using ESP32 and RFID-RC522
UNO R4 ADC resolution
Controlling a 3-Phase Brushless DC Motor and Motor Driver
Radio frequency modules reliability
How do I connect to Bluetooth 5.1?
IR Sensor operation
Creating enhanced solution for bicycle-based warning system
Why can't I connect my IR Remote and my oled
Error compiling my code
Arduino Code Assistance
Favor problemas en la conexion Modbus-Siemens
Arduino uno step motors
Detectine raindrop and notification me
Error expected unqualified-id before 'if
Content is deleted
Four micro linear actuators simultaneously control in the opposite direction
Datalogger visual studio
Voice recognition v3.1 no se entrena
Using an IR to control multiple LED strips for a scoreboard?
Compiling error windows 11 - only !
Which arduino nano clone I have
Como alimentar mis sensores?
Problem Adding Additional Transducers to Single Set
Bad Sketch Prevents Programming in Arduino IDE
Problem with ArduinoJson and UniversalTelegramBot
How to subscribe to multiple topics at the same time in callback when using pubsubClient library?
Weather station project
Help not irritation
Request advice on amplifiers for an illuminated wireframe
I want to turn off the components after 5 seconds if the distance remained constant
Controlling seven relays one by one
Need help for uploading
Dim single color LED strip not working at max brightness
RC522 RFID Module not working
BT car project kinda working
Folders Name Customization in DF-PLAYER-MINI — The MP3 Player Module
NRF24L01 issues and won't work for whatever reason
Halloween Eyes project issues
No se de que sale el error
Flag led matrix
LCD I2C Glitching on loop()
Uno to Nano 33 BLE code issue
Ac motor speed control
Application Image
CH32V003 Timer Issue
Send RFID Reading to phpMyAdmin
Send data online using ESP8266-01 and arduino every 2 hours without using delay
Flickering too much ... help! SSD1351 128X128 RGB OLED Arduino UNO
How to feed data to multiple i2c masters
Keyboard open source program
Controling servo speed by slider
Are there websites or apps that support LoRa Shield for Raspi and Arduino?
MAX30102 led is not lighting
Ds3231 does not save when power is cut
Esp32s3 video server with motion detection and sms notification (sim900)
How to handle receive interrupts with ESP32 microcontroller and MCP2515
Arduino data to Siemens PLC
Intento de controlar Matriz 15x5 WS2812b
Building a Time delayed winch
ESP-01- esp8266 + Ch340c does not work
Help me Control temp system
Need help publishing data from thingsboard and receiving it on arduino
Having problem uploading to board Arduino UNO R3
Issues in server.begin
Star delta connection with display
No Output from digital pins
Trying to use a rotary telephone handset as input
Can you control 4 LED strips (WS2812B) with the Arduino Uno?
What to do while the error occurs What to do while the error occurs while connecting lm393 speed sensor via arduino and Arduino IDE 2 2.1
Simulador doppler fetal con arduino Uno
MQTT payload comes with extra stuff from Home Assistant
Why does it show me this when I select the arduino uno that I am connecting with my wire
How many components can be connected to arduino uno?
Problemas con Attiny85
Help me finish writing the code to a working state
Arduino with 7-segment display and potentiometer and display is flickering
Can't Break From While Loop
Arduino Mega+ESP8266 ESP-01S sending data to Google Sheets
[closed, it was a hardware problem] About Shield motor driver l239d
Incompatibility with BluetoothSerial library on LilyGo T-Display-S3
Ws2812 troubleshooting
ESP32 - What board package is used?
Very new and making wireless and remote controll stuff
Arduino does not open on Macbook M2
Can I program Megawin MG82F6D17 Microcontroller with Arduino?
Digital read from switch not working
Arduino uno da yeniyim şu hatayı alıyorum
How to calibrate adafruit icm 20649
Water pump and strain gauges with arduino
How to get the best out of this forum
LCD I2C doesn’t display words
Mystery exit status 1, without comment, building from source
Azimuth and elevation angle using solar tracker
Negative pressure, no response to touch on X/Y axis ILI9486 ESP32 [SOLVED]
How would I read the current from a moisture sensor connected to a analog pin in arduino?
Need AT Commands for RTL8720 bw16 module
Esp32 camera connection with arduino
Avrdude in uploading the code with FTDI
Help Using STEMMA Connector on Adafruit VL6180X
Arduino R3/WAV trigger digital pin output
Ivalue required as left operand of assignment
Using servo/bluetooth/sensors with different timer
Exception shown in Serial Monitor when running sketch on ESP8266 board
Hola buenas, quisiera saber en que parte el codigo esta mal redactaeo o donde hay un problema, ya que no encuentro el error
Cannot Resolve Include Paths in PlatformIO for GuruxDLMS Library
I2C Magnetometer and Encoder conflict
Program not running
Adding delay to sensor
Solenoid Valves
I have just a little problem
White screen issue ILI9341 2.4 Inch TST
16*32 RGB LED matrix display issue
I dont know if my arduino uno is hitting code limit or power limit
HELP! Simple MIDI Buttons and LED's sketch
My two hour delay code only delays seven minutes
PCF8575 expansion board input not pulling up
How to eliminate the VFD noise affecting digital sensor reading?
Animatronic pianist wolf with 7 motions
Arduino Nano Every and bluetooth module
Arduino Uno with IR receiver
Hiwonder ackerman servo not turning
Enviar caracter dependiendo del valor de giro de sensor mpu6050
MAX7219 not responding?
Im having trouble with downloading the Agent and With the port connecting for the hero board
Serial communication help between 2 Boards SOLVED
Ui for arduino uno
I need a help Arduino UNO setup of 4 microphones, sound delay, data recording PC
How to fix ku8MBResponseTimedOut
Buzzer working fine when i use 2.0.3 version but does not work when i use 2.2.1 version of arduino
Adopting to 2.3.3 from 1.8.19 of your program
Adopting to 2.3.3 from 1.8.19 of your program
Using code to adjust I2C LCD
Please help Instructions on HGC Laser distance sensor
Arduino <--> Raspberry PiCM4 Serial communication very slow
Failed connecting Arduino nano to MP3 player module
Nearly SOLVED Using While function is only giving a partial answer
Arduino Leonardo DIY Steering Wheel
Electromagnetic wave detection sensor
Faster BLE throughput
Energizing two arduinos
Arduino UNO pin 2
Bts7960 driver with arduino
What is the process for fixing bugs in a board package?
Unable to upload sketches to UNO
RTC (Real Time Clock) with MKR WiFi 1010 and MKRIoTCarrier Display Display
Github Archive for Arduino-28BYJ-48_Stepper-Motor projects
Wake-up light arduino need help
Using odometer in Ublox M8Q
Uploading issues
Node mcu and mobile not connecting
My serial monitor does not display anything - Arduino 2.2.1
2.4" TFT LCD shield ST7789V with Wemos D1 Mini (ESP8266)
Did save as now get this error
IoT weatherstation
My line follower robot motors not working
The forward and reverse problem of the two automatic doors with DC motors and limit switch sensors
Help with running stepper motor with motor and power shield
analogWrite function is not working in Arduino ver2.2.1
Give a static string to VALUE widget using sketch
Motorized wheelchair mod
¿Cómo sé si mi placa arduino esta dañada?
Using push buttons to display two different scrolling messages
Flasher relay to my car
Expert in arduino coding
Speed control of 24V DC submersible pump with arduino
Why are my code wont working
Elegoo IR Receiver - unexpected output
I have 7 segment 2 display 18 pin
Compilation error: redefinition of 'NewPing sonar' for Obstacle Avoiding Arduino 4WD
Relays its the better option for me?
PCF8575 cannot control relay switching
ESP32Cam-MB Issues Uploading
2x18650 v8 battery shield
Servomotor with button
Button on midi controller keeps hanging/ stops working
New esp32 not working !help with esp32 flash !
Initializing Adafruit_SSD1306 parent class passes arguments by reference in constructor
Modbus RS485 communication Through ATMEGAmega2560p
I got an issue while interfacing steppermotor nema 17 with esp32 using ir remote
Implementación Educacional Kit Arduino
Oled 1.3" SH1106 I2C display issue
Fingerprint not showing up whilst checking in serial monitor
How to measure the most fastest way?
Can someone help me
Using HC-05 module
Close relay1 with Alexa and water flow sensor
Arduino Uno grounding/wiring incorrectly?
Arduino Uno WIFi board not reading temperature sensors, but other boards do
Installing .ZIP library doesn't work
Connecting SD Card Module to NodeMCU ESP8266
Arduino crashes/freezes
How to power and control multiple 12V DC cooling fans using PWM signal
Combine multiple state machines
Robotic arm not working
I need help with transferring a code from arduino uno to esp32
ESP32 with USB Camera
GY 33 - TCS34725 Encendido de leds?
Problemas de conexion entre el Arduino uno y el Esp-01 (Esp8266)
IoT Based Soil Nutrient Monitoring
Program problem
Lcd display 128*64 blue display
Error when uploading code to board
I can't write or reopen my file in sd card
Adept smart car for Arduino
Buttonbox Polska :'[
Built-in orange led flashing 4 times fast and 4 times slow
Help me describing stop motors in the scope
A question about arduino programming
Native serial port
Opiniones Sensor Halisense NPK
Proyecto Arduino necesito código
Arduino UNO & RFID-RC522 - Communication Failure
Wemos D1 mini - HC-12 Mhz Module
Wemos 2560 sketch upload errors
Joystick Shield and HC-05
Which Arduino would be best for a Quantizer?
Oled display sh1106
Questions on the stepper_oneRevolution example
PRND321 indicator
What would be the easiest way to sense a 110vac pulse?
Arduino to DWIN Display Serial communication issue
Problem uploading in IDE
Visibility calculation
ESP32-C3 SuperMini port doesn't show up on ChromeOS machine
Encoder not working on Leonardo
Resolving Error "Error compiling for board ESP32-WROOM-DA Module"
Connecting two arduino boards by SPI
Smart Vacuum Cleaner Project,communication between esp32 cam and ardunio uno
Me sale un error al cargar un programa en Arduino Nano RP2040
Using RS485 with an analog voltage sampler (R4AVA07)
How to control a servo not by its position but by its speed ?
Lightsaber Sound problems
Hepl me thanks Compilation error: incomplete type 'std::string' {aka 'std::__cxx11::basic_string<char>'} used in nested name specifier
I2c 0.96 oled display
Connecting arduino mega to computer via ethernet module
How would I go about sending a "Yes or No" prompt from my Arduino Uno to My Phone?
What does "expected unqualified-id before '{' token" mean?
Check if wiring for ESP32 C3 is correct
Stepper Motor delaying other tasks for a long time
Does not name any type arduino code
16 x 2 LCD half side not working, 8 out of 16 blocks nearly dead
Discord mod abusing power
l298N motor controller
Tilt Compensated Compass for Arduino Nano 33 Rev 2
Build a project with a humidity sensor and LCD screen. Get the data from the humidity sensor and display it on the LCD monitor as follows: If the hu
Invalid Header File TinkerCad
Feedback Wanted – Improving Arduino Shopping in the UK
Multiple 12v inputs
Fuente dc variable y fija
Step counter in LIS2DUX12 chip
Error compiling for board Arduino Uno
Small project with NEMA23 and load cell
I need help for building arduino circuit
Arduino midi project doesn't work
¿Cómo rastrear un objeto precisamente?
Hello, I have this error so that my camera can have the IP address for me to see please help me
Editing Arduino Library Files
Sensor de turbidez en ESP32
Dheeraj Sudan Meenu Hinduja How to pass arrays by reference?
Morse code transmitter project not working buttons lcd issue
Topics using IoT
Porque no funciona sin USB a la computadora
String manipulation
No connection NANO RP2040
Help with connecting stepper motor with encoder
Arduino Nano, solar tracker stop working after a while
Nano 33 iot no se conecta y desconecta del puerto
Keyboard emulation
Coding error needed help ASAP
Searching through arrays
Help with minimum amperemeter when using dynamixel ax12 a
Voice recognition V3.1
I2C communication, controlling how fast can be, using MCP23008
Arduino uno never finishes uploading
Elevator project
Nema-17 running Slow
Camera OV2640 with Arduino
Uploading code to ESP
My problem not solve
DS18B20 temperature sensor was showing bad readings. They are above 900, i don't know how convert them to celsius
I am doing walking robot. i wrote my ardunio ide code. but i give an error called "exit status 2, Failed to connect to ESP32: No serial data received"
Un-predictable values of MPU6050 sensor
Couldnt get the PN532 (an NFC/RFID module) working on I2c
When I enter a digit on the project keyboard, it is overwritten and does not break the line to be displayed on the screen
Hi, totally new here and beginner with Arduino. Please assist
Issue with multi PWM channels in ATMEGA328P
Niet opstarten 2560 na uploaden
MH ET Live Tiny88 to Rx/Tx Pins
Using arduino uno r3 with esp8266 wifi module upload data on the googlesheet i am try a lot but unable to do plz anyone help me
I need help please!
NEED HELP- Burglar Alarm System
What's the problem here?Forgive me for being a beginner
Can we generate Alternating Current using arduino uno with out any extra component with an input of 9volt DC
Handling large files (or data) through streaming it over a serial port
Serial use on Mega
Automatically switching of blinker with steering angle sensor
Controlling two BTS7960 motor controllers with arduino joystick
Arduino IDE 2.3.3 setting
20x times the speed with ESP-IDF on a ESP32. What did I do wrong?
Me ayudan con la programacion?
Error messages on Mac
Problem with datalogger register modbus
Simple while() loop resets my bool
Arduino H7 Video Header File Missing
Bare Conductive
Uno powering from DC supply
NMEA2000 And serial communication
How do i multi task with an arduino uno
La Esp-32 no me quiere compilar-My ESP-32 won't compile
Problens with arduino size
LilyPad Constellation Troubleshooting
Custom frequency Inputs in SPISetting() function
Program not working after I changed LED circuit
Frecuencia de muestreo RA4M1
STM8S103 Code Upload / Execution Issue
Error: compiling for node MCU1.0(ESP-12emodule)
Relay switch between 2 power source
Crear un controlador de reemplazo para un láser alien pro
I would like to build a safe with RC522
JBC soldering iron and ATTiny85 digispark -- HELP
Temperature Status
LEGO Build-to-Sound: Sonifying LEGO Models Using Sensors or Structure Recognition
It keep saying a function-definition is not allowed here before'{' token. does anyone know what's wrong with my code?
USB Connection Issues
(Arduino newbie) Ide says there is no such library when its right there
Wrong sensor data using 2 multiplexers
Binary counting code issues
(Arduino newbie) Ide says there is no such library when its right there
Redes de servidor y servicio
Rotary Encoder y Movimiento del motor
STM32 with DHT22
Handheld video Device challenge with exciting prizes by Government of India
Help why my sensor ultrasonic not wroking and my servo move by it own!
Arduino Nano Bluetooth MP3 player
Arduino IDE don't recognize the ESP32Servo.h library
How to get the best out of this forum
Need Help with GY TOF10M Sensor - No Datasheet or Documentation Available
Arduino soldering
How to detect cause of Arduino restart
Problema Alimentacion ESP32 7.4V
Sketch not in storage
Using a program written for two different purposes on one uno card
Buttons not being read
Reset ESP32 with arduino pro mini
Schneider EM1200 with arduino uno via max485 to ttl module
How to program micro Atmega 64 using Arduino Nano
ACS712 sensor with arduino nano esp32-s3
STS3215 problems
Sim808 GPS antenna design
How to show unit "g" Serial.println(scale.get_units(2),2);
Moludo bluetooth HC-06 y Arduino UNO
How can we execute this idea for TeknoFest (Turkish Technology Fair)?
*urgent have a couple days to get assignment done* looking to make a aurduino r4 uno minima photoresistor activating servoarm
MIDI Controller
Interfacing MCP23017 E/SP with arrays in Arduino IDE
Recording when collision or movement
2x16 lcd troubleshoot
Random results, with serial print damaged Arduino?
Reloj digital con Esp 32 mini y TM 1637
Three position momentary switch to keyboard input
Eeg headphone sensory(Free)!
Problem due with esp01
Reducir cantidad de if
8 bit clock signal in esp32
Esp01 relay issue
Windows 11 won't upload to Ardunio Nano
Voltage divider with op amp
Arduino nano to dragino lorawan la66 shield
How to control bldc motor by arduino
IR reviever continuously running after turning on motor
Component needed to project
V enviarComandoAT("AT+CMQTTSTART", "OK");
HELP NEED ASAP (Hopefully)
Problem With my Morse code Practice Device
Glad to join in arduino
How to solve full buffer problem when using MATLAB?
Code that measures resistance from 0 Ohm to 50 Ohm
Conversion via Rx Tx to LCD
PWM control with adding button for start-stop
Data streaming arduino with VisualfoxPro
How to post in more helpful ways for beginners
Pls help with my ir counter
How to operate a servo motor with a Transmiter and a reciever
Reading and emitting frequencies using arduino
Can the static on my person be enough to disrupt a weak signal/circuit?
Exit status 1 Error compiling for board Arduino Uno
Exit status 1 Error compiling for board Arduino Uno
Can we measure the AC voltage with Arduino
Control rgb led by comparing rgb led pin values
Signal Seperating
The application on my phone cannot connect to the Arduino server
How to mirror iPhone screen on ESP32_TFT ?
Making a 3 phase voltage and current measurement system using arduino
Pcm audio, crossfading
Problem with Husky lens and Servo!
Problema con sensor de temperatura Dht11
Esp32-c3 with mpu6050 using macbook air
Nano outputs garbage when using analog output
Error Messages while trying to make a button play a song
Arduino Mini Sumo
Help with stepper motor control on Arduino Mega with Ramp 1.4 Sheild
Arduino 2.3.4 no se ejecuta en win 10
Can anyone please help me with my controls on firebase with ESP32
Where is the sdk folder ?
First steps arduino and waveshare display
10bit ADC for ESP32 breakout board
Esp8266 is freezing after variable time
ESP32 dual core
Using Two Load Cells with a Single HX711 – Wiring and Calibration Issues
Need help with incremental encoder
Mouse unresponsive with Arduino and HostShield
How to get the best out of this forum
Beginner- Help Needed (Pretty please)
Arduino Mega2560 + Sparkfun TLC5940 LED Driver Not Working
Suggestions for ADC with ±10V Input
Ds1307rtc library stops any program running on my r4 wifi
PCA9685 Servo Control on ESP32-CAM
Issue: Unable to Detect Simple Linear Movements (Point A to Point B) with ESP32-C6 + LSM6DSOX (AI-generated content)
Como proyectar la pantalla de mi celular a una LCD
Desperate need of help
Arcade Button connect to Steppermotor
ESP32 and ESC for spinning a homemade brushless mtoor
Can't get two ds18b20 sensors read on different pins
Protocolo de comunicacion JCM
Need Program for Stopwatch for Arduino UNO
Help with 7 segment LED display
2 IR sensors for one servo
D-DESK: Arduino Deck Idea
How to use Capacitive Sensors with Arduino, and communicating with a program on the computer
Controlling multiple stepper motors
ESP32-S3-Touch 1.69 Image Display
Compilation Error
How to make esp32 camera
Servo motor girando descontroladamente
How to get the best out of this forum
USB-MIDI en Cubase13 pro
NRF24L01 + PA + LNA modules not working
Hello everyone, I have a problem. I want to make a peer-to-peer communication between two Arduinos using PN532. I'm using this NDEF code, but not work
How to get the best out of this forum
How to get the best out of this forum
Elegoo Robot Car v4 modifying code
Problem with display
LCD timer with other parts
Rocking Motor with Arduino
Arduino controled dc cdi
Subject: Help Needed with Modifying LoRa Code to Support Two Sensors and Datacake Server
Using TPS2596 eFuse to protect 5 V rail powering ESP32s, SG90 servos, and peripherals
Problema con mi código controlado por Bluetooth
Freeze up on ESP32 compiler errors
Servo motors MG90S doubt
Library Background-h
ESP8266 issues with swipe on RC522
Esp32 with servo td8120
NPK soil sensor 7 in 1 esp32 with thingspeak monitoring
How to connect esp 32 and MH ET LIVE SCANNER 3.0
Arduino Sends Correct Temp, ESP32 Receives 0xFF/NaN
Help on an ESP32 C3 Super Mini Project (Clock)
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Issue with tachometer
How to get the best out of this forum
Push Pull setup for LED
Arduino include problems
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Activar y desactivar bomba de gasolina de auto 12v
How to get the best out of this forum
Matrice led coordonnées
Working on a project with 2 potentiometers 2 push buttons 2 LEDs and 1 buzzer
[HELP] Arduino UNO problem "Couldn't find Java Virtual Machine"
TFT_eSPI examples don't run
I'm working on a project using an isel 2-phase stepper motor controlled by an isel Microstep Controller (iMC-S8) through MATLAB (RS-232 ASCII commands
How to get the best out of this forum
How to get the best out of this forum
Laser turns on during homing and axis movement – GRBL 1.1h + CNC Shield v3
INMP441 doesn't work
How to get the best out of this forum
Prop cannon for Halloween
Lilygo t-embed esp32 s3 cc1101 with bruce
How to get the best out of this forum
Nano 33 Rev 2 BLE Suddenly Broke
Sms +GPS tracking system
Uploading error
Esp32 can't detect at arduino esp32s3
Tmc2209 microstepping
One wire sensor data gets weird when I open the Arduino's serial monitor
Sae j2012da_202607
Re-programming a very old ATmega8 Arduino
Partager ses projets Arduino efficacement
Error with RadioHead library
L293D Arduino Motor Driver Shield Problem and new eyes on problem
Hardware to connect a pro mini to control 2 motors
What do you think of this alternate way to wire a DFPlayer mini to speakers?
Linear motion detection device with Arduino
Lcd blank even when connected properly
Fail to use psram
Arduino IDE NOT working ?
IR - Transmit Result differs from Received Result
(Code 43) problem in arduino uno
IOT data reads using serial monitor - not in the cloud
SSD1963 + ESP32 (16-bit Parallel)
Cloning an Arduino Uno and Arduino Mini Pro 3.3V
Problemas con las Interrupciones
Want to create a diagram of data from a sensor and save/update it permantly on a SD Card
DIY FFB steering wheel Arduino with EMC not sending signals to driver
IDE 2.3.7 Network Ports list
Arduino UNO wireless relays
C:\Users\paul\AppData\Local\Temp\.arduinoIDE-unsaved2026427-21980-hexn6a.99onr\sketch_may27b\sketch_may27b.ino:1:10: fatal error: LiquidCrystal_I2C.h:
ILI9488 3.5" Fermion TFT White Screen + Nano ESP32 Disconnects/Beeps During Upload (Double Press Fix)
R4 Minima and GY80
How do you organize libraries and tools across multiple Arduino projects?
Subject: Arduino Nano CH340 not recognized - Upload fails
Mega output all active on power up !
SDRAM Usage of the GIGA Shield
SDRAM Usage of the GIGA Shield
Arduino Nano with SIM800C always crashing
Tft ili9488 y esp32-s3
ESP32-S3 + ST7789 SPI + LVGL: severe tearing during scroll, no TE pin available
Problems in Windows 11?
2 programs in 1 on a Arduino micro !
Engine of the motorcycle cutoff of its own with Arduino
ARDUINO nano esp32 board upload issue
Micro-controller selection
How to get the best out of this forum
Need equation for setting delay
If you have a existing 1602 Lcd board that has a faded display, how do you know what to program in the new one. The original is of a intruder alarm ke
Motor brushless no inicia
Arduino UNO-Q HomeWizard ACCU, automatic
Arduino Uno + CNC Shield + A4988: NEMA17 motors buzz and lock shaft but won’t rotate
How do I modulate a signal ASK
6 digit seven segment display using TM1637 display interfacing with atmega328
Home Climate Monitoring - example
Ultrasonic Sensor Code
Update fails: "/home/arduino/Arduino/libraries/Arduino_RPClite already exists"
Problem interfacing GYML8511 UV Sensor an offset is always present
MAX30100 Pulseoxymeter showing random characters
CAN BUS Output to a AIM solo2 DL
AnalogWave source code?
> Hello guys, in the code I want to run the Forward() function for 2 sec then proceed to the Table1() function. How can I do that?
Proofing code-IRremote servo controller issues
Ir remote control servo motor
Communication between LoRa SX1262 and Reyax rylr896
Arduino UNO Q flashing failure ?
Simulink code error in Arduino IDE
Code to calculate time in between two events
Micro resets when using more than two pots
Indoor Air Quality Measuring System
Hi, how to differenciate the voice of a male and female with arduino?
Servo motor with 3 push buttons and 2 limit switches
Schematic for lights
Arduino Uno ATMEGA heating up when plugged
Schematic for lights
Trouble with reading off my pressure sensor from more than 20metres away
Code and errors, debugging. (im not a coder)
Connecting arduino with stellarium
XM+ receiver and Taranis X9 Lite
Controlling Stepper Motor using RC transmitter
I have a question about i++ and i+=
Stepper motor slows down with analog read
Programming code with joysticks
Help, running 2 if statement on 1 click
Activación de servo cada cierto tiempo
Paso nivel con barrera y leds (SOLUCIONADO)
SevSeg freezes with I2C
Quadcopter with 2 arduino nano+ nrf2401l + MPU 6050
EPS8266 wifi + arduinomega "Thingspeak"
Example of multiple water pumps
A fatal error occurred: Packet content transfer stopped (received 8 bytes)a
Issue ion compling the code with HardwareSerial SerialAT(1);
Uno's digital Pins are not working
Sound sensor module sensitivity adjustment problems
Problem with looping led blinking script
Counting RPM inside a function
I am getting a ERROR Compilation error: expected unqualified-id before '{' token
When it is 60 C , the relay(role1) does not close and when the delay works, the screen temperature measurement stops. How can I solve these problems?
Degree symbol gets corrupted when sketch is saved
DF mini player integrating with arduino uno
IR receiver won’t work with nano
Stepper motor, encoder and zero angle
Problem with software, I think?
ESP32 bluetooth connection with buzzer
2 volts input to 2.5-3volts output
Push Button - Led on for 5 sec after push button press
Detectar sentido giro motor paso a paso
Automatic thermostatic mixing valve
Client fail to receive server message
Help please, I don't know how to solve this
DSS-m15S is not working
About Char Array variable assignment
I2c Write issue on ic ch455
How do I use the Sensor laser distance LDBA B182 ?
Arduino programming counter
Error in the code please help
Stepper motor vibrates but not turining
Need Assistance concerning charging and accelerometer
Esp32 connot compile
Locking Bits while decoding a AC remote
Back to the Future Clock
Project with inductive proximity sensor
Can i interface two mcp4921 ic's with Arduino mega controller?
Impossible wireless communication using NRF24L01 + PA + LNA
Unable to change ESP32-S2 Power
Nano clone digital out only drops to 1.3v [Solved]
</> Marlin 2.0 does not compile while I define Display
How to stop the clock if i press the push button again?
SOLVED! Serial print works on IDE, but data gets changed when read by Python (Raspberry Pi Serial via USB)
Stepper motor with SEA5045
Problem with programmed via Arduino IDeESP8266 rst cause : 4 boot mode (3,7)-I'm driving crazy already
Problem with programmed via Arduino IDeESP8266 rst cause : 4 boot mode (3,7)-I'm driving crazy already
Fi̇nger pri̇nt module help
How to send message via bluetooth
Need help with led delay function
Code help losing my mind : read the top of the code/*here*/
Arduino UNO and PCA9685 problem
Connecting Arduino Nano 33 to smartphone
Connecting Arduino Nano 33 to smartphone
Connecting Arduino Nano 33 to smartphone
X and Y related project request
Help wiring sim racing wheel with buttons and ESP32
Excel-based automation timer & cycle logic generator (feedback welcome)
Paper to Coin Currency Exchange System
How to implement a timer on an arduino micro
PIR sensor with running light
Pick to Light system with PIR sensors
DHT22 NODEMCU problem uploading
Weird string conversion issue
Placa arduino y cinta led alimentada por un tranformador de 12v se calienta demasiado
Bluetooth GPS iPad
I Need Help With Breadboard wiring
Avrdude: ser_open(): can't open Access is denied
Test upload code via HTTP for Atmega2560
Creation of a Routine with a Button that triggers relays and 2 stepper motors. Arduino (UNO)
I dont know how to solve this problem
Connect esp node mcu 32s to arduino mega through wifi
I am unable to upload the code. Please provide troubleshooting suggestions. Thank you
Controlling a servo motor with a potentiometer using Millis
Issues with external relay triggered when it shouldn't be
ESP32, TMC2209, TMCStepper.h
Converting a Datastream into an Array
Please corect this code
Make a chessboard, just detect the position of pieces
Torque wont show in lcd when callibration factor is changed to a high value
IDE 2.1.0 - Changes made in Preferences are not saved
Login to a https webserver with username and password
Combine Rain Sensor and LDR sensor
DFRobot Humidity sensor with Sparkfun Thing Plus ESP32 - Sensor read const. 0.0
Lüfter mit mehreren MOS-Modulen ansteuern?
Need help to stand by mode
Motors behaving weird on quadcopter
VS2053B breakout board help required
Project with Ultrasonic Sensor, Stepmotor and Servomotor
Thickness Sensor for Arduino
Eps32 Voltmeter is measuring incorrectly. For example, when the voltage is 12.00, it is 10.50. Measures -1.5 volts
Project with Ultrasonic Sensor, Stepmotor and Servomotor
How do I use keyboard inputs to control a servo?
HELP! LEGO Millennium Falcon FASTLED engine starting sequence
Convert Single to Multiuser IoT Application
Help with function oder help
Why does the I2C LCD Module not displaying anything
Two PWM channels with 180 phase shift on Due
Best way to connect multiple outputs to 12v power supply
GPS not working properly
Using NPN transistor
Scrolling text on LCD
Issue with the code
Odd Characters When Reading From a AT24C32 and Using Serial.print()
People counter keeps counting
Wheel Encoder Tick counter error
How i can send my data from nodemcu to arduino via serial?
How to code 1 button push 2 input signals
Measuring the Center of pressure of human steps
Esp32 programming help needed
DS2431 EEPROM : READ and Write
which paramaters should taking on consederation to drive my stepper motors
Constant reset loop - Devia Robotics Control board v1.0 µC-type ATSAMD21G18 (same as Arduino ZERO) with AT-firmware ESP8266-module
Issues with external relay triggered when it shouldn't be
Help needed - Error compiling for board Arduino Uno
IOT Cloud Problem
Buttons don't work
Coding help with servos
Connecting Multi MPU6050 using I2C on ESP32 Wroom 32D
How do you program 170 stepper motors for a DIY platform
Traffic lights with sensor
Coding doubt in serial monitor
Need help with my code my arduino code to turn on and off LED and also delay
Controlling Servo Motor and Stepper Motor with NRF24L01
Unable to upload to MKR wifi1010
Why I've got banned on discord server?
Creating a code for a servo motor to create a sine wave
Rotary Encoder with LCD2004A
Issue with neopixel and large power supply cable
How to disable EEPROM clean with USBASP upload (Arduino IDE 2.0.4, EESAVE)?
I am working on R307 i can perfectly enroll my finger print but when I go for fingerprint.ino on serial mointor it continuouslly give command of no finger dedected as it s in loop how can i solve this
See if condition last for 2 minutes
Help ! espnow to simplefoc bldc
Hello every body i need help for this code
Temperatura inicial y final
Creating a code for a servo motor to create a sine wave
Automatic recognition
Hello every body i need help for this code
How can I reset the score after the results to 0 - 0?
Do this every 180 seconds if a button is pressed
Issues adding voltage feedback to pwm
How can I create a trigger for this
Highschool Project help
ESP8266 Stack error - Panic umm_malloc
Arduino codings
Sending an int = 1 from quest 2 to an esp32 through Bluetooth serialport is not working
Automatic door handle sanitiser
How to port this to esp32 (Captive Portal)
HC-05 not able to connect
NAN value a BIG problem
How can I mount my arduino on a wall?
NAN value a BIG problem
ESP32S3 LyraT board with Arduino
NAN value a BIG problem
Redefinition of init error when compiling verify
PIR sensor with running light
Waste Segregation
Nextion Transmitting Garbage on press/release events
MAX30100 vs MAX30102 vs MAX30105
SOLVED:How to read input from the serial monitor
Push Button with actuators
Call void(function) on webpage button click
Stepper mottor plus ultrasonic
Count pulses at the digital input pin into a time period
LED crossfade White to Orange
NAN value a BIG problem
Cannot get data from arduino json UDP
28BYJ-48 stepper motor and ULN2003 driver board
Question [Heating Pad]
Good day! we would like to ask help about our code, another problem resurface and it's the part where the start is Left_ Tra and the end is the stop
ESP8266 undifine reference
PROGMEM problems with arrays
Receive data from Arduino in Python
Bluetooth + Serial Monitor = Trouble?
Error: 'init' is not a member of 'U8GLIB'
2.2 de TI e jardins aac
ILI9486 is down when i connect any sensor to SCL and SDA pins
Why my program doesn't work
Automatic Chicken Feeder
Do you know how this relay module connects?
Semáforo 2 Vías doble peatón, ¿Como interrumpo un ciclo?
MPR 121 for Daisy Seed, Sensor not found
Wireless data send arduino uno to esp8266 using nrf24l01
HX711 together with I2C devices on same pins
Anybody willing to help me?
RaspberryPi 3B+ and Simcom A7672s
Having trouble running a 360 fs90r servo
Help required with delayed countdown timer for relay
Modulo EPS-01 8266 con arduino mega
Ich bin hier neu und wollte etwas von euch wissen (habe es aber selber hin bekommen ), Hier ein kleines Programm zu m ES32 mini ,it Neopixel 60 und LDR
Programming Arduino Uno using SparkFun Serial Basic Breakout - CH340G
Oled display stuck with logo
Please corect this code
Expected primary-expression before 'client' with WiFiEspClient client
100 MHZ crystal oscillator solved
Computer not recognize arduino uno when connected to motor drive sheild
[FIXED] IR remote switch help
MPU 6050 problem SOLVED
I want to learn about arduino
Can someone help me understand following code step by step? In this program sumDigits() calculates the sum of all the digits in an integer
MPU-6050 calibrating problem
Serial read string HEX ,find byte buffer to HEX to DEC as a float02
ESP32 with ArduinoIOTCloud throws ''GPIO0: ESP_ERR_TIMEOUT: ADC2 is in use by Wi-Fi''
Cannot fix my compiling error
Conexión de un electroimán a una placa Arduino con CNC shield en conexión serie con Raspberry Pi
Having issues with "D6 was not declared in this scope" for a wifi control led matrix
Sensor too sensitive
Reading data from Arduino into Python
Esp32 or Esp8266 Wemos resetting every several hours
detachInterrupt() not working?!
RGB Matrix 32x64 - Numbers and letters via push buttons
I am trying to connect 2 IR receiver on 2 different data pins of esp32
Sensor too sensitive
How to read adc port in code?
Trying to send data from ESP32 to MegunoLink
VL53L0X sensor not working
Need Assistance concerning charging and accelerometer
ArduinoBLE & high rate read/write = Error
Use sin() and cos()
Medir angulos en X,Y y Z
Dual H-Bridge L293D and 90 rmp 12V motor
How to connect multiple inputs like 150 sensor volatges to arduino mega
Encoder RPM Feedback
Need help ! combing two programs
Running a stepper while a sound is playing
Trabajo de un robot rastreador
Integrating Arduino with Website for Real-Time Pet Health Monitoring
Help with solar panel tracking project
Problemas con proyecto de control de riego
Check memory FLASH/ PROGMEM
1 Button and 1 pontetiometer
Wireless imaging system with ESP32
I would like to know how to control 2 rs775 dc motor and a servo using a nrf24l01 receiver and transmitter
My bluetooth car bluetooth is getting disconnected after sending a data to it
How to store EEPROM 10bit analog data
Smart bottle holder
Data getting and uplading it
Stuck at Uploading. Cannot upload anything!
A0221A4 ultrasonic sensor of RS-485 comm
Pro Micro HC06 or 05 Bluetooth pro micro gamepad
Error is: Attempting to use a port that is not open
Multiple SPI devices - RF24 and ST9720
Looking for guide for Arduino Mega R3 WiFi AVR ATmega 256016AU CH340 with Thingspeak
Help me to combine these codes and the servo motor to return to its original position
Adaptar arduino UNO a sistema limpiaparabrisas de un Auto
Unexpected output (A0) Uno R3
How to make a pc usb game controller with 40 plus buttons and 4 axis?
Arduino TCP no connection
Error in my code
Windows compiling issues
I want help creating a calculator that calculates a value like this 23*4+56
Weruiopfmniovmroiz
How to connect esp8266 to batteries and switch
Compilation error: wrong type argument to unary plus
Arduino Blynk Error
'float round_to_dp(float, int)' redeclared as different kind of symbol
My LCD Is not Displaying my Temperature
Issue using the ArduinoMqttClient.h library
Something is not working
Error: expected '(' before 'else'
GUIDANCE ON CONNECTING Arduino UNO TO A SIP SERVER HAVING SIM 800
I.m clearly thick.... dividing bytes
Liquid Crystal Adaptation 16x2
LR7843 MOSFET only lets through 17V out of 24V
[resolved] Problem with servo motor (FR/ENG)
Problems when comparing a String
Program creation
CONTROLLINO Mega Pure Digital low to high voltage
Arduino,hc 05,motor shield not working my hc-05 doesn't turn on
[solved] Arduino IDE 2.0.0-rc9.2 on Ubuntu 22.04 64bit not starting
DFPlayer Mini on ESP32 30 pin devkit
Connecting two programs into one
How to slow down the signal from a Hall effect sensor
ESP Camera cannot connecting WiFi while reset
Optocoupler for input
ESP Camera cannot connecting WiFi while reset
Optocoupler for input
Flow sensor for shower on R4 board
Help me make an Arduino door lock
Using flow sensor to control dc motor for water sampling
ESP32 Project error
Keypad sending out random numbers
Cloud for your project and libraries
Steppermottor control with Loadcell reading
Connecting wifi module esp8266 01 into wifi
Switching circuit using relays and UPS with Arduino in case of a power failure!
LoRa RF Noise Generator: ISR, goto, while, best solution?
Creating more than one RTC variable
Steppermotor with tof10120
Esp32 wrover ib configuration with Arduino ide
How to control two servo motor each with a potentiometer controlled wirlessly through NRF24L01 and Arduino uno?
How to control two servo motor each with a potentiometer controlled wirlessly through NRF24L01 and Arduino uno?
2 axis Joystick with Arduino Leonardo
Adafruit Motor Hat not connecting to Ardiuno Uno
How to control stepper motor with encoder using arduino
I am getting error in my arduino code
Feasibility - Three pushbuttons to control a single servo?
0802A 4bit LCD Interfacing with renesas R5F102AA
VL53L0X Problems
SRXL2 serial throttle value and nano
Big Numbers in Arabic font
I am getting error in my arduino code
VL53L1x out of range problem
Problem with an I2C Pin Expander
Serial communication between esp32 cheap yellow display and arduino mega 2560
Millis function is controlled by the counter
ESP 32 & waveshare 4.2 pinout
My code won't compiled
Trying to use button with Arduino Leonardo
Indefinite array display on LED matrix
Arduino Central Management
Conflicting declaration uint16
Arduino with adafruit data logger shield
Control RGB LED 5050 Stripe with IOT Remote
(SOLVED) Bluetooth to bluetooth latency problem
Carrito aspirador
Please help me write the code
Optocoupler for input
I have a problem with the Arduino serial monitor, when I run it it's like this, please how do I fix it?
I have a problem with the Arduino serial monitor, when I run it it's like this, please how do I fix it?
ESP 32 ADC giving wrong values
Compile Error: Undefined reference to 'main' when using Elegoo Mega2560
Stopping song with button input?
Can i use analog pins of Atmega328 for Toggle switches?
Good day! we would like to ask help about our code, another problem resurface and it's the part where the start is Left_ Tra and the end is the stop
Need help with led delay function
Wt32-eth01 pcb files
[SOLVED] ACS712 - Having second load is reducing the watt instead of adding it
First time encountering this error. Arduino UNO
Programación sin esfuerzo
How to have two veriables in a if...else sequence
Project find random number
How to have two veriables in a if...else sequence
Arduino based 12V coolant pump control
Compliation Error "Make sure you have 'Sanguino' selected" With Sanguino Already Selected
Flow sensor for shower on R4 board
Speed limitations in basic data transfer
Como configuro el tiempo de apagado de una tira led?
How to find the PPM value of the MQ135 sensor
Use local variable in another function
2 Channel LED strip control with DMX
Using Laptop Keyboard to Trigger Interrupt
Channel N MOSFET to LED Strip PIR Sensor project
Configurar aceleracion de dos motores nema 17
Ss49e linear hall sensor oled display progress bar
NTP server best way to act on retrieve data
My Datalogger SCD30 code wont print values on Sd Card - SOLVED
Arduino Lora Wireless Authentication
Inverse Kinematics of Differential Drive Robots and Odometry
WeMos D1 R2 - (ESP8266) - Fan control (PWM) issue
WeMos D1 R2 - (ESP8266) - Fan control (PWM) issue
Pin13 confusion al conectar con integrado
Code to blink an led to represent a number
Timed relay activation and billing using rfid card
Bitmap byte allocation
SOLVED - BMP180 Temperature Errors
Why is this code not working?
Motion detector on 4m wide
Upload images and/or new project file to the nextion via Arduino
Nano 32 with single WS2812 LED not working
Stepper motor code doesn't work
I cant use nrf24l01
I need help with my arduino uno
How to power arduino nanos
Bin file burn on adrino mega 2560
Running stepper motor at a set time interval
Trying to change the position of a servo using two click buttons
Arduino MEGA and TFT 3,5, cannot start SD
Examples go missing
Attiny85 servo control
I have a Uno board with the program in it, how to read it out
Write a program in C to switch on and off an LED
Counter on LCD display
Arduino Nano 33 BLE Sense REV2 get's hot really fast
Display "Low,Meduim,High" in LCD by potentiometer
Bluetooth data ASCII
Electromagnetic interference
Arduino and Esp32 serial communication and data to Thingspeak not working
Oscillator controlled by a potentiometer
Can someone help me? something about spi fast flash boot
Hydroponic monitoring project using solar panels?
Problema con atmega328p
Problem with serial communication between Arduino Mega 2560 Pro and ESP8266
HC SR04 to suspend the calculation until a button is pressed
NEMA 23 Schrittmtor mit Arduino Mega 2560 betreiben
Am i reading this wrong? or is the string missing a char
Monitoring a CR2032 voltage
What IoT platform do I use for esp32 cam?
X and Y related project request
Control massages then buttons i pressed
att7053cu or att7053
Bom dia, meu leitor rc522 não está reconhecendo uma TAG ativa, qual programação devo usar para conseguir ler?
Finding the maximum and minimum of a servo motor?
ESP32 code for forklift not working 100%
Wdt reset - firebase & esp8266
Multiple intervals
Need a little help arduino stepper motor with ir contol
I am confused in sensor connection CSPPM127-E water level sensor which works on RS485 MODBUS protocol. I am using ATSAMD21 Mini dev kit by Robotdyne
Simple Script not Working
Facing Issue with connect SD card of ILI9341 with ESP32
I2C get stuck for 1sec
Arduino Looping states in Void Loop help needed for a novice.
Changing values in a code by using a potentiometer or selector switch
'timer' was not declared in scope
IRremote: receiving ok but transmitting don't work
ESP32 with ArduinoIOTCloud throws ''GPIO0: ESP_ERR_TIMEOUT: ADC2 is in use by Wi-Fi''
End stop switch
Need help Arduino Guessing number
ESP32-CAM does not print anything on Serial Monitor
ESP 32 Sensor data collection
5 different Spectrum controller using one ldr sensor
Firebeetle esp32 with GPS M8N won't communicate with each other
Trying to get a longer tone out of this code
How to send message via bluetooth
Fighting Actuators
How to send message via bluetooth
Stepper motors NOt workings
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Need help with LCD and nRF24L01+
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Tips for FireBeetle ESP32 (DFR0478) Circuit Design on PCB
Simple Stepper Motor
How to get the best out of this forum
LCD 1602 Upgrade
'LED' was not declared in this scope
Is it possible to turn on pins 4 to 13 all at once?
Help me to combine these codes and the servo motor to return to its original position
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
I have 2 flow sensor but now i can display 1 i want to add more how can i write
How to get this LSM9DS1 code run faster?
Setting up network botton not selectable (greyed Out)
PROBLEM - TFT display AND multiple SerialPorts on Uno R4 Wifi
How to get the best out of this forum
GRBL compile error Arduino Uno
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Can I integrate an IR breakbeam and stepper motor with only one one Arduino uno r3
Servo Motor Response From Tfmini Output Data
SIM 900 GSM Module issues with Arduino uno
Car gauges Nextion vs
My DC fan is not stopping
Help with Errors in code for using Arduino Mega as MIDI encoder
Unable to connect to websocket
Serial.print() didn't work same as usually
Blue pill stm32
When I enter second digit it replaces first one and starts from there
LED array with LEDs that require different amounts of mA
Digital output pull-up resistor off
X and Y related project request
Can't control speed of 4 DC motors using L298N
On-chip LDO bypass
Secure project using serial number
Lineer actuator does not behave as expected
Relay do not switch
(Solved...I think) Strange interrupt behavior on Teensy 4.1
Error with RadioHead library
Problem with led matrix on Esp8266
Micro resets when using more than two pots
Creation of a Routine with a Button that triggers relays and 2 stepper motors. Arduino (UNO)
How to get the best out of this forum
Arduino car not turning on and it will start smoking
Reading the current from ACS712 and displaying on Nextion
Cómo puedo conectar un servomotor mot-135 al Arduino?,
`exit status -1073741819` while compiling for ESP8266
Another DHT22 giving wrong values
I have a problem with 2 of my 4 ultrasonic sensor's
NEXTION Display connect to STM32F103 with Arduino IDE
Setting up: problem
Keep getting error trying to upload
HELP - Fluid-o-tech BLDC Motor
Using IR Remote with LCD
Getting pins working
I2C LCD causes problems
Analog TDS and Turbidity Calibration
Will i be able to control multiple 24v dc solenoids
WS2812 & SW 420 code help
Prender una moto electrica casera
Using millis() and if statement to run ultrasonic sensor and servo motors
Confusion about programming Logic
Fixing problem with uploading
Move to a postion then to another postion. Once at the postions stop for a short period of time
Fried Arduino Mega and my laptop - what did I do wrong ?
Adafruit motorshield v2.3 and nrf module
Circuit Simulator + Block Programming + Arduino Upload = Holy Grail? 🚀
Serial monitor doesnt show up
ESP32 CAM not working
Include files in IDE v2
Start With Arduino - complete beginner
Schematic 'Frying' Arduino Zero
My DIY ambilight for PC stops working after random amount of time
Uno + MC522 + SD not working
Leonardo r3 usb host shield 2.0 as mouse
How to test with arduino
serial.serialutil.SerialException: Cannot configure port, something went wrong. Original message: PermissionError(13, 'A device attached to the system
Millis() question? ads1115 trials
Huskylens with arduino mega 2560
How to Add 12h time code
Play mp3 music immediately when it turns on
I need help to start a project
How to unbrick STS3215 servo motor?
Making a transistor turn things in series
ESP32 cam cannot do face recognition
MPU6050 calibration
Compilation error: exit status 1
Arduino UNO R3 using two outputs dependent to different inputs
Looking for example of Modbus RTU Master for Controllino Maxi
Problem with ESP32-BLE-Combo-master library
How to create an Array
Can someone explaine to me how to use the stepper motor
Starter Kit Project 11 - HELP NEEDED!
Duo locking after a few reps
How to solve plotter problems in Sim808 Gsm GPRS GPS Module
Issues with SN74HC574
Programming issues with ATTINY85 (Upload using programmer uses wrong programmer)
Display problem freezes
CNC laser machine
Slowing Down PCA9685 Controlled Servo Movement
Electronic Catan Board Program Crashing. Please Help
NPN with arduino
Relay Module Power Supply
Random shreds of texts in serial monitor
Motors only start if arduino is connected to a PC
"ON" led not working when supplied 11V in Barrel Jack
Why my arduino leonardo not working with bluetooth module , However this same code is working with Arduino UNO, Plz suggest me changes
Engine Dyno Projekt
ESP32 problema con Shield/carcasa
"UNO+WiFi" board: Upload fails and RX led always on
How to use a 14HM11-0404S1 to create a robotic arm?
How to check which IC i can code with aurdino?
Help with speed controlled fan (pot) keyestudio components (INA and INB) fan type
First issue resolved - now there's an error when I try to verify in IDE
Solved how ac current can connect to ads1115?
Relays switch, transient noise and rc snubber
Controlling Various Vibration Motors Individually
Getting started on Arduino
Cargador de teléfono utilizando arduino R4, ayudaaa
Hello Guys, i have a school project
Arduino nano rp2040 mqtt
LCD 1602 Upgrade
All sensors wrong reading
BLE Peripheral Not connecting…
ESP32-C3 and P10
How to play kick drum & crash sounds simultaneously on an electric keyboard with arduino
Need pwm signal
Using Digital pins for IR 5 sensor array on Robotic car
Hey my Arduino r4 is limited my htttp request more than 8 is not accepting
Web Editor Server Issues
A fatal error occurred: Failed to connect to ESP32: No serial data received
Using the TMC2660-eval with an Arduino Mega
Arduino codes with LoRa communication
Mqtt and while loop
Struggling to stop stepper motor for project after a loop
INA3221 loses i2c communication when power supply is connected
Code not working as expected,
Read data through HID
Stop loop, help us?
ARDUINO hardwarr help
Arcade swipe card thing with arduino and rfid
"array-float" conversion problem
ATmega328p: Creating object file only using an AVRDUDE make file
Please Help, I want to make CNC with 2 axis
On Off keying Signal
Unable to burn bootloader using mkII
How to call an api on esp8266 using static ip setting
Message in hindi language
Problem with Compilation error: a function-definition is not allowed here before '{' token
Identifying the error in Arduino setup
Oled display flickers when I set time in code
Model railroad turntable
Troubleshooting RC Car project
I want to input position data to a motor in hexadecimal the data should be distributed among data 4,5,6 each containing 2 digits
How to display float value on LED dotmatrix display (MD Parola) ?
How can I count another var ?
Read & write data from serial devices over ethernet by arduino
MOSFET type issues
Connect transmitter Arduino NANO
ESP32-S3 ADC Read Issue
How can dedicate hardware ecraption
Steppermottor control with Loadcell reading
Driving 8 motors with off the shelf hardware
Remote monitoring
SIM 900 ne se conecte pas sur Free ?
Can I use another bracket inside a delay bracket?(Solved:nikoexcited:)
Troubleshooting RC Car project
Question with arduino code
Potentiometer problem on Arduino
I have a problem with the Arduino Dimmer Library
Arduino software issue down load
Cannot get a LDR to work with the following
7segment common cathode display with rtc
Analog voltage input to power fan change of speed
How to wire L293N for running speaker
In Arduino ide 2.3.2 if i am enable bluetooth i am getting error in libaries
Avr-g++: no such file or directory on Mac
Slow upload speed
If(vw_get_message... fails always, transmitter seems to be functioning
Problem interfacing MLX90614 and MAX30100
Randomize servo motor work
FreeRTOS code causes crash on ESP32-S3 board
Nrf24l01 no me comunica
Compilation error: PubSubCilent.h: No such file or directory
Serial Exception Error While Uploading Code to ESP32-S3 WROOM-1
Analog voltage input to power fan change of speed
Solved Please explain why this code for displaying analog inputs dose not work
TFT showing white screen when wires are gently touched
Unexpected negative values
How to capture peak frequency > 20kHz
Counting inputs
Phase shift while implementing timers in Atmega328p
I can`t install Adafruit library for oled display
Send UDP packet using Arduino problem
Can I use an array or other method to simplyfy my code?
UPLOADING error on Arduinop ide
Traspasado [cerrado]
Admin Responses to questions!
ATMEGA 328p PCINT-Resolution questions
Please help me guys
Please help me guys
SleepMode ArduinoNano ATmega328p
Please help how to set notify as my customKey
While connecting the Nodemcu with Adafruit server getting this error - expected initializer before 'mqtt'
MIDI plant music synthetiser
Hi can some one help make homing to work?
Need help with a stepper driver to run a stepper motor forward, hold, reverse, hold. used on a cnc to rotate the carousel ATC
Admin Responses to questions!
New To Programing Registers
Arduino Car Parking system
About Char Array variable assignment
Need some help with my code
Problem with library installation
Clone Hero Drums
256 Microsteps / TMC 2208
PLease help ! 99% done but
Proximity sensor error help
Program creation
Admin Responses to questions!
Help - move servos in 1 degree steps
Sampling rate problem with FFT (Max it is working correctly is 200Hz)
CANBUS Shield V1.2 can not receive data from battery
Making function to turn 2 LEDS ON and OFF on ESP32-WROOM-32 on Assembly in Arduino IDE
Arduino czujnik wody - Arduino water sensor
Arduino code not working
Qué significado tienen el eje y, y eje x en el serial plotter?
Can't get I2C To Work
Building an advanced guitar tuner with special features with a seeduino and a grove starter kit
GxEPD2 using Waveshare 1.54inch b/w epaper with partial update in combination with low current consumption
[SOLVED] Unknown 1wire address detected
Error: invalid conversion from 'void*' to 'const char*' [-fpermissive]
Running on Arduino 2.3.4 (Windows) for a long time causes the computer to restart
'RTC' was not declared in the scope
Expected primary-expression before '<' token............................ I want to program an arduino board to control a fan at different speeds
Using multiple WS8212 led strips and controlling them with TFT Display --------
DYSON V7 charge control chip flashing
HC-12 returning gibberish words
L298 voltage dop too big?
Proffieboard troubleshooting
How to understand this.. cant replace the the code
ESP32 does not start program at boot
Compass and GPS fail
Hoodloader2 Compilier Errors
LCD-Display showing phrase according to bluetooth input
Error de compilación de módulo AI Thinker ESP32-cam
ESP32 with web socket client
Global or local variable problem
How to solve the error
Esp32 wroom 32e Bluttoht problem
LCD second row not working
Esp32 is not able to get data from I2C and send this data to aws iot hub at the same time
Arduino humming noise
Low power level when using TMC2209.h library
Need assistance
ADC Attiny85 code need
Problem Esc SoftwareSerial
Question about Arduino Mega 2560
Could you tell me the mistake here?
What is the Problem?
[SOLVED] LoRa geophone issues setting sensitivity of sensor
Touch sensor with disc vibration motor
Blynk_firmware_type was not declared in this scope
Crear escáner con Arduino para Nissan Pick Up D21
Help with Serial library
Arduino to Generate GAIT cycl patters using CubeMars actuators
Guidance on building and coding a automatic waste segregation Bin
Possible serial noise or corruption
Reading int array from serial
L292 d motor driver sheild protues library
Arduino library on github not registered
I am using oled and spectral sensor together but they are not working with the code i wrote
Help using ds1302
Play certain mp3 files at every hour
One more question I also need to connect to D18 but I dont have the WROOM version
Open Smart Rich Shield projects
ESP32 and L298 module: Power Supply Issues
While connecting the Nodemcu with Adafruit server getting this error - expected initializer before 'mqtt'
HC-12 returning gibberish words
Wheatstone bridge-Instrumentation amplifier and Arduino
LEDs with PCF8574 chips
Midi usb problem on Leonardo with encoder ky040
Esp8266__Ap with open web server which itself opens an info page
Oled display progres bar I want to view but I couldn't Connect
Need help in using DS18b20 to calculate breath per minute
Bitte um ein Code-Review (Arduino Nano, Thermistor)
What is problem
Problem with Switch command
Reinitialise Serial communication after overclocking pico
Detection of motor position
Why GPS part of code is not working fast/need to restart 20 times to work
Controlling a digital and analogue servo with one arduino uno
Button on/off Servo
Error reading device descriptor. Error code D6
Sending values from Nextion display to ESP32 Error code 777777
Face difficulty use oled with voice recognition
How to make this projekt
Tracking sun using gps
ArduinoHttpclient
How to connect two Arduino's to two REYAX LoRa modules?
Measure on time
Control Power led brightness and Brushless motor via ESC, using pwm signal and 4cell battery (burned 2 boards)
Failed to install platform: esp8266:esp8266
Linea de bloques en lcd 16 x 2 sin ic2 en esp32
Encender LCD i2c sin librerias
Push button w/Blink
Brushless foc drv8302 Arduino 2560
Rc car nrf24 I need help
2 DFMini mp3 players not working
[REGOLAMENTO] Come usare questa sezione del forum
Has someone read Arduino Due' Digital Pin whose incoming signal frequency is 1Mhz?
Mini mp3 and hc-sr04 can't get to next song
DF player mini - wrong mp3 play
Stepper motor doesnt working
Using esp 32Dwroom to build a car controlled via bluetooth
Signal: killed Compilation error: signal: killed
Arduino push button car project help needed
Rc car nrf24 I need help
Serial read_int
Arduino uno executing program during power failure
Reading Serial Problems
Problem with callback function in ESP32 wifi library
Midi usb problem on Leonardo with encoder ky040
Help getting data from digital pin 2 and 3 in pytnon
ADC noise on ESP32
Proplem in arduino nano
SPIClass has not been declared
Help with jsn-sr20-y1 schematic
Help needed for project due 6/3
Bluetooth module delay
.hex file on arduino
I need a help in my project
Compilation error: expected identifier before numeric constant
Error on App start after update: "Arduino_RouterBridge.h: No such file or directory"
Has anyone used nrf24L01, H-Bridge, Servo code together?
Python script cant control the Arduino motors
Is this code for recording and replaying the functions
No matching function or call, but there is?
2.1 inch round display code
Hex file and bin file are created but they both are empty
Sending message with ESP32
Wifi error with Board Uno + Wifi
Arduino terminal console
Weird time behavior (millis, delay and tune) when the processor runs outside the Arduino board
Feetech Continuos servo and arduino nano
Reading Data Using Modbus RTU Over RS-485
How Upload Sketch to Nano33 IOT without IOT Cloud?
Problem: 'else' without a previous 'if'
Using Library's
Creating phase difference between two square signals
Arduino uno text to speech
Error compiling for board ESP32-WROOM-DA Module
HC-05 Windows 10 and 11
Cannot update the parking status data on the website using the NodeMCU:
A9G + Xiao ESP32-C3 problem with sending SMS
Encoder and counter help
Help in esp32 and soil moisture
Play certain mp3 files at every hour
Display pin state on LCD display
The code that should be able to read temperature, pressure, and altitude data from a BMP280 sensor and display it on a 0.95 inch RGB OLED display:
Pulse a relay at a random time
Esp32-s3 errors
Error setting up serial communication
STM32 documentation analogue for the Arduino platform
BME680 Sensor error
Commands via grbl
Can you help i always get compile error
Can you guys help me with this program?
Custom Air suspension Management system
Push button w/Blink
Unable to communicate with uno on serial
Esp8266 fail to upload values to hostinger database server response 301
Max 4466 mic &Arduino R4 WIFI
Variable is not updating in arduino cloud
Potentiometer for Gaming Pedals
Progamar ardurino soy novato
Bluetooth CH-06 activa bucles al desvicular
Mini bomba de agua en NodeMCU
Led and motor work strangely
Arduino Code for 4G LTE SIM A7670C Development board
How to cotnroll multiple servos at once
TCA9548A Multiplexer - Arduino Mega
Variables global,local,static and constants
Convert Calculated Weight from Load Cell Sensor into a Reward Points
Balanza con corte automático
ESP8266 Unreachable
Expected primary expression
Help me find the solution. The code is correct, and the Switch settings on the dashboard are properly configured, but I still can't control the light
Help me find the solution. The code is correct, and the Switch settings on the dashboard are properly configured, but I still can't control the light
Simple arduyino menu but dont know where the problem
Opta PLC IDE communicate to regular Arduino IDE over RS485
Help With Programing!
How to use Arduino by RTC
Atmega328p+esp8266 and pn532 serial communication failure
Need help for my school project
Has anyone used nrf24L01, H-Bridge, Servo code together?
How to connect ESP32 s2 board to Arduino IoT cloud(Using API Keys and Arduino IDE)
PWM signal to TTL
How do configure Arduino with Arduino Seeeduino Cloud - Arduino Yun? Is there any configuration to do in PC?
How can I optimize Arduino code for faster sensor data processing?"
Adc in arduino due
Help with Arduino Header file confusion
SPI error after X times of calling the method
Read Variables Before Reset
Interface AD1263 with Arduino/ESP32
NRF24L01+ en ESP32 y ESP8266
Failed to connect to esp 32 failed uploading
Access is denied when trying to upload sketch
Ws2812b transfo
My robot's CANbus won't talk?
(SOLVED) Solar System voltage switch some relay modules (Problem)
How I get two input from arduino via bluetooth
arduinoFFT.h code breaking switch case/ button For guitar tuner
SAMD21 I2C Not Working - Arduino Zero based Board
I am having a problem with my TDS sensor
Five-pin soil multiparameter sensors, PLS HELP!
Help on project
I am having a problem with my TDS sensor
No reading no writing between i2c and ESP-12F
12C two Nano's having a chat <<CLOSED PLEASE>>
Get rid of delay(), solve buttons debounce [solved]
Nothing happens on button press
SN65HVD230 to ESP32 Devkit v1
[Solved] Atmega328p -au bootloader and execution failures
DHT11 Sensor Frequent Data Spikes
[Solved]I need help with an error with no answers
Output to operate as (and in parallel with) momentary pushbutton
How to send .txt file from Arduino Uno SD Card to phone via HC05?
Output to operate as (and in parallel with) momentary pushbutton
Hall Effect Sensor picking up Input PWM Frequency to the Motor
Include H and Cpp file in main sketch
Problem with Cloud Agent: "openpgp: invalid signature: RSA verification failure"
Solved: #include header file not work
Undefined reference to countPulseASM when using pulseInLong function
Arduino Explore IoT Kit MRK 1010
Is there a difference between reuploading code and resetting an arduino?
Adafruit NeoPixel crashing with colorWipe
Correct mosfet for 220v DC Led strip
Magnetic Latching relay? or not
All is okay but wheels not turning/spinning/rotating - self balancing robot
The code provided for sending health data (heart rate, oxygen level, and temperature) to Firebase Realtime Database using ESP32-C3 is not working. Whe
Drawing and Analog Clock on MSP2807 TFT Display
Obstacle Avoiding Robot
Problem while uploading to board
Can someone tell me what I'm doing wrong?
Cannot find the way to extract raw data of GT911 touchscreen
(Beginner) Logic understanding problem for a toggle switch
Arduino uno problem with the Nokia 5110
28BYJ-48 stops and does not start again
Portable temperature and humidity sensor with DHT11
How can I use PWM (Pulse Width Modulation) in Arduino for controlling the brightness of an LED?
Arduino Limit switch Interfacing Visual Basic .NET
STM32 w/FTDI - Uploads but won't run
Dmx512 Strobe problem
LIN BUS Master Arduino Nano connect to TLE7259-3GE
Servo.read function not working
Help! modifing exist code
About the Uncategorized category
How to get the best out of this forum
Generic arduino
Magnetic strip card reader project
Esp32 (sender-reciver) temperature sensor
Blinking L LED (No Blink example) [solved]
Stepper Motor doesn't spin and vibrates
Sending Modbus write single register from Arduino to pic microcontroller
Upload problem error
Display led p7.62 Problem with no character show
RGB LED Beginner Tutorial & Random Colors Every 2 Seconds [external source]
Controlling display
1 push button with multiple functions?
Capacitive sensor
Sad face on the led matrix
Compilation error: exit status 1 , ESP 32 interface with IR sensor , output serial monitor
LED matrix word mirrored
Wifi connection error ESP32 Wroom: WiFi.status(): 255
Como conecto mi Arduino Uno con un max232 (DB9) o con un convertidor USB - TTL (ch340)
I need help with this project
Circuit not working
Uno R4 problem with FastLED and WS2811
Digital compteur with NodeMCU.V3
Python Code to move the actuator Forward and Backward code not working - please help
I want to store the value of barcode in a char string
Need help printing 6 digit value after decimal point
Add an On/Off proximity switch to Clearpath MC Motor
MPU6050 and RF module
I'm facing this problem please guide`
ESP8266 connection to Arduino Uno
Forum guide, software for making schematics
Error code 226 to reald holding registers from Elmeasure power meter LG6435
Connecting DC motors to encoder
Beginning Arduino/Circuits - Middle School Age Appropriate
Running 2 steppers for robot
Stepper Motor Wiring help needed
Guys please please please help me ASAP
Help me code this funtion
Problem with a simple code
[solved] tft screen with esp8266
How to know the syntax needed for each library?
Stepper Motor for solar panel cleaner doesn't operate after being runned for long
Issue with 380V (topic moved)
Capacitive sensor
Serial communication (arduino to nodemcu) and max30100 problem
PWM error in compiling sketch
Wifi ESP8266 module
Trying to determine if my NANO 33BLE is stationary at any time for a designated time frame
Need Help Wiring Neopixel to Arduino Uno
Retrieving saved WiFiManager parameters - Help needed
Water sensor project1
Wire connection problem for transfer data of adxl345 to Sd card for given code
Power Distribution Question
Nano not starting on battery; needs power boost from usb
School project, SOLVED
#include giving me errors
I need help with my if statement
Hello I am not able to send a binary signal like from python to Arduino
Days since January 1st, 0 AD (Gregorian calendar)
Tengo dos problemas en un selector de alarmas
IF statement doesn’t work properly
How to design Library
Reading 40 KHz analog signal using Arduino
TCS3200 color sensor returning 0 values for RGB [solved]
Multiple DHT22 Sensors with LCD I2C display [SOLVED]
Can i connect esp12f (esp8266 chip) to oled display ?
Uno wifi r3 digital pins dont work
Arduino Duemilanove Stk500_recv and the reset button doesn't work
Connection problem Arduino uno
NEMA17 & DRV8825 - HOW I CAN 1000RPM or HIGHER? I'M A BEGGINER
Problems with Potentiometer
Turn a sensor on or off using the rest of Arduinio IOT Cloud APIs
How can I increase the sound of the buzzer?
Arduino Single axis solar tracker code
Arduino Code does not work together
Why are the MKR series USB ports so unreliable?
LCD 16x2 need HELP please
ESP32 devkitC V4 No voltage
Automatic watering
Eliminate Interference in Bluetooth Audio Output
School Project-Error compiling for board Arduino Nano
Esp_camera_init() function makes my ESP32 cam Brownout
How do i connect a 12v 7ah battery to an arduino and l298, with what wires
ESP8266 code error
My code for is not working?
KY-087 won't work
I need help in the debug the esp32
Is Ardunio Nano Suitable for My Project?
Constant restart after new update
A static const?
Sdr radio frequency knob
Keyboard.press() not working on arduino mkr wifi 1010
How to view software serial data on a serial monitor
Programming problem with MySQLconnection
RGB LED not responding to Serial Monitor Input
Need help on DF Mini Player activation
Stepper motor slows down with analog read
Need help Switching pipes on RF24
LCD screen, help me with the code
Problema nema 17 con driver a4988
Fault detection in an optical fiber using arduino
My encoder not working with leonardo
Drone PID output
Thinkpad T470 Trackpad
MAX30100 Pulseoxymeter showing random characters
Copy compile errors not copied to clipboard
Servo shaking when LIDAR added
RGB and Temperature sensor help needed
Arduino Project 12
How to use pin 4 and 5 for rotary encoder in Arduino Ono
Arduino Code does not work together
3.5" image display
MXP 5100AP (Absolute Pressure Sensor) UPDATE/EDIT
Uploading failure on Arduino Nano with CH340 chip
Vibration of stepper
Esp8266 fallo con interrupciones
IDE hangs on startup: "Unable to get Documents Folder: Access is denied"
Wireless Data Transmission from MPPT to Computer Using Arduino and LoRa
Robot moving in a queue fo social distancing and mask detection this code is for the straight line movement please what is wrong in the code
Atmel IC Arduino
Dead arduino, no idea why – basic project with Adafruit Motor Shield V1 and NEMA17 stepper
Reading RS232 data with arduino uno
SHA256 encryption for Dynamodb
Arduino Explore IoT Kit MRK 1010
Please slove this error
How to use wemos d1 mini and ds1302 rtc module together
Blood Pressure Measurement using Korotkoff Sounds
Translation of "International > Português" category's pinned topics
Help/Assistance Needed Button Box
A time delay alarm
Errors in ESP 32 Dev Module Code
Arduino Robot Car (limit switch)
Want to change sampling rate of a PIR sensor
I am making rotary car parking sysytem in which user press 1 for parking the place which is empty come down here motor is not stopping and rfid nowork
How would i serial print the entire binary her i.e "0000 1111" to serial monitor
Please help with my project ASAP
RCWL-9620 ultrasonic distance
LCD screen, help me with the code
General Guidance and How to use the Forum
Conflict between physical button and IR remote
4 digit 7 segment display hex conversion
Unable to display/print on the serial monitor #STM32
Help: ESP8266 to Firebase Firestore
Ethernet Example LAN8720 with ESP32 ETH01 module not working
Delay() not work in wake up after power down
Controlling individual LEDs
Arduino not giving signals to LN298 or mistaken wiring
Two Charlieplex modules to one Arduino
MMA8452Q tilt sensor
Hello every one , I want help pleas , i want to mointor the battery voltag with web server page
Unable to load bootloader
Need help with EEPROM
Arduino Nano and DS3231 led function problems
3 sensors on individual codes, processing interactive visuals
Delay within an extra void not working?
Transmit date de HX711 by 433 Mhz RF transmissor
My cnc is not working properly
Hello every one , I want help pleas , i want to mointor the battery voltag with web server page with ethernet
Power saving for IoT device
I need a detailed schematic wiring all this components for a non soldering obstacle avoidance robot Components are Arduino, 4 DC motor, l298n, HC-sr0
Storing and reading R307 finger print sensor data from sd card
Alguien sabe cómo hacer que mi zumbador pille más rapido?:(
Servo loops 5 times then turns continuously
How to use Arduino mega with lcd 128x64
How do i start my project?
Connection to server fails after a while
Portenta WIFI and RPC compilation error
Same sketch doesnt work on 2 different arduino nanos
Max30102 heartrate sensor problem
Troubleshooting
Buck converter usage
Merging codes with Arduino
IR breakbeam sensor & LED display 7 segment together to make stopwatch
Arduino UNO Schematic
Arduino Code for GPS Data via Lora Node to MQTT Server
Activating coin vibration motor with arduino
Starting and breaking a loop with a joystick movement
ESP32 arduino cloud Widget not working
Code for project w/ wireless communication between board w/ gyro sensor and board with LED
Sending Arduino Serial print to Raspberry Pi
Fast.LED lib fade without slowing the loop
A4988 Stepper Unsmooth/Not Reaching Destination Movement
7-segment display stops
Arducam Mini OV5642 Plus With Arduino Uno and Mega
Compilation error: 'sendStatus' was not declared in this scope
How To use the Kalman filter with the BMP280?
2 buttons pressed
Got scheduler's multiple blink to work on nano 2040 connect
Como usar esp32 devkit v1 como un programador isp
How to add ON/OFF button in blynk
Leonardo Servo Control
How to use millis()
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to use this forum - please read
L298N motor driver not same speeds for both of the motors
How to make HTTP GET by PIR only once
PWM to MOSFET - output too high
One pushbutton change led lighting timing
LM35 & DTH11 Sensors getting hot
Not loading to LCD
Sending through a signal
What is the best way to snub a bipolar stepper motor coil
Arduino Uno Not Working
Arduino quiz with LCD
PN532 NFC Module I²C Pinout Confusion on ESP32 Dev Kit (30-Pin) with Shield
Arduino uno Loadcell "if statements error"
Remote tractor Shutdown Ver 2.0
Issues with L298N heating up
0 votes 0 answers 21 views Arduino IDE on LINUX system, how to use the #include directive to get files specific from a NAS
How can I read data from a PS4 controller using an ESP32 and send it to an Arduino Mega?
Expected unqualified-id before 'else' help
Turning the arduino on and off frequently
Gpio pin not turning on
Why aren't my servos moving?
Ayuda con mi servo
Add arduino read data from sensors
Arduino RPM Light using OBD2
Stepper motor random direction change
I2c master and slave in the same board
FastLED Set color by HEX code received by Serial
Upload error: Failed uploading: uploading error: exit status 1
Hi everyone, i am getting error on code generation, can anyone help me?
Is it possible to use PWM signal controlled by BLExAR to adjust the frequency of a signal generator?
The serial don't send me the same data with the same string
Arduino Uno and multiple shields
DRV8825 arduino
About the Getnumber() library
My code was working, now all the outputs are 1
RC Kart Using MDDS30 and Arduino Uno V3
DFPlayer mini Programe
Arduino e workshop4
Redefinition of 'RF24 radio' error message on compilation
Finding troble in upload blank sketch into nodemcu esp8266
PT100 Temperature not getting correct output
PCM library is not working with Arduino uno R4 Wifi
List the forum sub-categories as an actual list
Pausa de 5s al inicio
'class ModbusMaster' has no member named 'write
PT100 Temperature not getting correct output
Seven segment LED for cathode
DS2413 1-Wire 2 GPIO drive relay
Duetimer incompatible with FastLED?
12V Relay Drive circuits conflicting with AnalogRead of Battery
Use of hardware
Problem with Adafruit Motor Shield and Arduino Uno and mecanum wheels
Seven segment LED for cathode
Trouble uploading
Seven segment LED for cathode
Create array and how to pass to a routine
I have a problem with programming tilt sensor
Using SPI for IO Expander
Issue with Seven segment ghosting
TouchScreen Velleman VMA412
2 Ultrasonic Code with if
How to solve: error: expected constructor, destructor, or type conversion
Need help using IR
Relay does not switch off although Arduino sends the signal
How can i make while loop work faster
Ironman Helmet with servo and sound help
Continuous rotation for stepper motors
Visuino - Some basic questions
Help with program, can't figure it out!
Help With Error Code IRremote
Stuck on activating a relay
Hard Resetting via RTS Pin Problem on WT32-ETH01
Something is wrong with my millis() timer
How to shift binary into a shift register (serial in, parallel out) sequentially
Encoder on PIN A2-A3
Interrupt on nano and detach
Getting 12 volts from Arduino?
URGENT circuit mysteriously stopped working
Problemas al subir mi sketch a arduino uno
Help with PID Control Project
How to control Arduino from another 2 or 3 Arduino combine with Blynk IOT and timer
Arduino y GRBL, compatible con otras placas?
Remote command (internet)
MAME ARCADE STICK with 16 keyboard keys using Arduino Leonardo
Cierre para taquilla electronico
LED's not lighting up unless bridged
Arduino Mega cannot run programs that need over 70kB of memory [solved]
Error push button
Problem with Serial.print frozen my sketch
Need help with MG99R pan tilt
7 Segment Display not working right
BLDC Motor Controller with Arduino, keeps broken
Error compiling LED/photodiode script from Arduino Mega to Arduino Nano Every
Three soil moisture sensors problem
Relay resets the atmega328p
Best Developer Board Suggestion
Using ESP 32 with a program to run Room and coil sensor
Pause code while keypad value not given
Arduino button press
Adding rotary dip switches
Error Compilling Screen tft LCD 2.8 + Sensor
Uint8_t trigger meaning
My LED strip doesn't want to light up
How to make 2 pins do the same thing?
Serial communication problems 2
How to reset every pin when changing between functions?
How do I code the motion in this animation using 4 servo motors?
How to program Pin D5&D6 in Arduino nano both at a time?
Help needed: generation of 2 PWM outputs using the same Timer
NRF24 and arduino 2560
Hello i need a help for arduino uno
Raspbian+arduino 1.8.13+nano don't work
Expected’,‘or’,‘before long’ error
Expanded scale on a LCD bargraph?
Error message byte 2
Arduino server stops responding after a while
I have problems with LDR in my project
Arduino mega to esp8266 communication via TX RX
LSR to control servo
LEDs Help required
Cd player controller
Svietenie lediek cez potenciometer
MI ESP32-S se calienta
MPU6050 as basic compass
Pls help. Unable to club two different codes in one
Error carga ESP32
EK-3000I weight measurement to arduino from RS232C to max3232
Controlling brushless motor with PCA9685
Problem with Circuit 1 in examples
Does a input need to be pulldown
[ESP32]Lilygo TTGO T-Relay with PWM Fan Speed Control via Blynk IoT?
Probleme envoie d'une requete Arduino shield ethernet
Nextion no changing pages or printing text
Automated Segregation trash bin
Hey there, currently doing a project that is literally driving me insane
Upload sketches via USB Failed on 2560
Problemas con codigo
Soldering station help
Is Arduino UNO going bad?
Help for code stepper motor
Nano serial com issue
Need help at coding
7A/160W motor driver module
Servos are not running on this code
Error when trying to send an image via FTP from ESP32-CAM
Name of motherboard
RF remote switching
Control 8 channel relay module by arduino uno and nodemcu
Assigning binary values to ranges?
Looking for Robot car and line tracking code
How to add ON/OFF button in blynk
Cannot compile sketch
Arduino& python serial
Timing with using millis()
Why is my Ultrosonic Sensor working on my car without power?
SD Library Works. SDFat library does not
Using Millis to blink two leds at differant durations Problem
Combining 360 degree continuous motor and force sensors
Automatic break system for train
Arduino Tutors?
Power factor and current measurement
Problem saving Sketch after installing IDE 2.3.1
Two sensors on the 5V pin
Not working with Arduino Mega
Difference in Serial Communication UnoR3 Uno R4
Lm016*2 lcd doesn't work
Wireless charger module
Issues using Arduino micro to control volume keys
Servo control on ESP32 S2
Button Matrix CD74HC4067 not working
Using 2 linear actuator with 4 limit switches
Imposible subir codigo a ESP32
Need Help, trying to make a neopixel flash (predetermined) random colors
Temp sensor how accurate
Dot Matrixes not displaying programmed display
Getting erratic behavior with RFID reader
Help with motors - only forward or backward. [L293D & NodeMCU v2]
Multiple ultrasonic sensor not working but wroking indivisualy
Best way to connect Photodiode to get Boolean result?
How to Code 28BYJ-48 Step Motor for Vending Machine
Esp32 programming help needed
Adafruit Thermal Printer Bitmap (1/2)
Informing the location of libraries
Noise and miss sound from MUX channel
Can someone pls correct this code
Arduino code problem : change scrolling text when button is pressed (THANK YOU)
ESP32 Wroom and CCS811 sensor
Inskape path problem
Stepper motor making knocking noises when being programed please help!
My sensor was working 5 mins ago then it stoped working
WS2812b fastled
Protocol for sending analog time-series data over Bluetooth
Midi controller with encoders
Replacing an ATMega328p with STM32
Nano serial com issue
Delay in Bluetooth
Help with stepper motor code
Create code for Arduino
TFT SPI 3.5 screen does not work
Elegoo Smart Car v4.0 : code lost
Storing Data from BMP280
Trouble with LED trigger
Serial communication Error
Best LiPo battery for Arduino and 2 Sg90 servos
SoftwareSerial connection
Need 25 Pin as out put 2 pins for sensor & 23 for Relays
Cant get grove white on blue lcd to work
RFID Sensor Code
Error with Serial does not name a type
Arduino Serial Output
How to take analog signal sample at one perticular period
Error while burning bootloader with an arduino mega 2560
Nano 33 BLE as USB "Gaming Keyboard"
Can someone please help me combine two different codes and save data to USB flash drive?
Master and slave at the same time
Cannot get code to work with ATmega328P
Serial.read() from Arduino IDE and Python different?
LCD and screen together
Arduino Losing Serial Connection
Countdown timer using 4digit7segment with Hour:Min displayed
Testing transceiver using Arduino
Using Second Serial Port on Arduino Uno
Code help required
Stepper Vibrate - Empty Arduino
SSD1306 display troubleshoot
SSD1306 display troubleshoot
How can I invert my sensors for my zumo bot?
How to start a second sketch in web IDE
Errors with .init
Servo motor not working
Fastest, Simplest, and Easiest Hall Effect Tachometer
Keyboard Instrument with Song Detection
For loop running twice
Stepper on off with pushbutton please help
Same timing variable returning two different times
Arduino 2 button calculator
Connection problem from RS-YL-N01-2 Rain gauge to 'max485 ttl to rs485 converter module' to Arduino UNO
Problemas con la letra ñ y las tildes en las vocales usando SIM800L
Ocupo ayuda con mi tarea
Square wave on serial plotter
CT SENSOR Calibration (Very Important)
How often does an arduino check a value
Guitar Envelope Follower Help
Is it necessary to power a motor via an encoder?
Dht11 sensor and servo motor
Set Timer for automatic pet feeder
How to control motor
Loss of internet access but not Ethernet Arduino mega with Ethernet shield
SoftwareSerial Bug?
Arduino ide expected primary-expression before }
Sum and casting suggest
ILI9486 TFT touch screen caused unexpected circuit behavior
Flash sequence numbers
L led, and TX, RX lamps resetting void Loop
ESP32-Cam. It takes photo data even if the camera pins are out
Why is my if statement (bottom of code) causing an error in my #define string at the top?
Use of Adafruit_SH1106 library cause fatal error: avr/pgmspace.h: No such file or directory compilation terminated
I need some help making a disco ball
DHT11 module doesn't seem to work
MCP4725 ardunio
Issue in String Comparison
Arduino and Raspberry Pi Serial Communication
Acceleration and button
While connecting the Nodemcu with Adafruit server getting this error - expected initializer before 'mqtt'
So many Ports on on the Official Arduino starter kit and the one that worked has gone into hiding?
Arduino and sensor issue
Using Arduino Nano as a IR Remote Switch
Program the arduino uno to control the speed in one direction of just one motor, using a remote trigger and bridge h BTS7960B
How to merge two codes together?
Error compiling for board LOLIN(WeMos) D1 R1
Arduino stepper motor driver
Saving two things to sd
Modify arduino leonardo code
Common code problems
ICM-20948 SDK out of memory when using DMP
Human following car using L293d motor shield
Multiple TFT Displays with Due using multiplexed SPI CS
Marlin firmware, 'init' is not a member of 'U8GLIB'
How to add a countdown timer with pause feature?
MPU6050 - Quaternion
IR Remote and Loop Codes
Using multiple ultrasonic sensors to give readings to a counter
Comm issue with SIM800L
Project: gas-sensor comparision
How can I turn off my buzzer esp32?
Set Timer for automatic pet feeder
Turning relay on and off every 5 seconds
Arduino DS3231 RTC coding question
Arduino joystick doesnt work
Keyestudio ccs811
The return value of millis () is incorrect
Integrating a switch
Converting from byte to integer in arduino
Converting from byte to integer in arduino
How can i code a button outside a matrix sketch?
My MPU 6050 is not connecting
RTC ds3231 - 165:165:85
Dolla Tek DS3231
Compiler errors with TFT ili9341
SPI problem with radio and SD devices
Need help with my code ASAP
Color sensor RGB
Nano - Nextion - Stepper
Missing library board files
Sketch does does not execute on UNO R3 + WiFi ATmega328P+ESP8266 (32Mb memory) USB-TTL
Send String via Bluetooth
All Arduinos loading on COM1
Serial Monitor error, using ESP32
Force Sensor Resistor to display weight and voltage
Rotary Encoder LCD Blinking text
Line follower robot with obstacle detection
Port monitor and Serial error
Serial connection issue
Adafruit SSD1306 & DHT Sensor libraries, any know issues?
Variating 5v voltage
Code needs double checking
Help needed with RTC1307 Code :)
Seeed Motor Shield V2.2 programming
Pls i need help for this error
NodeMCU does not light properly. Attendance system using RFID, nodeMCU and arduino uno
Error compiling code using VUSB-AVR board on Arduino IDE
Motion Sensor Light timer
Help required with Arduino, TB6600 driver and Nema23 Stepper motor
Can't Get AT Commands to appear in serial monitor for HM-10 or HC-05
Proyecto ESP32, con modulo xbee
Please read. Encoder sensor
How do I connect an Arduino MEGA 2560 With WiFi Built-in(ESP8266) to my computer to work purely as an Arduino MEGA?
RTC Alarm with DS331 Arduino Uno Sofrware Problem
Arduino Speen sensor from Joy it
I need some help with my sensors
'class HMC5883L' has no member named 'begin'
Power factor and current measurement
Can i use two I2C devices at the same time?
Definition and Use of the Command WiFI.mode
First try with .h and .cpp, Multiple Definition issue
Arduino no lee dos sensores vl53l0x
New to arduino and coding
Arduino Editor Issue
Error? DHTPIN was not declared in this scope
I2C LCD(16,2) not displaying text
Node esp32s v1.1
Hello i need a help for arduino uno
Can someone help me, for my 4in1 5pin probe RS485 THPH+EC Sensor, I have code but it doesn't read anything. I am using arduino uno for this
display.clearDisplay();
Schematic for my useless box (first project)
Code can run on tinkercad but not in arduino board
Fatal error: Adafruit_GFX.h: No such file or directory
Problem in running two sensor in arduino
Flash radiotherapy project (aka cancer treatment)
Sorting data before averaging
Arduino water pump controller
How can Arduino UNO/Nano generate 3.3 Volt?
Remote control (on/off)
Firebase stops working
Issue with interrupting Vl6180x x proximity sensor with esp8266 nodemcu v3?
Maximum channel frequency NRF24l01 - aboveGHz
How i can save string password in eeprom when i change password
Can't upload to arduino
My rfid won't read a card
My Ciphertext is not showing #esp32
My stepper motor driver LED won’t turn on when the power is on. Is it meant to?
Increase the number of led matrix to 8
I'm trying to write simple code to move my servo but cant figure it out!
Trying to get a longer tone out of this code
An error occurred while uploading sketch
Question about direct current motors
Tradução dos textos fixos do Fórum em Português
Arduino steering wheel help
New to coding on Arduino
Connect buzzer to temperature sensor arduino
chipKIT MAX32 - Serial Monitor
Engine coolant sensor trouble
DC motor turn on if sensor triggerd untril button pressed
MPX4115 is not working in proteus 8
Arduino Nano Output pins are not working
Changing existing code to match a sensor
PCF8563(RTC) time ajust
Arrays in a library
Errors compiling for Arduino Uno. Is my code faulty?
Error Playing a Mellodia "exit status 1 aggregate 'timer treplaceMe611347' has incomplete type and cannot be defined" using ProtoThreads Library and Timer
TFT_eSPI touch demo compile error
Restar for each pulse
Obstacle avoidance robot wheel not working
Compiling error for Arduino Code
Arduino UNO controlling led's on outputs
Lcd I2C 16x2 doesn't work
Intercept modem calls
How to fetch data from node mcu to arduino uno
Arduino Uno in Science Fair Project
1 year meter making
Gps tracking system by sms
Kalkulačka pomocou potenciometra a tlačidla
I'm new. Please help me with this coding
Convert serial printed time format to hours and minutes separate
Old UNO sketch has failed
How to replace the pin 2 in arduino uno
Send data from python by nRF24L01 to arduino receive data by nRF24L01
Parking lot project
About Theatre Chase effect on LED strip with WS2812b
Help needed to merge two void loops
Best display for Arduino Mega 2560
Trying to find the best way to power project
Automated Hydroponics Nutrient Solution Control and Monitoring
Issues Controlling LED Using Serial Reading of Potentiometer
OLED (SSD1306) and RTC (DS1307) not working together
How can I get 2 second delay on servo after pressing button?
Need help with motor
Struggle to run Arduino Uno Wifi R2 for more than 5 minutes.... :|
Problems with program freezing
Facing problem with EEPROM results
Help with figuring out power supply required!
New guy trying to learn
Cording error i don't know how to fix this ...someone can help me?
Rainbowduino ParticleSys error
TX to rx and RX to TX aint working correct
Basic Arduino GPS with LCD
How to precisely stop stepper motor with Arduino code
Servo rotates 180 degrees with UNO, but only about 80 degrees with D1 Mini Pro (esp8266)
Bluetooth module lib
SD Card fails to write every capture of IMU sensors
Usb sheild giving power to wireless charger and not keyboard
LED Cube Verticle Animation Failure
Why cant I control relay using both light and motionsensor at the same time
Error message : a function-definition is not allowed here before '{' token
Program for combination of falme and temprature sensor with 2 module relay
Sketch is too big
Creating a window of time using TimeAlarms
ESP8622 and MCP23016 .-. pinout GPIO.1 , 2 , 3 ... 7 selection
Proyecto de Expo joven 2023
Need help my code dost work properly
How to power arduino Nano with 9v Battery?
BLE ANCS Pairing Failure on ESP32 Using BLEDevice Library – Error 0x66 and Bond Loss on Repeated Connect/Disconnect
Modify arduino leonardo code
Serial.readString and pasreInt printing random data
Comparing two ds20b18 values
How do I declare for "sendCommand" and "getData"
How do I send a number from NRF24L01 TX to RX
So many error while compiling I dont know where to start
How to turn "off" or black specific pixels on a LED string?
Client.connect help
SIM800L not responding to messages
Included library needs to be inculded
Parsing numbers from RS232
If someone can help me i will be thankful
Please help, i can't figure out what's wrong with my code [solved]
Convert code from nano to work on mega2560
Usando exel com módulo SD no arduino
PROPOSAL: Earning "Full Posting Privs" badge format
How to show sketch for getting help
Timing Sensor input
How do I switch this from working with TMP36 to DHT11?
Esp32 to log in to windows with ssh key without password and send a shutdown command
Analog Pressure Sensors
La wemos d1 mini no carga pagina, conectada a rduino mega
Using Ds1302 RTC with Servo Motor
Self driving car with 10 HC-SR04 sensors using millis instead of delays
ARDUINO uno With Ethernet shield +php
Loading arduino MIDILibrary
Esp8266 v2 board
Coding in arduino ide
Can't get two rf24 to communicate
Problem with ds1307 rtc
IDE hangs on startup: "EPERM: operation not permitted, mkdir"
How to add velocity to your code
Proyecto comedero automatico
Millivolt/microvolt measurement
775 heating connecting to bts7960
Using 4fnd (seven segment dispaly) count down from 100 to 0, also buzz once hits 0
Multiple OneWire Buses
Anyone ever did a event handling to use ble and wifi?
I uninstalled drivers and updated with CH340 latest driver also i am facing same issue, i selected ESP8266 Generic module code simple LED blink
Robot bluetooth control and obstacle avoiding
Multiple NRF24L01 arduino r4 e esp32
Ruido electrico que resetea al arduino uno o al nano
How to make sensor properly?
I am having the upload error in this code
Alguien me puede decir cual es el error para arreglar es un alcoholímetro lo que no vale es la pantalla lcd16x2 que el texto sale daño y no se lee
Sending numbers with rf 433 MHz rx and tx modules
Arduino becomes unresponsive after sometime of operation
Implantable Identification Project
Arduino data transfer to smartphone with NFC
Charge pump circuit
Twitching servo using softwareserial
Capacitive Sensor Not Working on Long Cables?
Efficient way of programming for a six line signal
Using RGB LED light with all posible colour within 20seconds
How to get the best out of this forum
Servo motor only moves from 90 to 180 degrees
Arduino uno exit status 1
Looking for advice: detecting input within a timeframe after output
Activar una válvula solenoide en funcion de un Termopar K
Problems with PulseSensor_Playground libraries
A fatal esptool.py error occurred: Cannot configure port, something went wrong
NRF24L01 Transmitter and Reciver Not working
usbMIDI problems with the Teensy
Hi guyss can you pls correct this code , this have some mistakes plsss and i cannot find the mistakes
Offset pwm signals
Odd problem with PCF8574 expansion board
How to get the best out of this forum
Problem with printing out a random number
Photoresistors and LEDs
Error message - undefined reference
I have a ESP8266 and a website i want it to do something to visit the website
Board selection to control 120vac motor
LCD Display not working as planned
Tds meter not working
Error pops up when I try to use my Arduino
TFT lcd blank screen
Communication between TWO Arduino nano 33 ble sense
FastLED and WS2812
FastLED and WS2812
Sending sensor data to cloud server using Arduino Uno and ESP8266
Sending sensor data to cloud server using Arduino Uno and ESP8266
FastLED July 4th Red/White/Blue Scrolling Help - Why is this code not working?
Max Leds control arduino nano
Help with Motion Detection using Arduino Nano 33 BLE Sense
pinMode() automatically sets digital pin to high
Monitoring project for a small fish farm
Two sequence using a switch and 8LED
Self Balancing Robot project- wheels only spin in one direction
My Arduino gesture control project
Error in serial communication or uploading of node mcu
Building a Compact WiFi Modem for Electricity Meter with 12-Pin Connector
Simuler une pince amperemetrique
RFIDksj kate bro ha
Coding in arduino ide
Any idea i got this error ArduinoIoTCloud.h no such file or directory
Arduino Uno not connecting to my PC
Linear Actuator is not working with BTS7960
UART communication issue with NPK sensor and ESP32 LILYGO-t-sim7000g
Sparkfun esp8266 wifi shield not working
Elechouse Voice Recognition Module V3.1 is not saving recordings to permanent memory
Voltaje Mínimo para pin Aref
How the heck does this work (the Crudest possible way of switching a relay with ESP 01s works!)
BMP180 init fail
Flame sensore detects dire where there isnt
Modifying existing Sketch to trigger PIN 13 LED at set point
Arduino Nano Füllstandsensor
Exit status 1 'Mix' cannot be used as a function
Move servo motor at a distance of 6 meters
Not able to get data from the optical encoder
Hello i need some help with ultrasonic sensors by communition serial
Arduino Nano not uploading data to Nextion Display
Problem with printing out a random number
00 scale turntable project
Read SD file into an Array
Error compiling for board NondeMCU 1.0 (ESP-12E Module) related to firebase
Verification error, first mismatch at byte 0x0000
New User MQTT help
Need two more I/O
Error compiling for Arduino uno problem
Stop file from looping
Arduino as FM receiver
Cannot upload Puzzle Box Templet
Fingerprint not detected
Compilation error exec
Mobatools limit question
ARDUINO DUE -HeartBeat Pulse Sensor
MCP4725 sinewave generator
Port availibility
How to get the best out of this forum
Read SD file into an Array
Necesito ayuda con balanza con celda de carga
2.4" TFT LCD TOUCH SHIELD inverted
Conditionals in main function do not detect serial port value
ESP32 Battery Percentage
Read values from a 3,5mm jack
Bro, i got stuck with my code. can you solve this code to connecting to website
Command for pcm1738
Hello guys can you teach me how to connect my flame sensor, smoke sensor, buzzer, dht11 and lcd to my arduino? with the smallest breadboard
HDQ comminication protocol - compile errors
Multiplexer issue
'uint8_t' does not name a type
Pro micro/ sx1509 button box question
Trying to segregate serial data and drive outputs
Fine tuning fan noise
Getting low voltage from digital pin (0.5) instead of 5v
Level and quality of forum posts
Arduino Parola strolling text font
Have a problem with control the speed of 2 stepper motor
Boas precisava de ajuda porque quero enviar os dados de 4 sensores ultrassom por comunicação serial
Problems related to Infra red sensor
Modification of a timelapse program
WS2812B Don't light more than 31 leds. Need help!
Waveshare sx1262 HF lora module
How to add a serial port for instance COMX?
Converting encoder data to hall sensors data
Error code: 1000
Powering SIM cards with SIM800L
Trying to display Serial Data on my LCD Screen
Re: creating alert when system crosses geofence
Getting low voltage from digital pin (0.5) instead of 5v
Connection to Google Sheets failed Help pls :(
Momentary Halo Switch Circuit - Will this work?
Turning string output of function into a String
433mhz led control button
Can anyone change this code to use it as a class (preferly mostly private) couse there are some other codes into the code that uses these classes by calling them in swich case or if else
Shaking servos on robotic marionette
Serial Communication garbage while reading a char
Pull-up or pull-down resistor with PNP/NPN hall sensor?
Use Rfm9x without antenna?
GPS data not showing on my web server
Why motors here are not working? They worked on a similar scheme
Can't find zip library for 2.0.0-beta4
Control_Surface.h Library display CC Values in Oled
Hi i need help to make this logic design project
Simple solar tracker
Library of the code
Arduino Ev ery and Library DS3231_Simple
Old Landline Phone To Ardiuno
WROOM32 not in IDE
Can anyone please help me to edit the below codes for the sensor (in the link); Arduino; Ammonia sensor; serial communication codes
Water flow sensor does not work correctly when adding a power supply to the circuit
Exit status 2, no serial data received. My first topic
Problema de conexion entre Modulo AT-09 y dispositivo mobile arduino nano(Problem connecting a AT-09 Bluetooth Module and a Mobile phone arduino nano)
How to make "Hello World" on Oled 128x64 SPI
Problema en el codigo con conexion wifi mkr wifi 1010
ADS124S08 data reading problem
RFID AND SD MODULE Problem in a project
Connecting between two NRF24s
Esp32 cam error
Need input please
Esp32-(xQueueGenericReceive)- assert failed
DS3231 Code - Clarification
HX711 with Arduino
School project, automatic closed box solar system
Calculating frequency through analog pin
I need help with my code to control 4 servo with 3 Potentiometers on different sequence
usbMIDI problems with the Teensy
Problem with if()
LilyPad Arduino Pinout
Serial command and carriage return
5202 Motor Speed with RC Control
How to properly insert delay() function
Arduino IDE code uploading errors
SerialSoftware Problem
Nano 33 IoT I2C BLE
ESP32 touch pin to control relay
Adding Libraries- No luck
HC05 - ZS-040 board Firmware v1.0.2
Send SMS once Arduino is triggered via a push sensor
NANO - Uploading forever
(Uno R3)Ultrasonic sensor& servo troubleshooting
LED Ultrasonic Sensor
RS232 to TTL conversion last bit error
Haxapod arduini mega 2560
Esp32 push Html var to Arduino String var
How many ADC Pins Portenta H7?
How to programm a panic button
Nrf24lo1+ with adafruit fetaher M0
Rolling Ball device, ball sensor-tripper
Braccio arm no power to servos, UNO R3 not taking code
For loop only runs once
I cannot compile
Weather station sketch crash after a few hours
Arduino Fingerprint Coding
New and need help with my code
LCD monitor not working
Strobe Light Effect, HELP PLS!
Serial.println only printing out 0's
Scotchy diode dead
TSL2591 turn on LED, how do I write the if statement
Why is variable "r" always one, even if i ground pin 3?
Stepper Motor turns once when powering up Arduino Mega
Start code with a button
Help with P channel transistors
Please Help! Programming or Wiring problem
How to stop repeat? basic questiom
Is my RTC ds3231 dead
Program Files (x86)\Arduino\arduino-builder returned 2 Error compiling for board Arduino Nano 33 BLE
External Interrupt speed for Nano 33 BLE
Creating a multiple pulse generator using arduino
Arduino Not Lighting Up LED
Soil moisture combined with Temperature sensor (BME 280)
Nightlight LED not working
Multiple servo with multiple sensors
ESP32s2 I2C Scanner not working
Multiple servo with multiple sensors
6 LEDs have to blink, after a button is pushed, but not held
Using simple feature extraction to control lights
I need help with my Arduino UNO!
I need help with project
Proyecto con varios lectores RFID
Fallo pin 13 arduino uno
Mqtt return value is -1 (arduino mkr wifi 1010 + microsoft azure iot hub
Show up text on a 8X8 LED matrix, character by character
Can't compile code
Set but not used? Really?
(esp32- cam with module ov7670) Camera probe failed with error
Modulo de bluetooth para audio
Funciona bien una vez y después se reinicia attiny85
Counting the number of distances measured in one minute
Self balancing robot fell down after picking some speed
Read buzzer - piezo with arduino
Compilation error: exit status 1}
Touchscreen connections
Self Balancing Robot project- wheels only spin in one direction
3,5mm jack input to digital value in arduino
Help with crypto display
I get this error how can i fix it
Distance Sensor - False Positives? [solved]
Homework Help Section
UNO+WiFi board / Port disabled
Help with code on board and blynk reporting
Arduino, ESP32 , PS4 controller
Need help solving
Stepper motors not responding
I2C protocol + Serial comminication
Frequency measurement using hb100
Ada yang bisa bantu?
Can FS-INS-16Z replace FSR sensors for a Unity/ESP32 squat posture project?
Struggling in using millis() with ultrasonic sensor and some conditional statements
Keyboard, Leonardo+USB host shield issues
288YJ-48 Motor Continuously Spinning in a 2 Motor (Joystick Controlled) Setup
Magnetic Guide Sensor with RS485 and Mega
Having trouble sending and reading 2 bytes from Serial Port
Digital Relay Box
I have connected Lcd ,adruino and breadboard but the lcd display not showing the text that is wrote on the code of arduino
Mini Project Arduino Code help
Help: Arduino pump that dispenses to a target weight (4×4 keypad + load cell)
Robotic arm using 6 servos by Lithiun ion batteries
Arduino Uno Variable frequency generator
Ov7670 and esp8266
Trying to run python on NANOESP32
Everything in this code works great except for the stepper motor which just vibrates a little but doesn't spin
IFM pressure sensor
Programming Error: expected primary-expression before token
Why is my servo sticking?
HC-05 Bluetooth module not working correctly (with videos)
Prototipo escala con 4 celdas de carga
OSOYOO smart home mega2560 help
Current or voltage control by PWM?
Multiple led's random on off
Sensor zmpt101b duda
Arduino Mega 2560, and Modbus Slave RTU Library
Need help for adding limit switches
Ir sensor trouble
LCD with shift register issues
I need some urgent coding/circuit guidance for my project!
Help, Encoder EC28A Android Radio
How to fix this
Expected primary-expression before 'void' please help
GC9A01 display using 8 bit Parallel on ESP32
Programming BL602 (Ai-WB2-32S) with Arduino
Arduino MKR ZERO DAC resolution
What is the error in Adafruit_LiquidCrystal.print(" by L.L. ");
Expected intializer before string
Integrating MH-ET Scanner to TFT code in Arduino
Writing in CSV file on SD Card
Arduino port problem | COM port not found
Switch With Led
How to connection arduino nano with modem usb gsm?
Problem with my script
Trying to Display Time using time.h
The compiling isn't bieng done!
Duplicate button utilized on button box
Problem with tft 3.5 ili9844, There is no way to get the Bmp out
Pro Mini 3.3v 8Mhz Died in 5 mins
Terminate Return()
Looking for easy VR3 for relay shield code help
Where can I find electronic circuits classified by “difficulty level”?
Can I Use Arduino on a Windows 11 Machine To Connect To Mission Planner?
Esp8266 water flow meter 0.96 OLED screen
Digital clock with an OLED 1.3" 128x64
Secondary Clock ''СТРЕЛА" made in USSR
Error: 'FastLED' does not name a type
I cant drive my dc motor with arduino and L293D IC
Help - Problem with Green LED not staying lit
I have problem with project
Error when I upload
Upgrading Issue: RuntimeError: Click will abort further execution because Python 3 was configured to use ASCII as encoding for the environment
Help need for counter status
Exit status 1 Error compiling for board Arduino Nano
Giga + motor encoder + digitalread
Nano Matter on Apple Silicon machine without Rosetta
Problem with demultiplexing and multiplexing
Confused about max amp on boards
Binary not received by board (MKR1010)
2 DFMini mp3 players not working
Arduino computer serial connection
Please help me i die in all this errors😥
Very simple Ultrasonic sensor and distance sensor
Stepper motor not turning correctly
RGB LED not lighting up
Firebeetle ESP 32 error or my laptop?
Error overring baud rate
Possible nRF24L01 code Issues on a RC Car
My code so I can have it evaluated? And maybe be guided
How can I duplicate the 5V and GND pins on the Arduino nano board?
Using Speak up click to control motors
Bluno Beetle BLE only works when serial monitor is open
Energy meter with arduino
The use of millis
Bearssl/bearssl_hmac.h: No such file or directory
Arduino won't compile. I get error message
48V to 12V dc stepdown using TIP35C and 7812
Variable voltage controller w current sensing
Comparing two output
Serial(bridge MPU-MCU) Serial.available() call hangs mcu for 4.5 to 8ms
How do i wire this stuff?
Problem whit this code pls help
Goole Chromecast manufatures code
Servo and MPU6050 IMU problems
Need help with an 8 step sequencer
Arduino MIDI device issue
Bend labs one_axis_ads
Color changing neopixel with button ending with2 white LEDs
Problem in serial communication and i2c lcd display not working togeather
How to make multiple menu on oled display wth esp32 and button
I need help for programming three voltage sensors
Serial commands from serial monitor queuing
Nrf24l01 receiving random data
L293D motor speed problem
How to get the best from this forum feedback and comments
How can I specify this task in if ? is this even possible?
Issues with NRFL24L01+ modules on project
Buttonbox not compiling
Looking for someone to check my schematic
Communicating two Arduino Nano using SoftwareSerial
Errors with bytes on sketch
Serial comms, Micro > Micro Pro
Bend labs one_axis_ads
Second value of Serial.println() is always 0
Plotting points on a cartesian coordinate plane with given degree and distance
ESP8266 with PxMatrix for P6 RGB 32x32 Matrix
Payload: Arduino - The Things Network (Arduino MKR WAN 1310)
External Pin Change Interrupt not working Instantly
Help cant work this out
ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]_
Problema con las banderas
Communication speed of NRF24L01
Keyboard Code Error Arduino
Using Accel3 from Mikroe
Help with programing arduino
Accelstepper and RF24 compatibility
Errors with bytes on sketch
On/off button for code
How to stop music on DFPlayer mini
Running two applications at once
Two or more data types in declaration of 'timeout'
Developing an Arduino Uno
MKR Wifi 1010 doesn't connect!
How to display Full text in LCD with i2c board
Problem sending string using I2C
Electrostatic Discharge/ ESD troubles with Wool + Arduino Unos + Ultrasonic Sensors
Making servo go around while holding a remote button
Problem in Getting Stepper Motor to Rotate
Errors while updating boards
Li-ion Discharge Charge Circuit
Connecting esp32 to wireless headset
Elevator with 4 floors
Porque no me va este codigo y me da error?
SK6812 RGBW Jim Bumgardner hack
Making servo go around while holding a remote button
Inconsistent behavior
Arduino exit status problem
Absolute Noob coding question
HC-05 Master slave latency
Homework Help Section
What would be the connection system of a type K thermocouple with miini-thermocouple connector .792 mm (0.312 in) pin spacing to Arduino
SD arduino open&read fails
Arduino uno lcd 16x2 i2c and serial print stuck can't update read data sensor
Arduino Interface with node-red
How can print float to a TFT display
Mega 2560 r3 wifi esp hangs when not connected to USB port
Water boiler controller help needed
Can anyone help me to program a line follower based pick up and place robot
New Errors and Ports Not Working Anymore
Project on automatic parking system
Doorlock.. Proplem with the servo motor
Weather Monitoring Station Using Telegram anf Blynk Cloud
Arduino Grbl has not finished uploading. Getting error
How to auto reconnecta client and retry if the connected server disconnects / W5100
Automatically railway crossing system
Problems with receiving data with espnow and sending it to thingerio iot
Hello I am not able to send a binary signal like from python to Arduino
Arduino - bluetootth
Clear interrupt flag using software
Struggling with bouncing servos
How can print float to a TFT display
Solar Powered tracker
HELP ME! Arduino don't write SD-Card in the sector 0
Stepper motor Eleego Kit Starter
Getting an error using the ESP32Servo Library
Question about Arduino Nano Every and Button, LED + Serial
Controlling modded servo continuous rotation
My ESP crashes running my code and restarts itself
Nrf24l01 stm32 arduino uno communication
Is there a code that counts the number of people in front of the sensor?
ESP8266 disconnected
How to measure stator current in 1ph induction motor
Nono + momentary buttons + 2 relay module
Pass data From Arduino to PHP
Invalid conversion from 'const char* to 'char' [-fpermissive]
I'm new with arduino, I'm having difficulties
Shift register with millis possible?
LCD display show weird character while using Serial port as input
Portal web seguro w5100 + arduino mega
ESP32 SD-Card Stream download, sd card failure?
Preset position of a slider according to video timeframe
Room to optimize code
Drehimpulsgeber / BIN Ausbabe - Fehler beim Abwärtz Zählen
My AT command Software Serial is not available when im using a Software Serial for GPS data
Ribbon cable to pin out
Three Phase Square Wave - An error occurred while uploading the sketch
Controlling servo direction using one push button
Controlling a relay with a limit switch
ESP32 camera - serial monitoring font break in output
LORAWAN device With RFM95 on Arduino Pro Mini
Using step motor for full and half step
Adafruit 8x8 1.2”
LCD keep flicking
Initializing SD card...initialization failed error
Timeout Error (serial)
Df player mini, can any one help me
A too long array?
Error compiling for board Arduino NANO 33 IoT
Use of AI-generated content by forum helpers
Temperature Controlled Fan with i2c LED
NEED SOME HELP ON "sendeMIDI"
Arduino Uno R4 WiFi connecting Adafruit Sensirion SH40
Adafruit BMP388 Board Arduino Code Error
Void Setup error
Help please w.r.t <Do - While> instruction
16 by 2 display with I2c module not working with r4 wifi
Please help I'm new
Yet another garbled monitor output
Wemos d1 r2 sinric pro contact sensor
How to create a Random movement for interactive art
Arduino and stepper circuit pin diagram and upload code
Módulo de Arduino
Board time out issue : Mega 2560 with ESP8266
Problem with code or compiler
Pin-Configuration of the ECG-Chip AD8232
Does State machine coding work on Nano
Arduino: 2 digit 7 segment display with temperature sensor
Need help with attachinterrupt, it affects other functions under void loop
Receiving 5 volts as an input, and then sending 5 volts as an Output
Error compiling for ESP32
Programming push button to start timed Servo Sweep
Noisy AC voltmeter
NRF24 not receiving. Help needed
Wemos d1 r2 sinric pro contact sensor
Arduino uno midi system exclusive
Powering a Sparkfun pro micro project from lipo
I want to add an action that repeats forward and backward indefinitely when I press the 't' button
Me aparece este error
Expected '}' at end of input Arduino Nano Elegoo
What is exif.h ?
Arduino to control 3 DC motors
Optical Bubble Sensor BE-A 401 (Panasonic)
Moving from a USB cable to bluetooth
Controlling a servo with 5 wires
How to use ultrasonic sensor and activate LEDs through it?
Calculate distance Mega Ublox NEO 7M
Voltage sharing across multiple peripherals
Servo sweep doesnt work
Libz.so.1: failed to map segment
How to maintain original data using strchr
Strange behavior in communication with arduino and Tcl/Tk
Condition not fulfilled yet it execute
Ad5933 not I2C scan
Unable to compile for esp32 dev board module
Unable to access .h files
Linear Encoder (suspension diagnostics)
Uno board not works fine
While function not repeatedly checking state
Can't get LED to flash (like an indicator / blinker) in this sketch
Striped lines instead of cymbols on startup program
NRF24L01 Transceiver Not Working
Wemos d1 r2 sinric pro contact sensor
Stepper motor controlling using blynk
Ttgo lora32 v2 and ds18b20 temp sensor
Arduino Nano V3 only runs sketch correctly after hitting reset or starting serial monitor
DC motor with L293D not spinning
Light a LED based on a Sensors activity
Need help with a project (5v .2amp fan system)
Sinusoidal lighting system
Copy to clipboard in a captive portal
Does anyone know the solution for this one? it is already closed so i didnt see the solution. Sadly I am having the same problem
Sending a text file using esp8266 \
3DTouch Auto Leveling Sensor
How to use SWITCH?
RF433 and FastLed, problems with condition
Pressure sensor LCD I2C problem
Codigo para modulo relé doble canal
Xiaozhi ai on esp32s3 and '96inch display
I can't compile my program
Simple keyboard string read won't work on Mega
Limit switch with Nema 17 and A4988
High Resolution Gyro Question
Problems with serial.read()
Problems with a new board that cannot get stufff uploaded
Combinations of relay having delay
Strange behavior in communication with arduino and Tcl/Tk
Problems with int errors
Controlling 12v dc fan and light for a classroom prototype
Final touch the project
Arduino get function pass var from sensor reading
Differential steering with stepper motors
Need help when i was open the aurduino file the massage reflect "error could not create the sketch"
Controlling multiple stepper motor using ESP32
Light a LED based on a Sensors activity
Debugging ESP32-H2 in Arduino IDE 2.3.3
Help needed with multiple relay switching issue!
When I use the same code how2electronics provides for the NPK sensor, the Max485/Modbus to TTL converter we're using returns only FFFFFF
Unable to send RAW IR code to an AC
Light a LED based on a Sensors activity
Working with DGS spec sensors and Arduino Mega board
Send live location using a push button on emergency number
Arduino code won't compile seeking help
Need help whit code for ir controlled step motor
Serial Port Interrupts?
Basic limit switch question TB6600 Arduino Uno Nema 23 reverse motor direction
Latching Footswitch to MIDI Converter
L293d with PC fan
Smoothening flow sensor output
Project stopped working between Uno Bread Board to ATTiny 85
GPS/Web/WebSocket/Arduino Project
Ardino uno error uploding
Brushless motor and code
Sainsmart 5 inch display, Compile errors
Arduino RFID Card System
Reading an ATTINY24a
Move Redrex Stepper Motor using Accel
How to split battery voltage and adaptor voltage?
Arduino RFID Card System
Multiplexer Issue with FSR Sensors on Arduino Uno
Logging sensor data from BMP280 and BNO055
Please help me !
ESP01 8266 not responsive
Running sub-loops causes software to lock up over time
Sainsmart 5 inch display, Compile errors
Securing firmware and storing secrets
Problems with a new board that cannot get stufff uploaded
Homing for Stepper Motors with 2 sensors
Servo mouth audio triggered star wars
Interrupt execution delay
High signal detected although nothing is connected
Interrupt execution delay
Error 1 Error compiling for board Arduino Uno
Delay Function Error solution
If statement executes but should not
Assign static IP and set host name
A school project Garbage classification
How do you make an LED increase in blinks based total number of times a button has been pressed
Why is each y position pos * 9 + 1
Esp32 arduino getstring()
Arduino - Bluetooth - Programming problem
Arduino Uno reading Modbus holding registers
How to get the best from this forum feedback and comments
Problem displaying variables on lcd screen
Convert code RHT03 to DHT11 ESP8266
Tft display draw number in reverse digit
Smart bottle holder
I2C 20X4 2004 displays 2 lines with blocks only
How to use sendSMS sketch?
Conflito entre macro e LiquidCrystal_I2C lcd
Error compiling for board ESP32 Dev Module
Mega 2560 wiring question
Do i need digispark drivers on every pc where i plug it in?
FONA not found / SIM7600G
Repost: Serial Monitor Showing Strange Values
Please help me !
Expected primary-Expression before 'sonic'
Exit status 1 Error compiling for board Arduino Nano
Data too long for SD to Read?
How to get the best from this forum feedback and comments
Błąd kompilacji dla płytki Generic ESP8266 Module.
One wire digital temperature sensor read EPPROM
How to take 1 bit Input from Bluetooth using ESP32
Rgb tft lcd interfacing with a psoc mcu
Error in code when compiling
Cómo se soluciona exit status1
Arduino and Loconet library
Code doesn't work
PID algorithm to control flowrate through a valve
Portenta x8 update problem
Using Arduino nano to read serial data from FX 3G PLC (RS485) port we can't get actual data reading
Knight rider PWM
Arduino Nano R4 window compatible issue
MCUFRIEND_kbv Button example incorrect Press with Mega
Help, Encoder EC28A Android Radio
Arduino Problems in Coin Acceptor
Load cell + led arduino uno
Invalid conversion from 'int' to 'uint8_t* {aka unsigned char*}' [-fpermissive]
Code Error while compiling
Issues With Multiplexing 16 to 1
My Serial Plotter is not giving any output
Strange Sound Issue with Octobanger Project
Hae . am having trouble ending the while loop, when the sensor value reaches threashold the lcd displays fire alarm but when the value is less than threshold the lcd still display the same text
Code given error
Arduino UART with esp01
Compilation questions
Wemos ESP32 D1 for UNO --TMC2208--Nema17
4 digit binary counter skipping
Cannot load provided drivers
Honest hire for converting existing sketch?
Code gets stuck on the last note of the melody after being played
How to use SDI-12 in MKR WIFI 1010
Fatigue Monitoring Device
Is Uno R3 still relevant?
Adding extra bits when sending instruction to LS7366R
How do I make the timer remember the time that was placed on it, without having to enter the same time every time
Not loading to LCD
3DTouch Auto Leveling Sensor
Expected declaration before '}' token
Problem with Arduino, load cell and LED display
ledPin was not declared in this scope, unsure why?
Pro Mini + GSP + GSM + Blynk
SPI function calling error for Arduino Leonardo
"Error compiling for board Arduino UNO" message
Libreríaspara joystick
Magnetic strip card reader project
How do i compare a string if it has been entered two time using serial.read input?
Expected declaration before '}' token
JawDuino Error SoftRcPulseOut' does not name a type
MPU6050 gyro sensor and WS2812B Led Strip Turn Indicator
Error compiling Esp32 Wrover Board
DC Current Measurement using Resistor Shunt and OP AMP
Nano TMC2209 Stepper Power
Accessing recorded data of Arduino Uno
AD5292 Digital Pot Help needed
Need help with programming on Blynk
Programming bipolar motor to specific number of steps
HELP with send SMS with SIM800L after RFID tag confirm
Help my code is not doing what I told it to do (ACNH auto nook mile collector)
DPWM on Arduino Uno
Mega 2560 is it good to
Millis timer has a mind of its own
Keypad Matrix with Analog Ladder issues
Tengo un esp32 que no lo detecta iot cloud pero arduino agent create si
I need help to my code!
4x4 matrix keypad with all alphabets code with arduino using i2c with sx1509
Hexadecimal value divided by 2
Dht11 program error
Problem with a wemos R1 D2 Board
Analgue Input gets zeroed when both Digital Outputs High
Using Arduino to count the number of times a water pump starts
Help me connect my flutter with the bluetooth
TTGO esp32 case
Library for LoRa communication in Arduino Nano 33 Iot, Ble, etc
Tx pins not working on my feather
Attiny 85 module not showing up on any port in ide
I need help to my code
Home automation code
Trying to open a Sketch to blink the on board LED
Trouble with reverse steper motor
One button library long press
Error compiling for digispark board (default- 16.5mhz
Issues with LVGL and the web editor - "../../lv_conf.h: no such file or directory"
Can I increase the resistance of my linear potentiometer?
Changing Pot MIDI Channel by Bank Select
DS3231 Read Time Error
Printing from an array which is a class member
I am having problems with my robot not seeing the white lines on the Mini-sumo arena
Help with distance and moving to a particular place
Avrdude: ser_open(): can’t open device <port>: access is denied
Paging with LoRa and Oled
No puedo compilar arduinoFFT
Need help with programming this EL125 HK RFID reader
Generalised posting explaining how to change from a LLT-writing style to a productive style
Hi! I have problem with this code.May someone help me!Thank You!
Powering 12v linear actuators with L9110s
Pin connections for stepper driver Proteus project
NeoPixel stops Refreshing after Array Usage
Matlab Fuzzy Logic Conversion to Arduino done but confused
Error: undefined reference to `pinMode'
What to buy ? TWS and bluetooth board
Arduino could dashboard not shown temperature data
Programm simple battery ok / not led blink
Is it possible to Instantiate more than one object of the same hardware? (OLED SSD1306)
Help with coding for ws2812
I have problems with IDE 2.3.2
My RFID doesn't work with Arduino Mega 2560
ESP32 Wifiserver fix client ip address
Port Not showing up (CH340) in ubuntu (Solution)
Alexa NOT Controlling LED_BUILTIN
Touch Input Piano on ESP32, Passive Buzzer with strange output when using Serial print
I need help because my lcd 16×2 screen with i2c module isn't working properly
Arduino code uploaded success but nothing happens arduino uno
COFFEE Needing help with an ESP32 project
5v motor activated by IR remote control (HELP for scientific project on bird's conservation)
Getting back to Arduino
Error Compiling code for esp32
Issue with the Neo-pixels
Pairing W2821B Led's into individual Sudo Pixels
First time user, have problem with LCD shield type
How to compare rfid code number with code number in a list on sd card
Single shot analogue read
Transmission line fault Detection arduino code
SDC40 from aliexpress
A simple PWM beep using timers 1 and 2
Programing error , 'class CShiftPWM' has no member named 'SetRGB'
I am having problems with my robot not seeing the white lines on the Mini-sumo arena
Nokia 5110 problem writing variable to screen
Multiple SPI interfaces using arduino NANO 33 BLE sense REV2
PWM output copy value on input (pulseIn)
I want to scan 5 different qr code to activate the servo
Sequential Startup - Code Help
Water Glass weight with sensor JOY IT
Understanding Joystick Programming
LCD SNIFFER using Arduino
Complete this code
ST7789 Temp Display
Es un proyecto con arduino y app inventor
Newbie here- can somebody help me with explaining the code here and the shematics
Compiling, uploading or resetting outputs HIGH
Sending and receiving bytes through Bluetooth
Lavitating water drops
How to trigger relay for 10 sec and then switch off for 10 mins without time module
Compiling, uploading or resetting outputs HIGH
HELP! I am making an under water ROV and am using 4 dc brushless motors with escs
SoftwareSerial Bug?
Stuck with NRF24 modules
I have completed training for Tensorflow lite model on nRF52840 sense. Can you guide me with a basic program for example: Using I2C OLED Display to di
Error esp32 upload CAN ANYONE HELP
CC1101 Transceiver, and NANO
Arduino nano failed while testing ESC and BLDC
Different results with same board and code
Esp32 code compiling error
ESP32 getting BPM to serial monitor isn't working
Ch376 communication error with arduino using spi
Help, my teacher sucks. i need a code
Adding accessories to arduino pro mini
Compilation fails: "ctags: cannot open temporary file : Permission denied"
Was not declared in this scope23
Arduino code for pin i/o over BLE
PLS HELPPP YL-99 can't respond HIGH/LOW on the serial monitor
Printing to serial fixes digital reading
Is it possible to have an if statement enter a loop that can be broken after doing a few actions
PulseInput.h Did anyone got it to work?
Poprawa kodu proszę o pomoc
Programming LMX2306 PLL chip
Check Wifi Status - Problem
Interfacing SD card and RTC to Wemos D1 mini
What is it about this community?
Arduino / Python
Error: macro names must be identifiers #ifdef dobogusinclude
2 Button to 1 PWM output
Copy/Cast char[] to char* and int
I need help with my finals project
Arduino SPI Mutual Communication
ESP32 CAN bus not working
Error Compiling for Generic ESP8266 Module
Trying to divide two variables to obtain value for another variable
How can i power up three individuals L298n motor drive with the same power supply?
Macros for a UNO
[CORB] Arduino + NodeMCU (ESP8266) Daten können nicht abgerufen werden
How can i code a button outside a matrix sketch?
(Beginner) Help with light display
Continuous rotation servo motor problem
Error Codes TMRPCM
RC522 Antenna design
Pushbuttons read as LOW although they are activated
Loop ( How I fix it to remember button than when >= $2.50 it then spins motor
Error de programación
Problems displaying oled and lcd at the same timt
0-3.3v esp32 to 0-10v for vfd
Circuit and code works in simulation but not doing anything when done it real life
Nano every upload problem
3 dc motors with 3 encoders, what arduino and shield?
'aes128_cbc_dec' was not declared in this scope
General Guidance and How to use the Forum
MPU6050 troubleshooting
Generally asking about connect RC module
General Guidance and How to use the Forum
General Guidance and How to use the forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
Is my code wrong?
General Guidance and How to use the Forum
Arduino buzzer and 7 segment display not working
General Guidance and How to use the Forum
Commands via grbl
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
MCP4231 Digital Potentiometer Circuit
Calculate apparent power based on digital filter circuit
Voice recognition V3.1
arduino remote
FIrebaseArduino Looping setup()
Toggle on/off relay using hc-SR04 sensor
Arduino Mega freezes after sometime
Connecting the "5403-150F Digital Linear Scale" Sensor to an Arduino UNO
Trying to fix expected primary-expression before ')' token
Concatenating Strings
Ohm and Potentiometer and Map and is Map a good method
How do i connect Multiple wires on a single 5V port?
DELAY FOR PINMODE 1 AND 2
How to collect time data and export it into a .CSV file without an RTC module
How can I control a stepper motor and then a relay
STM32 nucleo 64 with ST VL53L1X TOF sensor
Extremely unstable analogReads
Arduino uno project sms type switch
Arduino IDE not founding right COM
Error while verifying a code into Arduino mega board
Need help understanding where my program is failing
Power-up Passcode to Access Void Loop
Arduino Uno CH340
Passing char to a function
Using Ramps 1.4 for 3D-Printhead exclusively
Problem with Softpot Ribbon sensors
Why i am not getting output while using mlx 90614?
How to use barcode reader using usb shield
Receive for 30msc Low then send LOW for 30 msc and back to HIGH
Animated christmas house
Adding leds to each not
Relay with lm35 and Nodemcu not working
Controlling multiple servos with Single push button
What if you get ? on serial monitor
I2C crashes when used in an interrupt routine
Problemas de lectura de microSD en OPLA
Talking device's
Transform value to another value
Lost on how to control multiple led strips with MEGA
'si5351_init' was not declared in this scope
HomeKit ESP32 Code Issue homekit/types.h No such File
I am facing some errors while compiling code. Please help
HC05 not returning anything from AT commands
How to measure stator current in 1ph induction motor
Controlling a Stepper Motor to run a certain distance
Struggling to read/write to 2nd SD card
Arduino/Genuino UNO no Longer Available, yet Problems Ensue
Push button trigger sequence
Motorcycle Speedometer problem
Help me with code2
Simple LED code needed for ambient lighting
Unir codigos para control de acceso
Hi new to arduino need some help
I been trying to convert my decimal input to binary input for my LED condition
Can't ping Arduino Mega with Ethernet 2 shield
Help Buzz Wire Game
How I get 100 hz frequency in arduino mega 2560
Unwanted data stored in SD card
Countdown timer 16x2 lcd
Trouble with pi pico hid keyboard
Void function: a function-definition is not allowed here before '{' token
Fastled ATTINY85 20U
No More then 7 files on SD Card
Transferring my acceleration data to SD card
Arduino and OneDrive
DHT11 and esp 32
Receiving an Error with Raspberry Pi board
How to use nrf905 with a mega to switch relays using a remote
First variable in tab defined as void/error
ESP32 con RTC1302 y modulo SD
Potentiometer and 7 Segment
Alvik firmware version check
Relay won't stay on "Bool not staying true"
Is there a possibility of that using closed loop stepper motors and drivers in 3d printer?
Contador 0 - 99 con dos displays de 7 segmentos
Change the title 'FAQ' to something more appropriate
ESP32 DEV with Potentiometer, NEMA 17 Stepper Motor and A4988 Motor Driver
I am trying to connect my arduino mega to esp8266 and get the data throught web using this code but it is not showing on the web and not working
Control velocidad de servo 5.5kg giro 360 entre 15 y 30 rpm
UV ML8511 Sensor
Stepper motor not returning on its original position
How to read data from Arduino board and use it in python code
Help whit code for a little project
I am trying to complete a program but I am new in this world if someone can help me with the code I will be so thankfull. Thanks
Help whit code for a little project
NEED HELP with. New Smart little turtle robot v2.0
WS2811 data corrupted at at connectors between ws2811 string light
How to tell Arduino to do nothing until there's keypad input?
ESP8266 Audio library problem
How to save .wav file to eeprom
General Guidance and How to use the Forum
I2c lcd display with Arduino using python pyfirmata
Vl53l0x - timeout
Port not recognized
Hi, I'm currently doing my first project and I am facing an error which tells me that there is an error compiling for the board
Weird wemos D1 R1
2 Joysticks, 4 rotary encorder, 12 buttons and 2 hall effect sensors in one arduino board
Helpneeded for a project
Error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
ESP8266 long term use
Moludo bluetooth HC-06 y Arduino UNO
Simplifying harder statements to easier more understandable code
Connecting to Arduino alvik using Nano ESP32
Motor accident project
Temperature on LCD doesn't update
I'm having a problem connecting multiple soil moisture to turn on relay
Why am i getting this error : Error /304
Variable Score/Points
Compiled for R4, now it doesn't
Cant read an BMP image from SD card using sd.h
Reading 7 external voltages
Bluetooth not working with Windows 10 and not working with Android
How to turn on/off a blinking output from the same button
Uno broken because of a link between pins 10 and 11?
Unable to compile code
Mechanically modulate keybord input to get analog like control in racing games
3 digits 7 segment display using 3 shift register and 4 push buttons
3 digits 7 segment display using 3 shift register and 4 push buttons
Smartglases with arduino
I cant be able both dfplayer mini and voice recognition module v3.1 to work together
Push button is not functioning with "if (analogSensor>sensorThres)" loop
Arduino Uno WiFi R4 prints garbage in serial monitor (IDE 2.x)
I2C and Pressure Sensor
Serial monitor doesn't work. Maybe wrong code?
On/Off with Soft-start
Separate IR, Visible, Ultraviolet light
Scope not declared?
Chinese OLEDs burned Arduino Nano
ESP32 Hall Effect Sensor Not Working
Counter for turning on/off servo sweep using obstacle sensor?
5v micro buton box
Error opening file on sd card
Usage of two Fingerprint Sensor at the same time (ESP32)
Using a button and a potentiometer to stop/start and change the speed of a dc motor with a h-bridge
Building animatronics in a real 1943 biplane
Servo Motor, that has to turn 20 degrees every 5 seconds
R305 not working with hardware serial but works with software serial
New to this and have very small experience with using arduinos. Maybe someone can help?
Make Your Uno Audio Synth Only Makes Pop Noise
Wrong voltages with DAC MCP4725 driven by Mega250
Voltage divider and floating voltage read
Connecting php with solenoid lock
Having trouble with a program to set Modes
Using BMP280 sensor to control servos. Need some guidance with coding
If Statements not responding when receiving an input
Distance traveled
The problem with starting and stopping the circuit through the 2 buttons
Moving variables from Global to functions
Arduino + Supercollider
Help with random numbers
Dynamixel servo library wont even compile examples
Birectional data transfer via bluetooth
EEProm put and get with Arduino mega
Creating an anti-slip sensor
FSR 402 pressure sensor, Mux with Arduino
SD-WIFI with Card-Reader Module run ESP web Dev Onboard
Automatic watering project works with usb/macbook power but not 9v external power supply
How to get realtime pt100 sensor data wirelessly
Raspberry display ssh1106 doesn't work
Code is uploaded to Arduino Nano, but not giving output
Sending URL to android phone though NFC
Loop problem in method calling
EVShield motor control
Fatal error: ArduinoBLE.h: No such file or directory
Temperature controlled Linear Actuator issue with Relay Timer
Linking To Calibration Tool in W10
Unable to use arduino cloud with program running in ide 1.8.19
Mcufriend tft not working
A short introductory video for Arduino forum
Stability of arduino boards
LCD Display arduino uno error ccode
Wrong Tinkercad measurements?
Decimal places variables
Help with the 8266 esp-05 version
Waveshare ESP32-S3 touch lcd 2,1"
Simple servo control via an RF-Nano
GSM Based Arduino wireless name board with P10 Led Panel
2 stepper motors with independent actions
Student kit lesson 6 Robot arm
Error drum arduino nano
Receiced serial data is wrong
[ SOLVED ] C# win10 serial terminal MISSING FIRST BYTE !
Works fine powered from USB works bad powered externally
Problem with IR Sensor
Arduino Mega Kommunikation C# Programm Fehlerhaft
Help, I'm not a C ++ programmer
MQTT is not working in an specific wifi network
Rfid and 2 push buttons Door lock
Dht11 program error
Digital read and bluetooth read
Setting z probe with MEGA
Arduino resets and freezes when connected to computer
Newbie Having a programming issue...on HO train project
CAN bus programm code not getting compile
Creating a menu ,using switch and Serial.read()
AT Commands doesnt work
12V Battery for Nanos and Relay Board
How to get data from csv or xls data with specific row and column code
Multi-Dimensional Arrays problem
Reading data from joystick through bluetooth HC-05 module
Loop problem in method calling
Mi pantalla OLED no enciende del todo
How do make a robot in uno
How to code arduino car
Scrolling text using ws2811 strip
In function 'void loop()': 17:6: error: expected ';' before 'digitalWrite' 23:5: error: expected ';' before 'digitalWrite' exit status 1
Help debugging a **black screen** issue on an **ESP32
NRFL24 SPI works on UNO but not Mega
Arduino Coding for two non-overlapping Clock signals with 50% duty cycle and 900MHz frequency and 1V amplitude
Stopping bomb defusal loop to avoid repeatedly pressing button
Port D2 stops working when initializing tft screen
MPU6050 GyroScope Readings Are Drifting
Passive buzzer wont stop after tune
Problem with using more than one ct by using Multiplexer
Help with coding please
Help with coding please
Why does my sim800l does not receiving message when it was compile with oled screen?
Grove I2C Thermocouple Amplifier (MCP9600) Errors
SSR Relais with arduino
Uno R4 WiFi connects, displays IP 0.0.0.0
Emi and ultrasonic sensor
Scope not declared?
Pixels Animation with sensor - UNO/SENSE/DOPPLER
An error occurred wile uploading the sketch
Bending a flex sensor to get resistance values
ESP32 Audio error
Uno r4 minima rx LED is always on
Help with code, will not work no matter what i try
How to fix a value
Arduino nano not working help
FAQ page misnamed
Axe FX II XL MIDI diy controller
How to clear a text before a new text is placed in some spot
Problem using Arduino 2.2" TFT display
Limited loadcelll
Touch detection on ESP32
Need help with codes (continuity cable tester with lcd 16x2 i2C)
Unformatted Code Detector
Need a hand loop within case by IR remote
Obstacle avoiding robot car -- code issue
LiquidCrystal_i2c greater than i3
Help with code, will not work no matter what i try
Can not open Ardurino hosted website
Arduino Giga R1 3.5 audio output not stereo
Setting Arduino R3 as primary and communicate with ESP32 Dev Board
High voltage current measurement
ESP12E motorshield
More crazyness with braces!
Help with AVCLAN_mini Sketch
Single color for WS2812B
Problem with sending data from Arduino to Nextion display
Hall Effect helping
I cant connect AHT20 temp&humd sensor to adafruit io
Arduino UNO with L298N and 24V motor
Arduino Pro Micro and multiple MPU6050s
Help with date specific alarm
Stay until new value comes
More crazyness with braces!
Footage Counter on a Sewer Camera
Hello everyone , when i write on in serial monitor song is turn on , but when i press off song still play . Thank every if can help me
Hlep me request Serial Monitor "inf"
Problem with nested for loops and servos
DWIN dGUS to NPK sensor
NRF24L01 COM problems
NRF24L01 COM problems
Direct Port Manipulation Pins
Not enough ground
MPU6050 Upside Down With DMP
Serial Monitor not carriage returning
IR transmition forTV is not recognized by the signal receiver
Code not working for self driving car
Error message for code, can't figure it out
Radiohead tx and rx pins
Duplicated case value
TTGO T3_V1.6.1 Bluetooth Functionality
'class Button' has no member named 'init'
Cant control servo with potientiometer
Anyone have code for entering multiple passwords with an ir remote to open a lock
Stepper motor controlled rpm
How to add mobiflight library to arduino ide?
Issue in converting the Pixels values to image
I want to be able to open and read windows file
Nano on blocking
Errors with Arduino 1010 IOT
Use LCD and sd with Uno
Can't upload one thing to Arduino
Motor not moving together (Human following Robot)
Widget weird behavior push button
Can someone help with this code i'm new to arduino and i don't know what i'm suppose to do, there's always an error while uploading the code
I need help with some code I am writing
SPI.transfer problem
Amg8833 and nextion NX3224K028 connect arduino uno
Problem with Serial communications
KiCAD advice please
3.95" LCD Module for Mega2560 - Only Half Screen
Evert definition/declaration is a redifinition
Problems with using Serial2 communication between 2 esp32
Help me about my car leftback motor doesnt workıng
Having trouble sending Analog Data across bluetooth using two ESP32's
How do I change codes made for OLED to lcd
Make experienced users help: two ways to quickly post code as a code-section
How to convert photoresistor data to control the brightness of the led
Correct use of an a4988
I have problem with code
SPWM phase shfit
How to use Arduino libraries without setup() and loop()
Arduino uno sck not working
Arduino Microcontroller Board for smart ring
How to create pwm library
Speaker issues due to coding
Bluetooth module
Help with testing an ESP8266 binary
Help, error: expected primary-expression before '.' token
SIM module continuously sending SMS messages after threshold reached
Powersupply setup with sensors, relays and perlistatic pumps
RFID Reader reads only 1 time in range
Led button control
3.2 tft SPI 240x320 14P only shows half the screen
What information do we need to answer a question effectively?
What information do we need to answer a question effectively?
Why is does it keep saying expected ';' before 'data'
Different Voltage Values for Turbidity Sensor
Problem in dumping the code of ESP8266?
How to code, i need help with my last smt project
Voltaje adecuado para comunicar atmega328p con nodemcu v3
Humidity sensor HS1101LF from TE Connectivity
Controlling multiple timed relays off buttons
What is it about this community?
Sending sketches to my Arduino Nano 33 IOT wirelessly
Programming ESP01
Warning: invalid conversion from 'const char*' to 'word {aka unsigned int}' [-fpermissive]
TX RX between Arduinos
Potentiometer output changes random
FFT function, need to output 3 arrays of Frequency, Real and Imaginary values
I2C LCD causes problems
Bop It Game, Code Correction
Issues with connecting a slideswitch to change between automatic and manual mode for a fan
Can i take these 3 bunches of code below
Arduino big project problems
Arduino Sensor Kit : arduino_sensorkit 1.0.9 library for I2C buggy?
Control servo motor with blender
Can you please guide me about analog joystick ? Is it possible to control the directions and speed of two motors just like an RC Car movements with one joystick (VRx, VRy )
Power for servo motor?
Serial communication between tfmini plus and mrk gsm 1400 doesnt work
Not loading to LCD
HC-SR04 ultrasonic sensor motion detection
CAN BUS not displaying all data
How to put a user Id and password to our Arduino webserver
How to put a user Id and password to our Arduino webserver
Dk d kql wlw,sl docerl ;dlka s;okoq p;ke asmd; lask;do asd
On/off button for code
I want to make a count down time that auto repeats
</>(Uno R3) I'm trying to set up a temperature sensor and an LCD screen to display the temp. Can anybody Help?
I2C LCD(16,2) not displaying text
Command from serial not working
Gyro sensor and 50m Hi-AT laser module for conditional measurement
Auto watering system using 'multi if'
Analog data Serial communication
How can i save some storage ? 104% is used and i dont know what to do better :(
How to name the temperature sensors instead of printing address using ds2482-100 and ds18b20 sensor- Help
I need help for servo without delay
My second RTC module, another broken one [Solved]
Measure frequency issue
Tft touch screen and serial data
Waveshare ESP32-S3 touch lcd 2,1"
Displaying error values if no input from Analog ports at MEGA2560
One wire 31850k errors
Displaying error values if no input from Analog ports at MEGA2560
PWM not working when timer starts
Problem with ws2812 neopixel LEDs
Motor won't spin. Please help
Check if the pump is High or Low
Uno q i2c problemas
Resetting millis
Rotary encoders with Arduino Uno
Six or eight hi-res cameras on the same Rasperri Pi
Driver commands via Ethernet/IP to CKD Linear Actuator using CIP, TCP
Problem parsing serial data
Need to control four audio stages digitally, namely gain, volume, tone & level
Dartboard code NEED HELP PLEASE
Inverted Rx/Tx signal
How to break out from DO WHILE LOOP
Arduino Pico Project - Drop test of CANSAT model satellite
GRBL - universal g-code sander
LPS28DFW arduino
Chrome OS Version 96.0.4664.111, no connection via USB port
Putting programs in flash
Assign values before run-time
Solar tracker using gps and rtc
How to make IoT (ESP8266 & Google Firebase & MIT app inventer) projects faster, with no delay
Stop watch arduino code required
Led turn on when powereing up Nano
Relay and coin acceptor
Having trouble with void setup
Help with a code that doesnt work
Can someone help me correct this coding
Can I Connect Both an I2C LCD and ESP8266 to One Arduino Mega board?
NPK Sensor to Arduino Mega 2560 Keeps Returning 255
Need help with ESP32 LittleFS configuration with GZIP and Websockets
The necessity of a power supply module
How to add push buttons to the code
Connection to Processing not working
ESP32 with 2 relays and 8 pumps (cocktail bot)
My fathers UNO R3 stopped working all of the sudden
INA219 and PWM DC Motor Speed Controller Problem
Controlling Arduino by MATLAB
EEPROM with ARDUINO UNO, avrdude: stk500_recv(): programmer is not responding
Water pump is not working
Total Confusion
Issue with turbidity and pH level readings
How to play sound when turning off Arduino via pushbutton & Pololu switch?
8 LEDs, 1 pushbutton
Cunsumtion of LoRa module is 1.2 mA in deep-sleep mode
TFT LCD Display to Arduino Mega does not work
4 bldc motors stuttering
Zooming the image in A. GFX
Midi interface help
Controlling groups of pixel leds 4 each by pressing individual 4 buttons but need colours different on different groups. Below code is working good
Error de timeout al ejecutar comando en Modulo de reconocimiento de Voz con Arduino Mega 2560
Appropriate connections
QueueArray.h: No such file or directory
Unable to install ESP8266 in the board manager
Dual band wifi module that supports ad hoc mode
Continuous servo concern
Circuit using pushbutton and 8 leds not working
Is it possible to turn on a bulb depending on the day (using a rtc)?
Constant current load design
How to create a realtime posture detection with mpu6250,esp32 and blynk app
How to alter a #define value
WIFI communications with PC
Unable to send notifications when creating a Bluetooth service using ArduinoBLE and FreeRTOS
Method active when class not created
DF2301Q wont fail init
Connecting sick scanner and arduino
Arduino Nano and SIM800l, read SMS problem
Uploading Bootloader to atmega2560
Hyy can some one help me with code # code that runs servos taking input from mpu6050 and controlling servos using pwm servo drive)
Auto Reload Local ESP8266 Web Server
Built a small Arduino-style UI/control library for ESP32 (Trellis) — looking for feedback
ESP8266 is not connecting to my wifi
Trouble whith reading data
How to reduce the size of a sketch if it's too big when using enc2860 module and arduino uno
Need help with LIN Master
Soil Moisture sensor with Arduino board
Thermal printer text font
I have this upload error :(
ESP32 Cam with arduino
Cant connect my esp8266 with websockets on localhost
Code for motion tracking with pirs,12v motor
Make four different inputs = value
LASER DUST SENSOR ---> DLS in water for nano particle measuring?
Control LED brightness with IR remote on the ATMega4809
Wireless Platinum Resistor Sensor
Realistic Animatronic Robot Head That Can Talk
Arduino IoT cloud
Stater kit project 13
How do I calculate how much amps i need
Master-Slave connection Hc-05
Problem using tensorflowlite and esp32 cam
What's wrong with this coding
Intergrate code with project
Peristaltic Pump with Reverse Polarity Switch
DRV8834 stepper motor not working
Digital Write Output not working
Fix invalid head of packet error
Connecting multiple Arduinos (or arduino and other boards): JSON over UART
2 LED & 2 Button on the same time
How to know if something is receive in PWM
Can someone help me with my code for an obstacle avoiding robot
Linear motion with 2 stepper motors using AccelStepper
OLED 5.5 defective?
Problema con esp32 con placa de expansión como eliminar el ruido que genera al conectar un pluviometro de pulso, trabaja un sensor magnético mc 38
HC 05 out of range setup
Multiple Ultrasonic sensor
Extract a number from a gsm module text
New to sketches
MP3 player continue from left off state
Anyone tell me how can we make wireless connection between ardiuno and the mobile app
Sht31 + Arduino
Laser Rangefinder With Arduino
Code and diagram help(i dont know why when i run the simulation the motors do not start miving)
Help wifi telnet to serial. :)
Need help to replace delay() with millis()
Based on the code shown below, the output of the serial.println should be 1 right, but the results is not. Can anyone explain why this happen for me
Code and diagram help(i dont know why when i run the simulation the motors do not start miving)
How to properly move stepper motor with potentiometer
Vixen+Arduino lights
Wemos notification ifttt
I want to change the button with encoder and add another 2 products and add GM65 scanner
"3 value" boolean
Ultrasonic sensor and sd card
Pantalla blanca con sombras
Read data from RX pin on Arduino UNO
Led fading using Array function
'blink' was not declared in this scope need help please
Why my dc motor cannot run ? (In proteus simulation)
Using the bool function to monitor led
Coding a Mozzi synth with LCD display
Two I2Cs components works on uno but doesn't on nano
How to control servo motor using switch case statement
Arduino Uno R3 radio NRF24L01 and DHT22 telemetry
8x8x8 RGB Led-Cube Programming
CNC shield V3 A4988 Motor Y does not move
Analog input spikes
What is wrong with my code? It want print to the monitor
Using 2 IR Sensors at the same time
Can't read api result on Arduino Uno
Satellite dish controler with joystick
Help identifying and removing "phantom" resistor readings from my wiring
I have some problems
Using aurdino nano for temperature control fans
Implementing time delay without delay(), millis() and delayMicroseconds()
Serial issues in my codes
IR Remote , Some body can help me to review
Fix invalid head of packet error
Newbie Errors I’m working though, but need help please
"sign-compare" warning when compiling a sketch
How do you get the reading from the sensor?
Standalone programmer
No matching function for call to 'ArduinoJson::StaticJsonBuffer<1000u>::parseObject(SoftwareSerial&)'
Getting a motor to run for x amount of time then stop amd rum again for x amount of time
(help)i have Finger Print Module Serial UART TTL sm12
Error shown is this c:\Users\Zarulmiqhail\Documents\Arduino\libraries\MFRC522\src\MFRC522Extended.cpp: In member function 'MFRC522::StatusCode MFRC522
Difference between ESP32 WROOM & MEGA with HC-05
Micro SD Module wont work on Arduino Uno Rev2 Wifi
Combining Project 13.1 and 20.1 to have the motor speed displayed on I2C LCD
Why my button didn't worked?
Measuring solar voltage
Controlling 1.5Hp motor
Using Arduino to glow LED with every pulse of Rotary Encoder
Line Follow Obstical avoidance Code Issues
Programmation for pulse sensor and adafruit bluefruit le uart friend
ESP32 and Arduino IDE tabs
Compatibility FTDI V2DIP2-32 to provide USB host for Arduino Mega 2560 Rev3
Sending sketches to my Arduino Nano 33 IOT wirelessly
Faster sensor readings
8 LEDs, 1 pushbutton
Arduino-IDE 2.3.2 Do not read any installed library
Problem with returning Serial.Print ();
Waiting loop to decrease variable
Automatic wire cutter with servo and stepper motor
So I need help with a scoreboard for tennis
Burn bootloader on ATmega2560 using USBasp
Errors in executing irrigation system program
Using nrf24l01 with nema17 and accelstepper library
Having Trouble With RFID.h Library (please help :'( )
SIM800L interface directly with Arduino UNO
Building and displaying html on a TFT
Arduino UNO Setpoint Issue
Odometer for 1992 vehicle?
ESP-32 ChatGPT robot project
Error coding : two servo motors controlled by button
Esp32 menu... please help..!
Limit switches do not work when arduino is connected to computer via usb
Hey may i know how to sum up a number up to infinity by 1?
Verifying a sketch
Esp_sleep_enable_timer_wakeup
Implementing time delay without delay(), millis() and delayMicroseconds()
Roomba & Arduino Mega
Finger print module not capturing image of my finger
Serial port interfere with an e-paper panel
Arduino nano 33 iot compilation error
Im working on the project to read data from the imu9250 with two TCA9548A mux by connecting each imu on the both mux
Hey may i know how to sum up a number up to infinity by 1?
Help regarding project
I can't run it, please help me
How to use different fingers for different relays
Error compiling for board ardunino uno
Stopping a looping profram
How do I display image on ER-5517 connected to Arduino Mega
Arduino command; I would like to use 2 different pins to generate 2 different color or same color with different intensity and duration
Redefinition of "String UID"?
How to use different fingers for different relays
Chinese arduino uno clone doesn't work as it should
Encoder DC motor
Having problems on Using sensor to read frequnecy of sound signal
DC motor not working correctly
Arduino nano and neo 6m gps module
Json - send int
Stepper motor drivers designs implimations
UNO+Arduino Ethernet Shield 2
Arduino Leonardo Serial
My Rx, tx, and l is on but not uploading a sketch
Convert from String to accepted variabel on SD-card
Can someone help me please? pir program
Long life battery portable
Arduino mega 2560 i2c sensores vl53l0x
Voltage converter for many inputs?
Connecting HC-08 as master and HC-05 as slave
Problema con señal al ruido arduino
Open Loop BOOST Converter with Arduino
Problem in using Voice recognition module v3 to run four DC motors with two TB6612FNG motor driver and Arduino uno
I am trying to run an RC car and a Sensor together, but I am not sure how to fix it
NRF24L01 with serious data loss
Servo with pot and micros function
Best first 5 topics to read to reach Trust Level 1?
Problem with St7789
Help me with thissssssssssssss
Proyecto de indicador Inalámbrico
On/off switch with a light bulb
The keyboard on one analog pin does not work
MAX30102 sensor not sending data
ESP32 Dual Core task keeps crashing
Stm32 internal clock problems with arduino ide
123456789101112
LED Matrix not working correctly
Passing a character string to a routine
What is it about this community?
Rechecking input after a few seconds
Internal resistance and digital readout time
I dont know what Im doing and need help
My MKR Wifi 1010 w/ MKR ENV shield - SD card not working
Help Needed for NILM-based Load Disaggregation of Fans and Mixer Grinders
Proper Use of AccelStepper Library
TFT 2.8″ 240 x 320 display is working weirdly
Can't compile examples from Seeed KCT202 library
Seven-Segment display module
I want fix this Error
I am having a problem with my code because this code is for 18cm container and i want it to be adjustable to 7 inch or 15 inch
No spi clock when using the SPI library (Uno)
Continuation on bidirectional rotation counter
ESP8266 communication and wired network
Not getting enough voltage at ATmega328 pins
Gebruik IRremote.hpp
Unable to connect tmp117 with arduino uno R3
Compilation error Arduino
How to drive a 1W 150mA LED?
Processor on Minima gets hot when it is plugged in
Problem with arduino nano v 3.0
One Interrupt too many
Arduino Nano Compile Error
Gaps in a sketch lines
How to monitor battery of Arduino MKR1010 and LiPo 3,7V
Writing a code for a bowling score calculator
Smart Trashbin metal detector with coin reward... need help
Off delay timer
An error that shows up when I verify my source code on the app
How to use the While loop inside the If condition
Programming help for a declaired variable that generates a random number for some reason
An example code created to help beginners with the syntax of using sequences in their code
How to Change over relay 1 and relay 2
Moving 2 servo right, left, up, down
Begginer needs help please!
Arduino, solenoid parallel design
Please help with sending and receiving data through hc-06 bluetooth for android
Voltage drops When motor Connected to Drain and +ve of Battery
Program failure after 5 minute pause
If conflict using an l298n (h bridge)
Communication error
How many sensors can a motor drive handle?
Error in IoT Cloud
FastLED, switch off Modul?
Change I2C SDA and SCL pin of Arduino and Trinket M0
Turnin on light in room with photoresistor
Sierra Modem HL7800
Programming the pic16f84a in arduino
Audino pin voltage is low
How to connect a TF-LUNA to an Arduino Nano?
Serial communication with multiple push buttons and multiple leds
Libraries not playing nice : AccelStepper + Adafruit_NeoPixel
Push button doesn't work
CAN-BUS READ Problem between Mega2560&Seeed_Arduino_CAN V2.0
Can I connect this two in one arduino?
Serial Monitor Problem (TX and RX only works after open serial monitor)
Only able to turn on a certain number of addressable ledsWS2812B
Control y servomotor
Communication between Arduino due and BQ76PL455A
Seems a bit draconian
Arduino Nano Project
Arduino code for the circuit diagram
Need help with my code for a 8 digit 7 segment display that increases when a button is pressed
Newbie problem - why LED only flashes shortly and doen't stay on
Error on my board
Unable to read array item in a for loop with local variable "i"
I'm trying to have multiple inputs but it wont work
Communication between DS2482 and DS28E17
Driving PM55L motor with TMC2160 driver
Hardware Serial Port Communication
Next bus stops notifications arduino
Trouble's with UNO R3 / LED's
Help whit thi program
Problem : expected unqualified-id before 'if'
No output on Serial (Uno)
Code Help for Buzzer Timing & relay
Passing file to a function
Esp8226 upload error
Help with motor
Obstacle Avoidance Smart Car
Fuzzy logic to light up leds
ESP32 MH-Z19b CO2 Sensor
Microseconds Timestamps in serial monitor
I'm getting this erro
Arduino project for students
RGB and Photoresistor
Stuck in a while loop (ultrasonic)
CC1101 Failure with esp32
Can someone please tell me what I am doing wrong?
Delay and sampling rate
Problem in running my code
Code with water pomp and water sensor
Blink LED doesn't turn on when start simulating
First write to EEPROM in Nano Every
Turnin on light in room with photoresistor
Help on turning song on and off
28BYJ-48 – 5V not working with esp8266
UART/Serial connection not interpreting data correctly?
How to send .txt file from Arduino Uno SD Card to phone via HC05?
When I long press the push button then the led is continually blinking that shod not happen it shod take only on
L298N direction control does not work
IRremote sketch compile errors
Esp32cam IP address: 192.168.43.54 E (7496) httpd: httpd_server_init: error in listen (112)
Nano for Stepper Motor
Arduino uno problem with mpu6050
Keurig Water tank
Port doesn't exist, exit status 2
Void loop() error
DM help please why not
Esp8266 stop send data
Did my nano project destroy my PCI slot?
Missing terminating " character - please help
Sound Level Meter Modbus TCP/IP
May I ask about the voltage drop across a diode?
Controlling Baudet clock timing problem
Error with the EEROM library
Change value variable while in a loop using neopixel library
Store data from a digital balance (RS232) in an SD card
const char* error
Blynk app menu feature Self Watering Plant Pot
nRF24 Single Variable Transmission
3 ATOI objects outputs data within a SERIAL 115200 to Arduino, note on and note off
How do you go to a specific void that's in a order?
Plotting voice from BT input
Request for Assistance with Sphygmomanometer Readings Using HX710B Sensor
Getting Error compiling for board arduino uno
Help with code, cannot get read out on display
Analog display and esp32
Question about led cube code
My Led burns as it should in test program, but burns dim in the real program
NRF24L01 works on nano but not on uno
Checking the Connectivity Status of the HC-05 Bluetooth Module
PTC Heater Control
Tacometro no baja revoluciones a 0 progresivamente
Control 5 servos 3 joysticks recording coordinates arduino uno
Having trouble storing values within variables over time intervals
Arduino uploading problems
Error: missing terminating " character & error: expected ')' before ';' token
Mikroe 1577 that uses MPU6000
Need help! New to arduino
CO2 MG811 logic
Multiple libraries: how are they chosen and updated?
Model of air levitation pingpong ball
Communication with Nextion Display
Need help. thanks
(Solved) Nrf24 and ESP32
Unable to upload code
How Transpose note of a MIDI keyboard with Arduino Mega
Stepper motors not running when connected together CNC shield
485 communication
Want to ask, why the serial monitor is not showing the reading/results for esp32 board
Ultrasonic with stepper motor arduino
433MHz wireless module and push button to send message failed
Help on reading a value from PCF8575
Gear Hobbing with arduino
Max31865 that switches a relay by temperature
Arduino Uno and problem with breadboard
Arduino analog input causing problems
ESP32s soc.h problem
NRF communication sometimes does not work
Issues with my code
M5 x timer camera
Arduino Uno and Ignition SCADA over Ethernet
Conocer el tamaño ocupado de un array
Esp8266 refuses to connect to wifi
How to auto reset
Suggest parentheses around comparison in operand of '|' [-Werror=parentheses]
Can I connect IR sensor to any digital pin?
Suggest parentheses around comparison in operand of '|' [-Werror=parentheses]
Why dont work? 8 relay board
How do I work on a track like this?
Re-creating the piano boot
Why does this little program occupy 80% storage in my ESP32? any solutions?
NTC 3950 V6 alta temperatura
Nodemcu making download and upload speed faster
Can someone help me, for my 4in1 5pin probe RS485 THPH+EC Sensor, I have code but it doesn't read anything. I am using arduino uno for this
Juego de Luces para Arduino con leds, pulsador y display
Arduino Portenta Vision Ethernet Sheild Camera came off slightly
RF frequency problems I think
Setting to CRGB::Black is giving random colors
Loop not naming type in project 02
How to match D1 code to Arduino Ono?
This was not declared in this scope
Help me with a lbrary
Arduino, Cajero automático
How to run stepper motor NEMA 17 driver L298n and load cell HX711 simultaneously
Pikabot coding problem. speedright has not declared in this scope
Panasoni̇c cdc help please
Advice for simplification
Servo with 2 buttons
How to connect Haiwell Hmi with esp32
Servo motor problem in Serial data transmission between Arduino UNO and ESP8266
I need help adding something in my code. It's urgent
Telegram bot wifi
Fast measuring Distance Sensor
A question about Arrays
Arduino nano Flysky
? Coding for 1RPM constant, Nema 17 through A4988?
Use another function during the running of Millis
Trying to read serial data from digital scale with arduino IDE
HELP PLEASE: avrdude: WARNING: invalid value for unused bits in fuse "fuse5"
Some problem with setting PWM (Arduino nano)
How can i add a beep sound every hour.please help
IR remote not working when buttons are pressed
Asking for some guidance of getting data from blood pressure sensor to an arduino or raspberry pi
Associate a serial2 port to megunolink
Converting char array to string
Arduino MKR Zero Keyboard Emulation not working
Continuously reading from pushbutton while running steppermotor
LCD KetPad by Robot hookUp for Mega328p Rev 3
CTC 101 VU Meter
Arduino Project Problem, Black Floating Liquid Switch Level Sensor
Connecting ESP32 to the WiFi
Using snore function for ATtiny 85
ESP8266 won't boot up normally
Hey can anyone tell me whats wrong with my code?
Problem reading RS232 from digital scale
Esp32 iBeacon read major and minor
Proble with connection with Cubemars motor AK45-10
Can't get output signal from Self Reset Switch
Vibration meter with the MPU 6050
Arduino Combining Sketches
Need help with the MEGO board with WiFi
Car LCD display on Arduino?
Noritake VFD with BPI216 Interface
I'm trying to have multiple inputs but it wont work
Need help on writing a receiver code
Delays to millis
Arduino Joystick with car. Can't figure out how to go right or left, I can only go forwards and backwards. Arduino Uno
Fade out animation with FastLED
ESP32 Dev Kit Compilation Error
C64 Arduino Kernal switcher
Long life battery portable
Unable to get a Gy-33 TCS34725 sensor to report colours
Arduino 2.0+ has too many problems
Help me please im in need of help
Sensor for when Arduino moves?
How to use both accelerometer and gyroscope sensors
If Statement toggles Output
What does it mean when an Arduino is 'in host mode'?
Ph sensor connect to arduino
TCS3200 Sensor using as a trigger for a mini vibrating motor
Arduino Uno and GPS NEO-7M-0-000 don't show GPS
IRLib2 rawRecv doesn't work
4 motor project :)
Sending Serialnumber/IMEI to phone via sms using SIM900a and Arduino uno
2N3904 Transistor partially open when HIGH but closed when Floating
DFPlayer and Ardunio Jawdrino
I2C freezes when more sensors are interfaced with arduino
Line following robot using arduino uno
Having issues converting 12v dc power to 5v
Connecting 10 joysticks to an arduino
Please correct my code
Please help as i am new to arduino idk why i am getting this error.: call of overloaded 'abs(long unsigned int)' is ambiguous
ESP setupvariable to HTML tag
LCD and ADC connections and code
How to control 12V power source with arduino UNO
Arduino joystick doesnt work
GPS NEO 6M no funciona
I Have No Idea How To Fix This Error, Please Help
"invalid header: 0xffffffff" when I press reset on ESP32-CAM
Relay modules act erratic with load but work fine with no load
Help with GxEPD library
NEMA 17: Broken Motor or Too Little Torque?
Help with coding (PWM + MILLIS)
Create a generic HID that receives data
L298N and Arduino ground
Generador rpm con pantalla shield pad
Words not fully showing up on my LCD Screen
Arduino UNO R4 & BLE Bike Beacons
RS485 Communication network problem
Can you help me in my code please
Arduino Cricket program
Ultrasonic sensor and vibrating motor are not working
LED traffic light system with 3 different modes
DIY Automated Clean-In-Place System
Df mini player arduino
SD card module and SSD1306 OLED display - how can I display regular text instead of integers?
Bait boat with gps
Make a fingerprint sensor turn a 180 sensor and LCD Screen
Error with serial for UNO R4 WIFI
Trying to install STM32 based board, can't find the file arduino-cli.yaml
Arduino with ssh
Uno R4 WiFi board is online but no OTA option for upload
Code doesn't work without port monitor
Tic tac toe game with OLED display doesn't work
Fallo con pantalla LCD
I am looking for a sketch
DFplayer mini not playing any sound issue
Charging indicator in the arduino nano motor carrier stops working
-"Guru Meditation Error"
Me podrian ayudar hacer que un servomotor empieze en 0° espere 5 segundos gire a 90° y que sea un ciclo continuo utilizando la funcion de millis
A9g module doesnt seem to work
I need help with mpu6050 library
Suitable LED Driver for a 6x8LEDs or 8x6 LEDs String
Switch case horrible teacher task
Marcador deportivo con 74HC595 y BT HC-05 (En construcción)
Serial Communication to VBA
Whats wrong with this code?
RS 485 half duplex communication problem
Arduino UNO R4 wifi flight sim control panel for mac
Need help with building a Bluetooth NFC reader
Using a l293d motor control shield without mounting
M5STACK Serial.begin(9600) breaker serial
Sharp dust sensor with MHZ19 C02 sensors in lcd display
MPU6050 sensitivity how to?
Arduino I2C recognize variables from master string
Cannot launch IDE
About the problems encountered in using the Ds1302 module
NICLA SENSE ME BSEC ZERO VALUES "comp_t", "comp_h", "comp_g"""
Repeated transaction happens with esp32
Servo Motor controlled by inductive sensor <HELP>
Projects setup s@cks
Writing a set point
Why my Servo does not turn?
Hi trying to read different types of data from energy meter with meter, NEED HELP
Programming of built in timer of arduino
Robot Moving Unsolicited
Programming help for MPU6050
How Converd string to char
MPU605 with Accelstepper
2 ultrasonic sensors controlling 2 lights
How to send sensors data and control relays from cloud via ESP8266 WiFi Module
Open smart rich shield two - looking for documentation
Arduinon Uno loses time sync
Some LED Trouble
Expected unqualified-id before 'else' in TinkerCad
Missing declaration before }
Can't get the RGB LED to work with the IR Remote
Generate two square waveforms simultaneously with different frequency
How do i get the end of the line
How do i get the end of the line
Counter and storing value in EEPROM
Using A Nextion to Drive an Interrupt
Indoor TDOA system
Need a way to detect if a person is walking into the room
Problems with libraries
Oonie Island Walking Stick 911
Push button to adressable LED strip on Arduino Nano
Does not match any class
It is about the problem on my project..... please help me!
Using Arduino to Calculate a Value
Adifruit Motor Errors uploading
I can’t find the error in using if
Specific Stroke Control for Linear Actuator
3 Potentiometers, Arduino Pro Micro & OLED - VCC Chain cause Arduino shut off
Data Logger for Solar Inverter
Uso del sensor muscular emg para controlar servomotores
Esp32 cam face recognition and detection
Communicating data from Arduino to Pc via HC-05
Connecting six stepper motors to my Arduino Mega 2560
Contrast sensor Leuze KRTG20
LDR circuit turns off after some time
Trying to find TLP281-4 4 Channel optoIsolator IC for Fritzing part
Controlling Microservo with Pushbutton and External Power Supply
How do I add my keypad code into my PIR alarm code?
Traffic Light System in RTOS
Code for arduino uno anti-sleep control project
Arduino IoT cloud
Alexgyver's nixie clock
PWM generation on Arduino Uno having Atmega328 P
General Question - Basic Electronics Circuit
If (gps.encode(gpsSerial.read.())
Need help with Pi Pico + HID
Using 4x water flow sensors (yf s401) with arduino mega
Arduino Mega and MDB protocol with bill validator NV9 Spectral
Project struggle
Problems with sim900a module
Alphenol NPA700 sensor IIC address change
Board Not Recognised by Computer/IDE
I need to read an RS485 port modbus half duplex communication and process data. I have rs 485 to ttl converter.can some one give code for reading data
ESP8266 and display issue?
How to implement wireless communication using arduino pro micro?
Arduino Noob Code
Help for an high and low on a pin
Arduino error :Error:expected unqualified-id before numeric constant
Arduino serial monitor giving constant value for pressure drop measurement
Balancing Drone
My pc can't recognize arduino "copy" after smoke come from it.
Controlling 4 stepper motors independently with 2 joysticks (for V&H movements) on UNO
Stepper motor strange behavior (video included)
Motor Control Using NRF24L01 and Arduino Nano
Motor M3 and M4 not working
Help pls, beginner trying to do a project
Arduino leonardo not uploading
ESP8266 recognization with smartphone
Dump load controller for hydroelectic purpose
Cannot upload EX_Rail Sketch
HC 05 and Ardiuno Mega data received is garbage
Tia circuit with arduino
I transmit data from arduino idle to dwin display(dmg48270c043_04wt4) ,but i didnt transmit any data to dwin display, why? explain me and correct code
Weird characters on serial monitor Arduino
Datalogger con ESP32 asignar nombre al archivo en micro SD con una variable
Error arduino pro micro
Joystick button, EEPROM, servo motor
DC Motor Off in Loop
Image refresh on mcufriend_kbv
Weird characters on serial monitor Arduino
How do i solve this problem?
How Connect arduino with UHF RFID Reader and Send data to my (React js node js) Server
Necesito la Combinacion de motores + Control Remoto Arduino porfavor
Necesito la Combinacion de motores + Control Remoto Arduino porfavor
Modulo sim900 no me responde a los comandos at desde mi arduino
ISSUE : I am preparing 2 separate JSON objects to publish
Reduction in Jitter from Arduino Outputs
Bomba de agua-puente H
P10 board DIMMING AND BRIGHTNING issue
LCD does not show information
3 digit counter
MCP2515 CAN Module Receiver not working
MCP2515 CAN Module Receiver not working
Stopping a remote control vehicle
Arduino Project Hub help needed
Help with LCD connection to Arduino
Rudder code with potentiometer
Using MAX30100 and MPU6050 with ESP32
When adding sd card reader, measurement will nog work
Esp kline ecu honda vision K44
Calculate equilibrium potential Vq without current (Ip = 0) using ACS712
Problem with ‘ bool variable ‘
2x DFRobot Micro DC Motor with Encoder, TB6612FNG Motor Driver Board and HC-SR04 Ultrasonic distance sensor
Displaying Text on Character Lcd with 8051(89c51,89c52) microcontroller
Downgrading ESP32 board ver
Pre written code for simple traffic light won't verify or download
Add <IRremote> to library
Using millis with a L293D Motor Shield
ECG two electrode mode - AD8232
Enable a relay but not turning it on until a artnet channel is received for it
Interrupt LED+Fan+DHT11
IRF520 GND/5V issue!
How to read more than 8 cascaded shift registers with SPI?
Voice Based Public Announcement Board using IoT
Know the rotation/polarity of a DC motor - Beginners
What is the purpose of setLedOn?
LCD mostrar texto en movmiento con millis
Global variables taking up too much dynamic memory
Arduino Nano + Micro Servo with Single Non-Battery Power Source
Amplificador operacional y arduino
No such file or directory found when save at different location
New to Arduino IDE need help of course
How to make the PIN OFF time default to 3 seconds in this code?
Avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xa1a
Servo does not hold position/glitching
12volt LiFePO4 battery and buck converter
ESP32/Arduino - Executing invalid condition
3.7 Designing a Motor Control System - COM port error when trying to run externally
2 L298 con cuatro motores para carrito
Feather M0 Adalogger independent operation
How to show binary with 6 leds?
Alguien avezado me puede explicar esto¿?¿?
Problemas con Arduino
How do i explain coding structure and logic (coding for alarm clock)
Help with ps2 controller
Error Help and Displaying Values Simulataneously
How to integrate two pumps for water solution with esp32 and ph sensor
Average Pressure Sensor Readings to Boyles Law
Average Pressure Sensor Readings to Boyles Law
Uno - Using 5v and 3.3v pins at the same time?
Como utilizo un ENC28J60 para mandar datos a ThingSpeak
DHT22 reading sensor, First post,
Steppermotor with 2 LDR
If statement freezes whole code
Closed loop stepper motor
Fs-ins-16z-v1-16. Does this film foot pressure sensor work in arduino uno?
'player' does not name a type
Digital pin value
BUG FIXING in arduino nano
.debug error during compiling in Arduino IDE
Mastering the Arduino UART: From Libraries to Register-Level Magic!"
ESP-12F deep sleep problem
Code for water level indicator
Help with mp3 player
I2C sensors stopping after 5-10 seconds
I am trying make 3 different types of mass measurements using 4 force sensor I got some errors
[solved]Problem with stepper motor and seria connection
Error compiling for board Arduino Mega or Mega 2560. Adafruit_GFX
Help with Arduino Relay Motor Control
Running a set of CASE statements, turning on LED with static variable, but it turns off at BREAKf when
Comunicación serial entre dos arduinos
SIM800L module doesn't detect any operators
How to use random for button1 turn on one random led and turn led off with button2?
Exiting a while loop
Modbus RTU issue using multiple salves
Accoustic source Direction finder using arduino
Arduino Uno and esp8266 module communication
Servo Motor MG90S is not working. Always givea a tick tick sound when passing a command through UGS
I need some help with this error code
How to get precise stable MICRO volt readings?
Digital input filtering advice
Why does this code not run on Arduino Nano ESP32 / Board keeps restarting
CAN data detection and processing
Video player in arduino
Display bitmaps from sd
Switch/Case Programming Question
Serial communication between Esp32 and Arduino one
Any Idea how to read/write from/to specific bytes in RFID?
I'm not able to read RFID tag with my two arduino UNO with the module RC522 RFID
Arduino code uploaded succesfully but doesnt work
Error In Obstacle Avoiding Car
NRF24L01 Not Working
UNO R4 WiFi disconnecting/reconnecting continuously when running sketch w/ "LED_Matrix" and "ArduinoBLE" libraries
Sending values via HC12 transmitter
Arduino halts and L LED blinks
2 linked IR detection sensors
I have this code, that moves a platform, but i want to put in the beginning one "read" to left or right and change the code to move to a different way
Sabertooth 2x5 in Simplified Serial Mode
Showcasing an alternative way to code
Sending IR from a transmitter,
I need to find the highest number from a number array
Sensors Not Working Together #BMP280 #NEO6M #SDCard
Trying to use UBX on an BE-880 gps chip in Arduino
LOVE-O-Meter fails
School Bell System using ESP8266
Life meet lightning's FastLED tutorial not working
School bus to display pedestrian crossing
Mi PC no detecta la placa de Arduino
Bluetooth HC05 and Smartphone
Running a set of CASE statements, turning on LED with static variable, but it turns off at BREAKf when
Arduino l293d shield issue with motors speed
GM65 Arduino UNO
TFT Movie Question
Selecting the correct Hardware?
How to get the best out of this forum
Need help in displaying data of device showing on it's LCD on a computer screen
How to get the address and command of this ir raw data and header_micros and space
PWM pulse generator
Doubt about drones
Thermistor temperature sensor project(HELP)
Larson scanner coding issue. please help
Can not hear anything from the SDcard
Using Two I2S devices at the same time
Ardunio ethernet shield
Noisy AC voltmeter
How to repeat block of code specific no of time?
How to make a Arduino hand
Arduino mega xlights
Arduino UNO R3 pin 13 led is always on
Need a code for weather station that sends data to Blynk + display
Float array print issue
Using relays to operate a 12v Linear actuator with time delays
Creating a robotic Arm using Arduino and Leap Motion Sensor
Ardunio ethernet shield
Esp32 keep restart after connect wifi
Oled ssd 1306 y sensor de humedad Yl-69
HELP, it's for a school project
Please Help me in decreasing the dynamic memory space of the Arduino Nano for (WATER TANK MONITOR AND PUMP CONTROLLER)
Problema con el nombre de archivo en microSD SOLUCIONADO
How do I use this Arduino code to control Dobot Magician
Is this possible?
Realtime Fake Drivers for Microcontrollers – Develop Embedded Code on PC and Hardware Seamlessly
Convertidor ADC para Arduino
When the LDR hits a certain number spin motor for 10 seconds
ESP 32 16 channel relay control ?
Watch dog Example R4 nano
DHT buzzer (how to declare the event from the sensor)
Lora Based GPS Data Transmission Help
I need help.Arduino Uno keyboard (Piano)
Controlling stepper motors in real time with arduino
Enabled, or enabled?
Arduino no registra huellas
HM-10 V3 problems with connecting to smartphone
I2S conflict with Cyberon 'voice recognition' model
Faster speed microstep code
Problema con sistema de automatizacion de luz (Arduino Mega)
How to Read Speaker values from some device to use as if function
External clock/xtal not worked in atmega328p-au 32 pin MLF package
PWM issues on ESP32
Inductive proximity sensor
Why my ESP32 camera doesent give me IP Address
SPI problem on Example code
Help With Excercise
How to show my random time on my 4times 7segment display
IDE hangs on startup: "connectex: A connection attempt failed because the connected party did not properly respond ..."
Esp23 Wroom-32 Bluetooth processing problem
If statement problem
NodeMCU8266 fails to detect Neo-6M GPS module
Trying to work with 3 analog sensors in one Arduino
Arduino mp3 shield with ultrasonic sensor
MKR1310 CHRG led blinking and the device stops working properly
P5.serialcontrol connected to p5js - problem with port detection
Necesito ayuda por favor!
Arduino Uno code to interface 4 flow meter
Problema conectividad ch376-esp32
IR Remote and motor L293D not working
Tft st7735 + max 6675 + esp32
SDA and SCL pin are not working for esp32 with max30102 sensor
I built a 3D-printed tracked robot using Arduino Mega, Raspberry Pi and OpenCV — looking for feedback
Sub-menu not working correctly
Speed capture with Photoelectric Sensors, LCD problems
Communication protocol
LCD Sub-Menu Functions with 4x20 OLED?
Arduino: 1.8.19 (Windows 10), Board: "Arduino Uno" weatherSample:1:10: fatal error: Wire.h: No such file or directory
Reading 12 volt battery using an esp32
Reading 12 volt battery using an esp32
Arduino esp32/Photoresistor sensor not working
Question when writing mysql query with Arduino
Configuring digital pins only if an input is received in Arduino UNO
Connecting a V2.4 Cycle Analyst to Arduino
Using a single push button for two servos
I need to connect these motors in an esp 8266 and control it with lot blynk app or other platform.
MKR1310 CHRG led blinking and the device stops working properly
How to put reset, stop, enter key on 4x4 keypad
Joystick and led
Ahhhhhhhhhhhhhh i need help a wire is stuck in my 5 volt on my arduino uno!
LCD with I2C does not print more than one character
I have copied my MATLAB code to the Arduino and im using ultrasonic sensor to determine fuel volume in tank..Arduino is not getting correct values
5V and GND Connection?
Im using tinkercad, so my code doesnt stop in the condition yes/no statement idont know why please someone help me
Appearing the noise by adding the second sensor
GPIO output gpio_num error
New Compilation error in rc-6 and rc-7
Control the speed of servo motor
Adding a delay to turn off pins after a certain amount of time in a debounce function
Help me please, it was about 4 led blink with 5 seconds interval
Arduino nano pwm varspeed which pins available?
Read CAN message from a machine
PCA9685 Burnout Question
Error in reading data from EM6400+ Energy meter
Arduino Touchscreen Inverted touch
How do you create a pcb board?
Issues connecting ESP-32 DevKit v1 to Arduino IDE
Servo motor control using esp8266 and IOT
Arduino nrf24l01 AckPayload problem
Sine Wave - recurring break in waveform pattern?
SHT31 use readTemperature and readHumidity or readBoth
AS1115 do not blink feature problem
IOT weather monitoring system using node mcu
Cronometer with ultrasonic sensor
Code uploads to Nano but does not run
Transmit Arduino Sensors Data to Nodemcu using RF Module Transmitter & Receiver
2 stroke engine RPM counter, that enables an output when an exact rpm value is detected
Pro Micro no funciona
Nicla Vision how to upload RPC_m4 example Compilation error: exit status 1
HID Wiegand R40 and strike plate
Arduino Uno R4 Minima "Freeze" & Connection Issues
Working on a gate opener motor driver
I'm getting this error whenever I try to upload code
Led pattern using push button to turn on all leds problems
Using a piezo vibration sensor to detect impact to a target
Trying to modify Fast PWM frequencies on the fly within a running program
Request for member 'startsWith' in 'Serial.HardwareSerial::read()', which is of non-class type 'int'
I need stepper to go back to home switch
Reading multiple Honeywell MPRLS pressure sensors on one Nano
JS40F Movement Sensor Broken
Nrf24l01 not connecting
Installing Arduino
Coding of a go car with joystck and controller
Pulse Sensor Not Working
ESP32 DEVKIT Weird output
1 led ring 2 pins to data in?
Help to get down current consumption
Gy-max30100 reading BPM is abovw 140
Ultrasonic sensor code
Stepper Driver Motor Vibrating
Tiempo de ejecucion
Can i send signal to two arduino from one rfid?
Replacing a 10k potentiometer with a programmable timer
** Need Help Using QNDBK1-40 Hall Effect Current Sensor with Arduino Uno and ESP8266**
** Need Help Using QNDBK1-40 Hall Effect Current Sensor with Arduino Uno and ESP8266**
How to lower voltage 0.33V
Arduino_LED_Matrix should on() only turn on LED and off all the others?
Nodemcu mysql connection library error
Motor drive L298N
DF Mini Player question with Uno
What topic? Where? I have a question. Just want to talk to people about tech problems
Arduino_LED_Matrix should on() only turn on LED and off all the others?
Replace relay to open 5V signal
Having a problem with cc1101 code
Program ATmega328p using BT module HC-05
The buzzer sounds only a few times
Killed my laptop it seems
Arduino rocking machine
How to get the best out of this forum
3,3V port doesnt work
Need help in coding a soft AP IP and how to transfer esp8266 circuit connection on breadboard to the motor shield
I need help writing a code that controls multiple servo motors using a matrix keypad
Completely new to arduino, please help
Manual and Internet control of a CNC machine
Lector de iButton y RFID (Escritura y lectura de Datos)
2 DC motor with uno and joystick car not working // Code and pictures
Setting up an E36 Sim cluster
Working with Remote
Working with Remote
Help coding multiple potentiometers
Arduino data retention
A4988 Stepper Motor Driver Microstepping
Clear Serial available
HELP NEEDED editing code for new display
Problem Adding Additional Transducers to Single Set
Termination of SD_Card with resistor
LCD How to Parse Carraige Return LF
Auto Refilling Water Tank with Solenoid Valve and Ultrasonic Sensor
LED strip colors are not correct
Fun Robot Project - Code Issue
No sound PCM5102A
Failed uploading: uploading error: exit status 1
Laser Trip Wire Sensor Connection
How to programming buzzer on NodeMCU ESP8266 with MAX30100 and DS18B20 sensor
Setting Temperature Differential Between 2 x DS18B20's
I need some help with this error code
Arduino air quality display and storage project
Controlling Stepper using incrimental rotary encoder and arduino
Curve Tracer open circuit line
Vibration motor control
Ia6b ibus help plss
How to control a stepper motor with a text file on an SD card
DYP-A02YY Waterproof sensor
Unable to upload to Nano Every 4808 /4809
Waterproof ultrasonic sensor measurements problems
EEPROM and AVRDUDE weirdness
Encoder motor control speed and position remotely
Obstacle avoid car
PM2.5 planttower/adafruit - arduino uno r3
Drone spinning round
Semaforo con sensor ultrasonico y camara 0v7670
Sim Card can't get o the network with sim900A
Sending a txt file to Arduino via UART interface
First Project, tmc2208 stepper control
Float numbers accuracy
Http based project
Http based project
Problem in controlling stepper
Creating a 3d model of a planes path
Gsm A6 reproducir MP3
Reading and analyzing reflected signal in metal detector
How do I stop this?
Controlar una placa de rele
Why not equal if(message == "on" ){} in ESP32 bluethooth
Arduino MKR Wifi getting disconnected
I want some advice
Arduino code for flex sensor to count footsteps
[Solved] IDE not uploading code to Arduino uno
Utilizar la función millis 1 vez
How to keep servo in place using joystick?
ESP32 problemas con ADC usando WIFI
Multisensor portable station, GPS not upgrading
Trying to stop the serial monitor at 10 seconds
Issues with neopixel strip longer than 60 LEDS
I've got some error?
I've got some error?
I need to find the error in this system, I simulate and display on Virtual tesmial is wrong, talented people please help!
Random movement of servo and adding neo pixels
Storage space please help
Rfid Tag save data in EPPROM
ESP32 - RX320 Serial Port problems
Using the TTL to rs485 module, I'm using max485
Upload my main code to SD Card?
Portenta machine control with firmata
ZMOD4510 Gas sensor RENESAS
Help compiling sketch for atmega8
Trouble Communicating with MaxiMet GMX600 via RS485 and Arduino (Modbus)
Adding stop button to mobile alarm clock code
Overweight problem
Adafruit fingerprint 5th and 6th wire should act as a switch
Reducing ESP32C3 Power consumption while still Scanning & Advertising?
Temp is coming out in the negitive
Pointers revisited
Success with haptics using cheap ultrasonic transmitters?
Window comparator
Problem when upload config file to board
Powering high and low voltage peripherals with one power supply
Servo turn every 12h with RTC
Multiple loops, how can i make it work?
Motor Direction reverse using Proximity Sensors
Dancing Tito 3D Printing Porject
Diy coin pusher with arduino
Waveshare oled module is not working
RF/TF 433MHZ potentiometer problems
Read issues on LCD 4 bit mode
Issue with HC-05 and Serial question marks
Rtc circuit code
Why my ESP32 camera doesent give me IP Address
Stepper motor nema 34 revolution project
Servomotor HS-805BB solo gira un sentido
SERVO not working, with Nano
Motorshield with 8 dc motors
Gas sensor data not reading and output loops in bad and good air quality
Write a program in C to switch on and off an LED
Data Logger Crash
2.8"TFT LCD Sheild- NEED HELP
Seeking tutorials & files for easy to build potentiostat
Esp32-s3-wroom e-ink display connection problem
Troubles at breaking from loops
Tutorial shiftOut12 werkt niet correct bij mij
Keyboard shortcut for find in all files?
Voltage of LED strip
Library/sample code for REST call?
Arduino IDE causes a compilation error even if 'extern "C" {' is inside a comment
Water level sensor Arduino issue on how to stop water from sitting between contacts
Trying to make a wheel go with a ultrasonic ranger
Model railroad crossing signals control
Sending serial commands while Serial Plotter is running
Help with controlling stepper with buttons. Hold button to rotate etc
Logic level hc-sr04 TTL and CMOS
Serial.available bugged when Serial.print'ing while data are incoming
Help with racing game and optical sensor for pinball score counter
PIR sensor output toggled always even noone near to sensor
Arduino Uno - Windows 10 - Driver - Error
Motor with L298
Homing CNC without GRBL
ESP-8266 Receive Data Thingspeak
How to wait for a particular IR Signal in Arduino? following code didn't work for me.. your support pls
IDE 2.2.1 does not recognise header file
SD card is not recognized
Interrupt conflict
Im having trubble finishing this code
DFPlayer+RAdio VHF
What board have I got for first project
Controlling arduino 4WD robot using z-axis"mpu6050 sensor"
N424l01 wireless fireworks ignition system
Hold button for 5 seconds before making LED high (SIMPLES WAY)
Control Structure problem
Build Error - PlayGround not accessible
Help me to find out the coding of this project
Problem with Serial.print with MPU6050
INPUT Problem for Lcd display
Need code help to replace potentiometer from 250 to 100
HardwareSerial on Esp 32-Nextion
Iot arduino problem
String in to an array
Float value on Nextion display
Interface max9814 module to Arduino board
If I change the delay time, code not working
Error at arduino keyboard
Problem: NRF24L01 Mega as receiver, Nano as transmitter
Uno R4 minima PWM
digitalWrite doesn't work sometimes
How do I code a Rotary Encoder?
About connecting Arduino Uno board to Wemos d1 r1 board
Serial read data from labview to another arduino wirelessly
What is happening with people ?
Code even for ESP32 too long? (can't be compiled)
Push-button Long vs Short press
HELP me ARDUINO CODE convert ASSEMBLY LANGUAGE
Missing expression between '(' and ')'
Questions for powering arduino and other devices connected to arduino
DC motor 775 and code
Using Multiple FSR's with analogRead
How to make arduino nano iot 33 BLE act as a pendrive
Code Issue - Drawing Robot (Arduino Engineering Kit)
Solving error Base64 on Arduino IDE
Debug is failed . How to debug correctly?
Problema con multireceiver con nrf24l01
Arduino and Assembly
ESP8266 and HC-04
Motors not responding to code for sensor
Complement operator turning uint8_t to signed number
4-Digit Seven-Segment Displays
What is this yellow/orange chip on arduino pro micro?
I am new here, getting below error.kindly point out whats wrong i have done. i am trying to connect m5stack core 2 with aws cloud
Issue with nRF24L01 module and arduino uno
Help For Stepper Motor Fluctuations Near Ignition Electrode
Transducer Matrix Delay
If while code compilation problems
Sensor Timing Disk
Sending tone from Arduino to Iphone 100m
How do I make my Mega 2560 check if something has changed ten times a second?
Efficient way to save data from arduino sensors
How to count coil
Speed measurment with hall effect sensor
Error Esp 32 con keypad 4x4 y LCD 2x16
SdError: 0XC, 0XFF y la sd wireless shield
Trouble when connecting limit switch
Can we measure the AC voltage with Arduino
The step motor does not work and beeps
I want to make call using phonebook number
m5stack_BMPCC6K fix stack smashing protect failure
Help me please with this
7-Seg Display, with extra LED's?
Trouble LCD display(beginner)
RFID Card Reader Serial Monitor
The motor of this code are not working
Keyboard keeps disconnecting from Giga R1 WiFi
Store only non-zero values from analog read() and ignore all zeros
Regarding BLDC motor driver controller
Problem with IQS7211A and ESP32 while using Wire
Mano robotica y servo motores
Restart the whole system with an interrupt to avoid power surges
What is "sizeof (int)"
Pulse Sensor Not Working
Pca9685 moduls powering
Pressure sensor wrong output
Help ESP-01 with Nano
Help selecting a MOSFET
How to move 4 motors efficiently with Arduino Uno?
What is your experience with UNO R4 WiFi on Arduino Cloud?
Code to control motors with PS4 controller
'void LiquidCrystal_I2C::init()'
No response on AT commands in HC-05bt module
keypad error: Keypad was not declared in this scope
HTML/javascript send data to arduino via rs232
UNO / EVERY problem with converting variables?
How to combine these two codes
Problem passing arguments to a class function
Unit won't connect to wi-fi when a specific IF statement in loop
The most basic GET-request with an Ethernet Shield - HELP
Arduino and C programming
Esp 32 Core 1 panic'ed
A project beat to death by the internet that i (somehow) still require assistance
Led binary converter with manual number inout
Dark Ride - Sabertooth 2x60 with nRF24l01 transceiver
Getting strange low output voltage at Motors
Expected "}" at end of input
Using Ultrasonic Sensors for NDT
How to connect two ultrasonic sensors with one lcd display?
My LCD screen is overwriting white blocks [wrong wiring]
Can 3.3V damage my body?
Arduino con matrices LED, al conectar a una fuente de alimentación independiente no funciona
NMRADCC utilisation
NEMA 34 stepper motor and DQ860MA driver controlled using RC Transmitter with Arduino UNO R3
4x Motor 4x BTS7960 problem, Arduino Uno
Changing a button to a touch sensor
I'm got Stucked with this error PlZZZ Help
Need help with factorial
My joystick doesn't work
How declare char type array
LCD not displaying data
Mosfet closes, but signal is not grounded fully
Interference of A4988 (stepper) on MAX31855
DC Motor Control with a single button and H Bridge
ESP32 compilation errors
Problem IOT remote app android
Programmer is not responding. WHY?
Arduino Diy Drone
Can someone pls tell me where the Potentiometer (for contrast adjustment) thing is
My sketches missing top of sketch
Dh11 working on leonardo and not Uno
Can someone pls tell me where the Potentiometer (for contrast adjustment) thing is
Can someone help me with this?!
Connecting pressure Sensor to arduino via half-duplex
Ideas and suggestions working with relays
4 relay modules do not work sequentially
I Cant figure out the issue
Speed controller for single phase induction motor
Relay 5v module randomly worked
Keypad gets stuck! Help
Ethernet Programing
I have a small function that used to produce a variety of blinking speeds and rates
Frequency meter
Vba and arduino
MB102 PSU problem
Ublox neo-7 Gps module
Delay in sending data over wifiNINA (arduino nano 33 iot)
Some help with Nano BLE
Arduino IR Help Please
How to assign DDRC and PORTC in Arduino code?
How to Make Standard function for Leds ON and OFF
Arduino ps2 keyboard
Compialtion error on uplaod to Arduino Nano using Arduino IDE 2.3.2
Real-time Monitoring of the quality of water in wells
Connecting 5v series lighting to Arduino
Dad needs help Fading multiple LEDs
I have Custom made 12 V Arduino motor board, Can I run DC motors on it?
Error: no such file or directory
Using a TMC2209 silent stepper motor driver with an arduino
Title: ESP32 + TMC5160A Stepper Motor Jerking at Higher Speeds with Acrylic Plate Load
LED strip not lighting up everything
Step counter in LIS2DUX12 chip
Pull up and pull down resistors
How do I access the rules of this forum ?
New user - First post !
Irradiation meter with arduino
New to Arduino Need help with project
How do i make it accept the binary data using the stream , in an array and then in a for loop it will turn on 3 led's
Serial connection between ESP-32 and Arduino UNO
Generally Toxic and non informative
Need help: microcontroller works when plugged in to computer, but not when connected to power supply. Ruled out as a software issue
I'm a fairly new Arduino user, and I need help figuring things out!
Two way serial communication between two boards
How to use two tcs34735 i2c color sensors using a single i2c bus ?
Failed uploading
Initializing SD-Card… Initialization failed Micro SD card Reader and Arduino Mega 2560
Stop Servo if the certain condition is met
JDY-31 Bluetooth Modules Not Communicating in Master-Slave Mode
Arduino a 100 metros
Reading SD Card, cant get concatenated string reading bytes from SD
Nextion Display Sends inconsistently when not on main Page
Pro Micro And Piezo Trouble
DC motor consume to much current
El módulo MAX6675 me arroja valores de 0°C
My 28byj-48 only vibrates
Invertir palabra en arduino
Does the UNO r4 wifi accept different code to a mega2560?
Automotive Gauges using Arduino
Micro-ros arduino ide installation problem
Making voting system
Float() or (float)
nRF24L01 Wiring with 10 Pins
FC16-HW control each LED
I got this error while i try to compile my code
Exploring the Intersection: Arduino Innovation and Administrative Efficiency in Portugal
Code doing loop without condition is true
Smart Parking System
Garden project - problem with button
Sketch won't count input from IR sensor
Help using pressure sensor to operate solenoid
Arduino error during upload
Hi i am trying to read some date using "uart" from the "UHF rfid reader"
Using DHT11 temp. and humidity sensor to measure & display the temp and humidity using an LCD without using any external libraries
A one wire communication program with problems
More than one button with a screen
Stop the rotation of stepper motor when the key is pressed
"What is the solution to this error?"
Cannot convert 'uint8_t (*)[160]' {aka 'unsigned char (*)[160]'} to 'uint8_t**' {aka 'unsigned char**'}
Use a different configuration depending on the amount of light in garduino
Help with Motorized faders
New to ESP32 chips. But IDE Refuses to Compile! (error 255)
Can anyone help me understanding the code to controlling a stepper motor by Arduino interfacing with micromanager
My code for 5 servo motors are not running repeatedly on the hardware ,it just runs for one time . Kindly help me with rectifying the problem
Arduino Nano serial display coding help
Another One: Error Compiling for board Arduino Uno
Problems making code repeat
Motor Driver connection to arduino, LCD and sensor and implementation of overriding switch
I am facing issues while connecting the 5 sensors in the ardiuno uno
integration of servo code into my programm
NeoPixel Lights
ELMduino - Couldn't get into ELM327 using Arduino Uno and HC05
My L298 Hbridge attacks my PCA9685 servo board
BLE 33 Sense isn't finding port
#include <ESP8266WiFi.h> void setup() { Serial.begin(115200); delay(1000); Serial.println(); Serial.println("Resetting to factory setti
Can anyone help me understanding the code to controlling a stepper motor by Arduino interfacing with micromanager
UNO R3 - Control Relay with Digital Output
Rs232 communication but weird character in output ttgo, how to read ascii
Uploads but does not execute
Necesito controlar un balancín con PID
ISR interrupt routine
IDE hangs on startup: "loading json index file ... The system cannot find the file specified."
Controlling Relay with Dfrobot PH sensor Data using ESP32
RFID Works Independently, but Stops Working When Sending Data via LoRa
Solar Powered Ventilation System
Arduino cloud interfacing in cloud
Force Sensor Setup Guidance
I keep getting error
My stepper driver won't light up
Keyboard text to binary output
Arduino resets when relay turns on/of
Tx and rx blinks constantly when connected to the breadboard
Arduino + NodeMCU ---- Publishing Data on the Cloud
Board's libraries doesn't work offline
Device is not responding
ESP32 - Wifi Connection
Hello, how can I change this code with LCD 16x2 to LCD with I2C?
We have a project smart trashbin but i want to convert the distance to percentage
How to detect the sd card in arduino portenta x8 with Hat carrier?
I need my led chaser pattern to stop with a push button [with all HIGH LEDs] Help please
Nooby needs help with robot
Reading serial and extract digits
FastLed and Random number
Need help on light detection sensor
Is it possible to do OTA update for the ESP32 using Arduino IDE 2.0.x via Ethernet instead of WiFi?
Display dht22 data on a 4*8*8 led matrix with MAX27XX using esp32
How to control two servo motor each with a potentiometer controlled wirlessly through NRF24L01+?
Difference between Arduino Mega and Elengo Mega
Help: Serial.printf to lcd.print
I need help on this task!
Stepper motor not turning under load
Interupts aren't working
Not responding to software
Can i read pwm from an output and serial print it?
Problem with Digital vs Analog Servos
Laptop to control ardiuno bluetooth car HC-05
Not shure if connected dallas sensor correctly
IR LED tv remote signal sender
Need help with a Arduino project
Hora en oled 128x64 usando un SD1302
Problem with uploading a sketch to a floppy disk
Help me understand please AT response
Help arduino uno r3 panic alarm
Having trouble in saving a sensor value at a specific time
Esp_8_bit arduino trouble NTSC video
Fallo de comunicacion ST7789V
Arduino IDE serial monitor and VR module advice
23LC1024 manual programming
Help arduino uno r3 panic alarm
Make an output pin behave like a monostable multivibrator
Failed to upload sketch and Tx Rx light is not glowing
I need help setting up my libraries in Arduino
Infrared Sensor not working
Rotating the Servo Using PID controller and SONAR
Looking to program one joystick to be toggled as 2 diffrent inputs
Button control through BLE communication
Swing gates with multiple open command inputs
Can we use an NPK sensor to measure NPK contents in water?
Menu submenu lcd 20x4
Ai assistant stopped answering in just 1 conversation
(Newbie) Simple Project with Motion Sensors
Nano Every burning hot and upload fails: "sign-on command: status -1"
Reprogramming the Elegoo Robot Car V4 and Arduino Learning
I wanted to try the NEO-6M GPS Module but I only see special characters in the Serial Monitor like this: "��������������”
General question about DEMUX for 12v motor
Beginner problem help
Reading ADC with ADC interrupts and Timer Compare
LCD with i2C connected to Raspberry pi 4 not working
Ttgo t-beam v1.1 rst:0x1 (POWERON_RESET),boot:0x7 (DOWNLOAD_BOOT(UART0/UART1/SDIO_REI_REO_V2)) waiting for download
ESP-32 CAM not sending get/Post parameter
Steppermotor with 2 LDR
Serial Port not working well
Can't find a basic sketch
Nano33 IOT not working with com ports
Can it be integrate using Iot in associated with PSoc 5LP
Multiples Output on Serial Monitor
Trying to figure out free fall detection with a LIS3DH module
Need help for my basic Buzzer Timer code
Remplace Atemega with Arduino
Water Leak Detector
I need some help with my code i cant find what is wrong with my code
My toilet flush project
Question about nextion display and can you hook up more than one speaker
Adding function to a value
Oh no.ST7789 LCD doent work and i didnt even touched when i made it working
Issues with the RFM96W
DHT11 Temperature Sensor, LED Alarm
Home project, def not an expert
Issue reading RPM of fan
Problem Switch case statements with stepper motors
Stepper control with buttons for both directions, loop for positioning
Stepper motor vibrating but not turning (using an arduino cnc shield)
Pressure sensor ABPDLNN100MG2A3
Read temperature from 6 PT100 with ESP32
Run code if button held for >20secs
Moving a servo using 2 push buttons without using a delay
Entering number using push buttons
Pull-up resisters not working on Mega 2560
Code Problems while trying to run Tensor Flow lite CNN model
Mpx 5700 ap esp 32
Demux 120 INPUTS
Sequencing two sets of leds
Does the Wire.setClock() function support 10kHz i2c clock frequency?
Help in interfacing Arduino Mega and Arduino Mini with 12VDC solenoid valve
Using ESPAsyncWebServer- web browser cause crash
Help me, the gsm module don't send SMS
I want to rotate the motor for 3 sec and stop and then wait for ir signal and rotate for 3 sec in reverse and stop,but my motor rotates infinitely
Trying to create a smart bike lock whats wrong with my code/circuit
IRremote Infrared Transmitting for IOT Device Control
Quick Question about millis
Arduino Uno stopped working after I used a charger to power it
LilyGo GitHub site requires overwriting some libs in the Arduino folder
Debounce with keypad.h
Serial print not working in setup, but works in a loop
Getting multiple readings of DHT22 sensors using esp32
Running a process
LoRa E32 433 MHz Communication Problem
Combining two codes (IR LED speed gate + LCD display)
Could not open port 'COM1': PermissionError(13, 'Access is denied.', None, 5)
Motor speed and count control
Arduino include grbl +ug8lib
Error compiling for board Arduino Uno: IR_Receiver_Module
Need help wiring a button box
Neopixel Lamp - Animation Bleed Question
Low power consumption on Arduino Nano 33 BLE
ESP32S with S9706
Vehicle counter using Arduino and loop detector
Moving a stepper motor to two places with one command and AccelStepper library
Arduino relay not working bluetooth
A7670SA Not working
Dc motor cant rotate
BN0085 module using my ESP32
Threaded Mode Communicate between multiple ESP's with RS485 Modbus
What could be the reason for these unstable analog readings, and how can I stabilise the output? Should I add a capacitor for smoothing, or modify the
Problem with Wemos D1 mini & Windows 11
Bluetooth Problem
exit status 1 'action2' was not declared in this scope
Nodemcu v3 lolin with 2 ch opto relay
Led is blinking at starting of the code or ESP32 board
I tried to change the blinking time but it just didn't connect, says "we can not connect"
Getting this error even after pressing boot button on esp
Unusual LED behavior
exit status 1 'action2' was not declared in this scope
Exit status 1 'Serial' does not name a type
I have a HCM375B sensor
How to determine watchdog trigger time
Stop incoming UDP on ESP8266
I have a HCM375B sensor
I don't understand why I can't flash devices through the Arduino Tx/Rx
Forum screen needs a How To Post link
How to get the best out of this forum
Designing a schematic for a ESP32 based smartwatch
Pro micro showing button press when not pressed
Arduino IDE 2 stalls on start
Problema de Conexión de dos arduinos Mega en modalidad cliente servidor con esp8266
Irrecv entire class explanation
Can Arduino be used in professional projects?
Generation of sine wave using arduino due
Esp-01s Relay via firebase
Openweather example
Help with Serial Communication between Arduino Uno and Raspberry PI
Compilation Error while moving Arduino IDE to another computer
Help writing code for actuator control
Simulated Boards led not turning off
Automatic Dog Feeder Project 2
Sensor lm35 no da lectura
Stepper motor control
Can't use Adafruit_PWMServoDriver
Simplefoc serial terminal use
Help simplifying nested code
HELP PLEASE! im new to coding and desperate for help
Automatic wire cutter with servo and stepper motor
Code running in false if statement
Tengo problemas para conectar la esp32 a wifi
Encoder knob count limits how do i do it
Policy on editing a post
Two libraries need pin 2 on Nano
Transfer data to arduino via audio
Ultra precise 29.9Hz ApertureWheel (with control and display)
Not able to configurate my Arduino Nano RP2040 Connect
Controlling 3 electromagnets
Rotary encoder for small engine dyno rpm
Arduino pixelstrip battery issues
Parts Tracer - Arduino UNO
Issue with depth of functions
Code can't be compiled
Problems in reading Temperature using MAX31865
CH32V003P4 - Sleep and Wakeup
PLC Siemens S7-1200 y Arduino con ENC28J60
ATMEGA328P-AU + FT232RL USB Not Recognized [solved]
Why serial monitor not working on mobotoolls library?
Compile error: '(functionName)' was not declared in this scope
IPAdress problem
Fatal error in script
Can't connect my ps2 to my arduino uno
DY-HV8F windows vs USB
Expected HTML GET response only with cookie statement; And I can't get data for my website
Problemas con max6675 PID y accelstepper
Glucometro con arduino
How to trigger actions to even hours?
LED circuit won’t function
Controlling temperature of Nest Thermostat with Arduino
Controling an ac ac regulator
How to make like the message send water level increase 50% then water level increase 70% then water level is in danger anyone know that help me please
Connecting problem to servo +moisture+ir sensor
SPI not working on WinnerMicro W806
Two Nodemcu and LED
Changing Motor Speed
Adafruit_SSD1306.h: No such file or directory
Arduino Libraries
Atmega328 6 digit pixel clock code need
No such file or directory #include <cstdarg>
USB Port Overload / Arduino Not Turning On
Testing Pin Fail
Hi every one I use mpu6050 for self balancing robot when I Scan the element i use this program but still shaw me 'scannig i2c devise'
3 relay switch based on sensor input using esp 32
UART constraint between ESP32 and Arduino UNO
Arduino Lifetest and Agetest
Arduino Lifetest and Agetest
Unable to make my code to do what i want to, help please
MQTT Connection ssl_client error Help!
Esp32 reload program after wifi cut
Ardoino UNO R3 with 3 Leds and 3 Pushbuttoms with different tasks. Need scheme and code
Please help me on this esp8266 project i't doesn't work and i'm tired
Multiple Sensors Powered by single Arduino Mega
Image on the html page and get the value of the variable
ESP8266 crash reading from serial
Ardoino UNO R3 with 3 Leds and 3 Pushbuttoms with different tasks. Need scheme and code
Billy Bass Hack trouble
Esp32 cam master and slave mesh network
Flex sesnor not reading if else statement
Library for creating robot
Two different conditions in one function
Problem with the code for led project
Hellp with project
What's wrong with this as the picture shown?
Problems with arduniojson code. expected unqualified-I’d before this #HELP PLEASE#
Problems with arduniojson code. expected unqualified-I’d before this #HELP PLEASE#
Need Help with Dim 7-Segment LED Displays Using PCF8575
Arduino uno programacion de dispensador de croquetas
Rotary encoder pin out please (3 pins)
1.8 inch TFT with micro sd card
Sorting machine by weight - 50 $
Slot car timer problems
Specific DC motor makes l293d shield really hot in matter of seconds
Need help switching to a different motor driver
Arduino IDE question
I2C issue-Arduino UNO to dim the iw3690 via I2C according to analog voltage input
Arduino Mega Relay Problem
About the discovery of my arduino on my modem router
Leer señal de un sensor de presion de 4-20mA con modulo ADS1115
Hi ,how to solve this problem
Controlling several groups of LEDs together
How to add more meteors that overlaps and overtakes this first meteor at a faster speed
Serial2 not receiving bytes on wt32-eth01
Keep getting the "a function-definition is not allowed here before '{' token" error
Arduinio Send TelNet Command for server
How to adapt a function ?
Forum member 'ranks' ('Jackson' for example')
Dynamic lighting neopixel
Libraries folder not showing up anywhere in file explorer
Temperature Humidity Sensor
Arduino Bluetooth with Stepper
Temperature Humidity Sensor
No data printing on serial monitor after sending data from xbee console to serial monitor through serial communication
GxEPD2 with multi displays
DF ROBOT keypad shield use. Programming question
Potentiometer dilemma
Code error I checked everything and didn't understand where I was wrong
Adurino R3 coding
How to use a transistor as a switch?
Code error I checked everything and didn't understand where I was wrong
Arduino and CAN bus module not in operation
I'm stuck figuring this out
Code error I checked everything and didn't understand where I was wrong
How do I make this by using the most basic code possible?
Different Folder than I should have
HC-05 not responding to At command
Problem for run new code on esp32 based board
Code error, mega 2560
Help with Creating a Code
Digital dice using 7 segment (arduino)
How can I control dot matrix
Steper direction control help
Jsn - sr20 - y1
Mac Montery and library update
Ideas para crear tapetes/alfombra de presencia
Single/Auto ADC conversion in ATtiny
Problema con muestra de resultados en displays 7 segmentos cato
Esptool.py error wile uploading code
Unable to upload when using USBC adapter
Help me understanding how optocoupler works
Why i can compile code with obvious error
Simple singnal after button click to transmitter and to receiver
Design Question about detecting connections between devices
GY-NEO6M V2 GPS and Arduino MEGA 2560 problem
How much voltage would I need to power 4 tt motors, an SG90 servo and an ultrasonic sensor?
Signal Distortion Problem
Programming ESP32 without pressing the boot button
How to get the best out of this forum
Lcd Screen not diplaying anything
Flow sensor and two relays!
Help me for Modbus RTU Library
Coin Pusher Help - Servo+button+led+matrix+sound
Websocket disconnects during normal operation
IR Remote and toneMelody loop results.value is random
I need help with arduino project
Zabezpečovací systém přidání deaktivace
Turn on output after a count
Im new here and need help with an array
Root.ls found file but SD.exists dont
I can't see my esp32 ip address
Wiring Modbus mkr 485
Arduino Long Switch Statement Bug?
Ardinyo123456789
Esp8266 not responding to client
How to setup Busylights for Meeting room
Arduino Aggregation Error
3 phase inverter using IGBT to convert DC to AC Voltage
I need help with arduino project
ADXL345 false interrupt
How to display sensor data in to TFT LCD DISPLAY?---Add in to the attached code?
Button to cycle through numbers in a 7 segment clock
PWM and PI control in dc motor
Interfacing AHT10 with 7 segment display
Weird RFID behaviour
Does the UNO r4 wifi accept different code to a mega2560?
SERIAL.BEGIN(9600); stops the overall arduino when typing the password in keypad
Error in Serial Monitor (esp32cam)
IR Sensor Detects One Time
Alternate I2C Using PA08 And PA09 On SAMD21 Not Working
What is it about this community?
Nanosecond delay on teensy 4.1
Match the speed and position of 2 rotating shafts
ZK SMC-01 a Stepper Motor Control switch
Help On Code, error message I can't solve. I am a noob at coding
Automatic School Bell
Problems with Microduino
Nema 23 Stepper Motor with tb6600 driver not moving a full step
Flashing microPython with Nano 33 BLE Sense Rev2
I2C How to send the adress and a srings data
Highest frequency for digital input pin of arduino
Pushbutton and led
Lto-wrapper failed (another one)
Conceptinetics/CQRobot DMX board
為什麼這樣不行!拜託大家幫忙看看 (Why doesn't this work! Please help everyone)
Arduino IDE folder structure
Help with older version of IDE
Using two hall effect sensors on a dc motor with multiple of these
Pulse Counter with HEX Output to Pins
Library doesn’t show up
Once procuctC =5 I want the boxC to add one to the boxC
Python and compiliation error
Original comgrow robo control board
Baseball Pitching Target Project First Thoughts
Delay differences in real time example
Arduino used automobile
Lto-wrapper failed (another one)
Hi i want to use 9v battery for solenoid
Measure frequency on a power wires of frequency converter
USB TIme out error (Python | PSoC 5) Please help me to sort this out. Why its coming?
Which is the best blocks software?
Crashed when sending data to ThingSpeak
Controlling an LED Strip with Arduino: Example Code and Wiring?
Simple circuit with NPN issue
Potentiometer "Debounce" values?
Error compilation for Arduino IoT Cloud
analogRead after disconnecting ADC module
Can't upload program but device signature is okay
Anti collision car
Error:- invalid header: 0xffffffff
Dlpf_cfg mpu6050
Esp32 programming help needed
Project 9 of the starter kit does not work for me
HS-088 Audio effect chip with Arduino
7 in one multiparameter soil sensor with esp32
Problema de conexión ARDUINO UNO y driver L298N
I keep getting error
Arduino Lifetest and Agetest
I can't convert string to int
LED button arduino
Can not see the magnetometer values in the Serial Plotter
Can I exit main to do some function and then come back to main without using interrupts?
DCMOTOR test not working for Megapi or mbot Ranger
How to retrieve data simultaneous from three sensors and create a loop system?
Sim900a error, network not recognized
Inconsistent Readings from CNY70 Sensor for Line Detection
Need help on a school project
What do i need to make this circuit work
ESP32 Troubleshooting with DIY LED Clock
Proyecto PT100 y HR202
No USB connection after a long runtime
Programming Gravity Analog TDS sensor using esp32 with firebase realtime database
Multitasking led neopixel adding other function
Ayuda Circuito Arduino Educativo
【Help】Arduino serial port input operation problem
Dimming LED using ZCD
Need some help,
Need help understanding the codes of a program
About 2 led random turn on and 2 sec off
Where is the error in my code?
About Error compiling for board AI Thinker ESP32-CAM
Generating 10us Pulse Width signals
NonBlocking code
Miniture RF Radar using Arduino Uno/Nano
Serial Communication Between ESP32 and TI C2000 microcontroller
Help with program for LED matrix slideshow
My code for arduino nano RP2040 connect stopped working HELP! :( #solved
Stepper motor problems
Arithmetic in function call
Arduino power issue/project guidance
My code output kept changing itself. How can I fix it?
Nucleo - 64 F103RB with Sharp sensor
IR sensor don't work, who know's why
Line follower robot
Arduino-RPi communication via alternative UARTs
Problem with butttons and i2c lcd
LED Pin Controller Help
Max6675 esd and emi
Consistent -1 return from BTSerial
Ready-made sensor conected with arduino
Escape room help
Help me understand op-amps use
Need wiring diagram for 5pin LED strip
Hilfe benötigt bei Pedalbox programmierung
Help me understand op-amps use
[Arduino Due] Quadrature Decoder Index Counter Does Not Increase
How to take analog signal sample at one perticular period
1-channel 5V 30A relay module wirings and cose
Designate TX pin for character transmission
Press the button and blink differently
Control de cuatro leds, por medio del monitor serial ingresando cadenas
Esp32 Object detection camera
Need assistance with the loop function
Error void value not ignored is it ought to be
Using two or more Voltage sensors for recording Battery Data
How to change/increase data rate of ADXL345?
I need help I keep getting 0 cm
Nano Audio (Auduino Synth) Project Schematic Check
How to use function RTC.setTime() inside the loop() ?
Python to arduino serial communication to run stepper motor
TIP120 switching 12v 5a
MAX30102 lowering clock speed
I was running this code and this error appear "TypeError: Failed to fetch
Compilation error: expected constructor, destructor, or type conversion before '(' token
Help with multitask
Combine two codes in one for a solar tracking system with voltage and current display using ina 219
Combine two codes in one for a solar tracking system with voltage and current display using ina 219
Combine two codes in one for a solar tracking system with voltage and current display using ina 219
How can i write tempature on lcd screen?
HC-05 (Bluetooth card) and UNO - HC-05 "not available
Two Metal Gearmotors 37Dx57L mm 12V with 64 CPR Encoders (No End Cap) running with Arduino Mega or Mega 2560
Using a SD-Card with an ESP32-S3-DEVKITC-1 on HSPI
Speed warning light
Code humidity sensor
Project - Alarm of helpers in the use insertion at a power failure
How to declare dinamic size String Array?
Making an object move with a button tft display
Water Pump is always on
Nano 33 IoT comnection help
Issues with arduino libraries
Pro micro showing button press when not pressed
Can you help me with this simple button circuit?
Can someone pls correct this code
Stopping the car after it goes off the line
Expected '(' before '{' token
MOSFET in open collector configuration
Temperature sensor reading when disconnected
HELP how will i integrate this code into this code, I am planning to open the lock from the otherside of the door using serial monitor from my laptop
Very weird NRF24L01
3D printing filament tension
Lightning sensor AS3935
Does anybody know whats wrong with my code
Alarm system coding
Compilation error: a function-definition is not allowed here before '{' token
Laptop Freezes/Lags when powering BTS7960 (DIY FFB Steering Wheel Project)
Solar Inverter communication with max 232 not work properly for all inverter
ESP32 keyboard help
Need help to configure LED running by preesing switch
Arduino Uno board problem
Sync Back MQTT using ESP32 and SD card module
Can’t make this stepper motors work
Arduino Uno and Quectel EC25
Weight sensor triggered display
RGB Led Matrix 32x32
Dual solar tracking coding using 4 ldr , 2 servo motors, arduino
Constant Error with no Error Code shown on HM-10 with Micro:Bit
I2C LCD display not working
MosFet H-bridge motor control confusion
Arduino I2S Audio Sampling with Audio Smoothing Loud Sources
Strange Undefined Reference for a function - ESP23
Always comes with one extra zero as an output in Available command
Running Away Alarm Clock w/ a Motion sensor
Problem with domain maximum/minimum for loop
How to Send data from Arduino Nano 33 BLE to BlueLight
Coding stepper motor to specific position based on ultrasonic potensiometer
Uploading Problem
SD card intializatiom failed error (Arduino nano used)
Board is not detecting on com suddenly and the board is unoq
Guitar input with op amp not giving output
Arduino and dimmer nativity lights
UART communication problem - serial port monitor
Error when using count function
Making MP3 file play through speaker using ESP32 and RFID-RC522
Pololu High-Power Stepper Motor Driver 36v4 with Arduino MEGA
HardwareTimer.h no such file or directory
Mosfets and arduino
Nicla Voice Code
RFID not scanning
DS2408 onewire plantage compilation
No me deja iniciar porque?
How to resolve this error
SG90 Servo Problems
Trying to connect pH sensor to esp32
Vacuum fluorescent indicator
IR and smoke sensor for protenta h7
What Arduino module can I use to create a 1-meter wireless key?
About sender receiver system
Adding USK guide codes to Arduino ide 2.3.2
RS232 to TTL uart convertion not working ?
Nema17 and a4988
Millis instead of delay on array of ledstrip
Connecting arduino mega to sparkfun mp3 shield
Calentar alambre de nicrom con cargador de 12 volts
Code error need help
Using Arduino with IRMP to send Mitsubishi Heavy IR protocol
What causes my SHT41 to stop working on ESP32
Arduino MEga and dfr0258 and softwareserial.h
Problema con bucle LOOP con matriz led 8x8
Voice recognition module V3.1
Esp32 camera is connected to relay, but when connecting to cellphone it will turn off
I need hekp whit a problem whit compilations
ILI9486 setup with Arduino MEGA 2560
Using Servo with GPS module
At comand at gsm900
64 Band Stereo Spectrum Analyzer
Juego de rapidez
Print to serial when button pressed
Módulo de pantalla LCD TFT SSD1963, placa controladora con tarjeta de Panel táctil para Arduino 51 AVR STM32, 5 pulgadas, 5,0 pulgadas, 800x480
Project that needs radio and remote control
Error when testing ip
Using Arduino Mega as a Joystick
BME688 sensor disturbed on relay activation on MKR IoT Carrier Rev2
Help with my arduino library: no such file
Arduino mini pro and nrf24L01 not working plaese help
Problems with arduino uno R3
Using TVout overlay and PS2keyboard
Diy Steering wheel with Arduino Leonardo and encode ky40
Faster digitalWrite
Compass sensor suggestion
What is this error message and why am I getting it?
L293D output current drop
Arduino mismatch error
Relay does not turn on when I press the button
Unprecise measurements with HX711 and Wemos D1 Mini v4
SE05X encryption?
Solar tracker (full size w/ 10 panels) with L298n
Cursor setting and edit float value
Why doesn't the HTML source apply?
Accessing an array in PROGMEM
Help me please :(
Motor dc transistor
Problems with my code
Read NMEA2000 from Airmar DST800
People counter keeps counting add LEDs
How to control ESCs
set servo angle
Luftalarm
pot to controll on and off multiple led. between value?
HC05 - not working, any help? (arduino UNO)
Dc motor control with L293d and Arduino Uno
New beginners kit cant seem to get working.
Arduino 2560 with hc05 no AT commands
Upload to Arduino Nano
Trigger Time Delay Relay
Weight with SIM900
Quien tiene un sensor de ph, especificamente un modulo de ph 4502 que me pueda ayudar
Dual I2C device issues
Esp32 doesnt work with ssd1331 Oled
Problem Uploading To Board after big sur
Arduino nano only runs the code when it is connected to the computer
Problem with SIM808, locating, Arduino
Square Line Studios /w ESP32-S3 Development Board, with 1.28inch Round Touch LCD
RS232 to TTL converter help
Code gives unwanted triggers
How to make 1 command be interpretted as multiple
Redboard plus and weather shield
I want to understand why its necessary to put (y>700&&y<800 )
How to communicate the IMU sensor with esp32 via SPI communication
Elegoo Smart Robot Car v3.0
Arduino UNO R4 WiFi is bootlooping
QTRX-HD-02A sensor reading only low values
Trying to run Arduino code on external power
Conector trrs esp32
Blynk and wifi problem
Communicate a shelly pro 3m module with an esp32 devkitv1
Arduino IDE support for Terasic DE10 Nano
Im getting error when verifying the lesson 11 membrane switch module
UNO analog pin not reading zero when grounded?
All of you who love programming, I have a little challenge for you
Issue in establishing two way communication using 2 Arduino uno and 2 xbees
Accelstepper with serial communication
UNO r4 Wifi issues when exporting
Drone Arduino Code
Odd problem with Nano 33 IOT IMU
Waveboard esp32 hulp
12v Proximity sensor alarm
Error connecting to blynk app
Running Stepper Motor
I am creating a project using arduino nano, ESP8266 and DPS310 sensor. I uploaded the code for the same but the serial monitor wasn't displaying
60vdc, 50A pulsing with mosfets, 1-10Htz
I want a help regarding colour sensor
Delay blocking the code
Como conseguir lo mejor de este foro
Arduino error message jan21
Tft screen and rfid reader failure
analogRead() only gives gibberish unless the A1 pin is connected to an Arduino 5v or ground
Pen plotter-CDLC7
Rc car 2 inputs 1 output
HELP, i cant make my 3 servos work
Trying to get automation on a global server, but getting lost
ESP32 deep sleep clears RTC memory
Arte sonoro, Sensor PIR como pulsador en DFPlayer (reproductor de audio)
Strange Nano behaviour
Maxon motor interfacing with ardunio
Troubleshooting [Arduino UNO + CNC shield + DRV8825 + steppers]
Invalid readings from DHT11 sensor
Invalid readings from DHT11 sensor
Register a kit gone bad
The Manchester code data written to arduino board using python can see the flipped output on the RX pin
VL53L1X and AtTiny85 - Run library - help
TFT_eSPI printToSprite issue
Running Stepper Motor
Program intermittently freezes after relay is energized
Apps Script link being moved
Sketch won't upload to Uno, programmer is not responding
How to control a servo motor with potentiometer using PID
Sketch won't upload to Uno, programmer is not responding
Advice for building my own as simple as possibile stepper motor driver
How to Fix this Arduino Car
How to rectify this error on esp8266 program for smart farming ?
Nano Serial not working properly
Estara una led encendida al presionar el boton se apagara y prendera el otro led de misma manera viceversa
Preprocessor Array command creates confusion
IR Remote Control
Try to do different things when press push button in first time and the following times
Oled display does not initialise
Atmega64 not working
How do I use Modbus (TCP) to read PLC's 2word Data?
Ds-co2-20 CO2 sensor
Need help with encryption for an arduino project
Problem whit the code
Help with Stepper Motor and TMC2209 - Microstepping Issue
Mosi y miso con lector rfid y micro sd
No Voltage on pin 11 Arduino UNO
Need help with a project
Arduino protogen issues
How to get a constant color from RGB LED?
Oled clock with pulseoximeter and thermostat
Enable Pin TB6600
Need help with arduino vending machine
Button-led lights code in project
Program showing error
Program showing error
Retraso en botón pulsador según el código que ejecute
I want to get data using Arduino Uno, MPU6050 and SD card
Uploading doesn't work
Wiring an ESP-01S to an Arduino Nano
Esp 32 and Fingerprint sensor R307
Sevseg kamu sama dengan aku namun saya susah mengatur desimal nya
Infinity loading
Sensor MPXV7007DP
How to use this forum - please read.
Power Supply & Amperage - Confirmation of understanding
'void LiquidCrystal_I2C::init()' is private within this context
How to use this forum - please read
How to use this forum - please read
Measure pH, conductivity, temperature, humidity, nitrogen, phosphorus, and potassium using the JXBS-3001-RS485- SOIL SENSOR
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
Wiring help for project
I am facing this error all the time with blynk on esp32
DC motor, servo motor, & ultrasonic doesn't function at all
Nano not recognising board
Wiring a display and mpu
Problems with led strip
Help Arduino Compilation error: expected initializer before '.' token. Can any body help me with this
Epson l805 - p50 - t50 Printer encoder pinout pls help me
XBEE conexion con arduino y emision y recepcion
Formula used to convert temperature, humidity, Ph and pressure of soil into soil NPK without using NPK sensor
Struct and setSyncProvider (ESP8266 NodeMCU)
Can the ESP8266-01 send data to thingspeak?
Can not get my arduino connected to web first steps works then error no matter what i did i followed all instructions
How to send SMS with Hc05?
LCD 16×2 not Lighting Up for Automatic watering system
What do you think of this circuit?
"While" Command
getMedianNum is Error! Can someone help me?s Can some one solve? I add code already
Esp8266 nodemcu onboard led help me
Arduino not working
When reset, should OPTA execute setup() again?
How to combine 3 different sensor into 1 program and start the program by using one Button , this is the program i created but it seems cannot work
Is there a way to clear the screen and have autoscroll in the same loop?
TinyGPS++ Altitude problem
The code is not working even though it loads correctly
Consejos contra interferencias electromagnéticas con Arduino y otros componentes
Little yellow display esp32 NVR storage issuse Fixed
Arduino Leonardo is disconnecting from pc in a few seconds
Turn on and off an output for a specified amount of time?
PS/2 to MSX mouse converter
Can not set radio.setchannel()
Arduino robot arm servo ultrasonic sensors not working
Arduino not working
Car Doors Check Control using a OPEL TID Display
Problem with some sensors but not motors
Unconnecting usb
Arduino lcd I2C
Controlling 500 relays
Need too Modify a code
I use ESP32-S3, but Arduino IDE serial monitor doesn't output
Web JOYSTICK (need to be fixed)
[Closed] How to build a remotly controlled winch?
How to combine 3 different sensor into 1 program and start the program by using one Button , this is the program i created but it seems cannot work
To program output on and off
Why does SPI turn on the built-in orange LED?
Max485 modbus rtu
Compile error ddddd
L298N Motor Driver with uneven voltage output
Initializing SD card...initialization failed
Arduino Voltage Capacity
Arduino only executing instruction once, then stop
Power issues with the HW-130 Motor Shield
Change default key of rfid tag
IR sensor trouble
Could any body help me with the error regarding mouse library
Low-Power by rocketscream does not work
Arduino Heart Rate Sensor Problems
Simply running ESP01
PCan I program the Arduino Nano 33 BLE Rev2 without having to learn Python?
Arduino program
Dummy question re neopixel
Compilation error: "avr-gcc: error: CreateProcess: No such file or directory"
How to display arduino tft shield lcd
Camera probe failed with error 0x105(ESP_ERR_NOT_FOUND) Camera init failed with error 0x105
How to send 512kb of data from stm32 to esp32
Help on coding/wiring a GEARS IDS II and Air cannon
I am making a biometric attendence system
BN-880 GPS and Galileo
Voltage drop with parallel digital output
Orbion 3d space mouse
Mdns-discovery problem
Attiny85 Battery Tester
ESP-01 Compilation error: exit status 0xc0000135
My encoder motor doesn't want to work with my programming; Why?
Admin Arduino IDE
I2C - Acknowledge and Clock control
MCP23017 to read hall sensors
Software for MAX30100 and MAX30102
Can I have two functions that will be executed based on how long the rfid card is present at the scanner
Absolute Pressure sensor for SPL Measurment
Yikes! while trying to upload using programmer
IDE 2.x eats CPU time in Linux
How to tune EKF for attitude estimation?
Arduino Micro Board Smoke
Unable to write to the modbus slave register
Uploaded blink file from example but no results found
My code gets stuck uploading
Reaction Wheel Control
Mmwave sensor in Arduino uno
Arduino FFT for audio spectrum analyzer
I want to print out the value pressure and time to make graph force vs time but when the times 0 the pressure already has value
Slow transfer of data with bluetooth module HC-06
Hola buenas tengo una duda sobre el uso de servomotor
Controlling a momentary switch with an on off switch
Codigo de arduino de esp32
Please help me rewrite delay with millis
Cannot get simple programme working
Optimization Help for Ohmmeter with Modbus and OLED Display on 16 MHz Arduino
Help me merge this two codes together pls
4 semaforos conectados por bluetooth
Introducing ArduForge - A visual node-based code generator for Arduino (Open Source)
Trying to create a smart bike lock whats wrong with my code/circuit
16x2 lcd screen crashes after a while
BLE writevalue help
Interference between LCD and Stepper
6DOF GY-521 3 axis #hardware
Receive & Send OSC data to ESP 32
Why will the edge impulse password say you need authorization
Powering 4 Servos and an RGB LED Strip
Need help to factory reset by hardware
Ultrasonic sensor noise
Lights code problem
Simple IR Sensor Program
Problem installing LiquidCrystal_I2C.h
How do I add L298N and L293 motor shields to the parts list on Arduino IDE so I can simulate and test wiring for my design/programming 4WD Robot car?
Descriptor is empty in android logs, and only 5 characteristics are shown but i have defined 6
Problemas al mostrar datos en LCD
I2c : possible to manage multiservo-modul and lcd-panel ?
SD Card Issue with 4x3 Keypad time input
Temprature finding device with arduino uno
Three phase current monitor
Código semafóro com bot para Pedestres - ajuda
Why can't I use if else to change the color of the RGB led?
Why can't I use if else to change the color of the RGB led?
Serial monitor Stop Working
I Need Help with Delay Function Code for Servo
MIDI recognition issue with Arduino UNO
Code modification for measuring Heart Pulse Rate with MAX30102 pulse sensor
ESP32s3 and BME680
Buzzer not working (problem in code)
Nextion page value update (EasyNextionLibrary)
Hand positioning with IMU
Multi character constant
Connecting nRf24L01 to Atmega328PU with external 8Mhz Crystal problem
nRF24L01Communication not allowed immediately after reset on transmission
White display on ILI9341 red board
ESP32-CAM only works while GND jumper is being pulled out
Boat Motor Control
Njw1153 project emergency help
GUI con Arduino
Controling Ultra Torque Hi-tec Servo motors using Arduino
Why can't I use if else to change the color of the RGB led?
Why can't I use if else to change the color of the RGB led?
Servo Control with a traffic light system
MCP23017 Not Working
Arduino code will upload on the board but will not run
Overcurrent in motors driven by IBT2
Help implement RS-485 Modbus on Schneider PM800 on ESP32
Error 13 Arducam_ESP8266_UNO
I think it would help a lot of people with the same idea as me
Using rotary switch to toggle between microstepping options
Error to many arguments in function
How to control motors with a keyboard
How can a transistor help and Arduino from getting fried
Continuously read EEPROM value or read EEPROM at setup() once
Keypad y matriz 8x8
My Motors work differently
Check string for special characters
Plz guide code that Aruduino MEGA can read from ADC converter
What is lap winding
Arduino Nano LCD Display
Using an MPU6050 to stop a NEMA 17 stepper motor from spinning
Hardware Compatibility Check for Automatic Curtains
Hoe haal je het meeste uit het forum
DHT11 Error Code With Arduino Uno
Hid device programming help
Turbine type Flow meter give incorrect flow
Sound sensor results high reading
Ayuda con el controlador de servo y ph con rf
Exit status 1 - keep getting this error
Fsr + servo motor
SD card modulator not working with pin moso and mosi
Reutilizar placa de volante para play 2
Coding the Arduino Braccio robot
Initialization of the optical flow sensor (pmw3901) failed
RS485 - Arduino
How to get the best out of this forum
Data Transfer via SoftwareSerial (different Bautrates?)
Arduino nano connect and disconect repeatedly
Arduino program not working properly
Printing to serial is not as expected
Arduino Code for Joystick for transmitter
Troubleshouting my sketch
ERROR: exit status 1 NEED HELP
GigaR1 USB filewrite
Reading Sensor. Do condition with Solenoid and Pump
Slow Upload for IDE
I2C accelerometer not working with Arduino. MXC6255XU
ESP32 Camera connection error and serial noise
R307 Fingerprint error
Encender 8 LEDs y apagarlos cada uno con su respectivo push
LiPo Fuel Gauge Lithium battery power detection MAX17043
How to rewrite the program that causes the system to crash
Delay between arduino and nextion display
Arduino due with Wi-Fi Nina W132 module
Is Arduino used in each and every robot?
IoT dashboard help
Weather station project
How can I make alexa discover devices made by Node MCU ESP8266
Help with juice dispenser
High school robotics project – when does AI actually add value?
Bulding a dump truck using arduino uno
What's wrong with "x += 1"
Multifunction robot not working
How to connect two MPU6050
Ship style radar display
IR Transmitter Circuit with Arduino FAILED
Can any one help to correct this code its repeating backward forwar turn lef turn right
Flowchart for school
Proximity and light sensors Amperk VL6180. Incorrect work with the multiplexer
NFC reader on Arruino Uno WiFi Rev2
IR remote giving same HEX code FFFFFFFF
Serial port not available on Mac OS 15
Output current 5 volts
3 floor elevator
How send data to Google sheets using GSM module
Can anyone help me fix this for my ICT project?
Pedal board diode output wiring
Tree ethernet shield in network
Providing stable current on arduino Nano
Arduino Code Assistance
Help writing script
SD stop after reading and writing a few data
Memcpy or alternative
Biblioteca adecuada para ILI9488
Que tiene mal este circuito, que se prenden las luces?
IR Sensor operation
How do you keep track of the position of the servo
Sketch size and memory
Are bug reports still being taken for IDE 1.X?
This code can not show case 3 and 4
Edge detection on a DC motor
Base de datos con lector rfid en arduino
Error in lcd.begin;
Send Data Nano 33 Ble (peripheral) to esp32(central)
Proportional Valve
The Arduino Starter Kit Project 2- Non LED-light
Modify mpu6050 display
Problem in uploading the code
How to get the best out of this forum
One DC motor is running alone
Libraries missing after updating "Arduino UNO R4 Boards" to 1.0.4
GY-906 MLX90614 infrared temperature sensor not working with Arduino Mega 2560
Is that possible to make a Lens free microscopy system using Arduino?
After connecting the display, the values are not updated
Code mixing RH_ASK & BLE-Keyboard failed
Modbus ESP32 Timeout
Direct Port Manipulation Using the Arduino Giga Board
Sync two arduino boards
Analoge waarde opslaan
The problem of entering a 0 value between two different cards while transferring data to a single card with ESP-NOW
Using ACS712 for VFD
PAC9685,I have used many test codes, but they all failed, I don't know why
How to connect ultrasonic sensor to run pump and measure speed
Change of LSM6DS3 acceleration range
Sound simulation
Configuring Arduino Nano
Too big g force values even though it's just a little touch(using mpu6050)
Arduino wired sensor network
HTTP response code with -1
Arduino Uno watering system with moisture sensor
Trying to connect my esp8266 (Wemos) to my socket.io server
Help, beginner with almost 0 knowledge
Control blinds with ESP8266 and Home Assistant (MQTT)
ESP32 BLE Bluetooth Examples Confuse Me
How do i get a arduino uno to get a stable 500khz
IDE always unnecessarily offers application update and fails to install libraries
Gripper of Braccio robot arm
Help with ESPNOW and UART Serial Comms
How to stop a loop playing on power up
INMP441 only showing zero value
Pre written code for simple traffic light won't verify or download
A4988 Vref is way too low
My hc 05 bluetooth module isn't working at all
Problems with PulseSensor_Playground libraries
How to control current inverter on grid
My program is not running
The error I am getting while I am running the code (RADIOHEAD)
Why Is My Arduino Code Not Producing the Expected Output?
About the Getnumber() library
Clock direction too slow. TTL servo motor SC09
K-LD7 with Arduino uno
Using a TB6600 stepper driver instead of a TB5660 programming difficulty
Model railroad crossing gates
How to rear and print received Messages
Lectura baja en sensor DHT11
Problems with line follower
How to control TENS with ESP32 using PWM?
There are many ESP32+TFT board,
PCA9685 not taking external power and code not working
Arduino cloud scheduler issue
Library problem which is not recognized
Data from plc to arduino with enc28j60 module
Problem creating a Digital watch (Arduino Project)
Missing xcrun error message when uploadning code
Teknic Clearcore with Arduino wrapper rotary table
Creating a Smart Car
Uploading to pro mini fails
CNC shield with A4988 not supplying enough current to the stepper motor
Port disconnects after I upload my sketch
Arduino tft screen problem
OV7670 with Nano33BLE - inconsistent test image
Can the Raspberry Pi 5 compile/accept the Arduino Cloud Create Agent?
No encuentra puerto en mi Mac
I2C communication btw esp8266 and arduino nano
I am Making an Voting Machine So How Could I Disable Switches So That I Can Receive One Vote at a time
Arduino and finger print sensor
Phase shift between Pins
Hulp gevraagd bij het maken van een module
Portenta H7 not connecting to iot.arduino.cc
TM1637(4 digit) not working in atmega328p(basic circuit 16Mhz)
Registers arduino nano
Brazo robótico con sensor de proximidad
Esp32-cam and neo6m gps and Arduino connection
Arduino device to control AirPods
My program is not running
SIM7000E Arduino NB-IoT / LTE / GNSS / GPRS / GPS Expansion Shield with Arduino
AccelStepper library, stop() function
12v Relay to 240v Connection
Shift Register Outputs Flicker During MCU Update
In a circuit with Arduino uno,we have a 433Mhz Transmitter, pir sensor, Light dependent resistor and LED. Can you help me bring up with the calculatio
Ds3231 RTC coding
Need to display text from keyboard to Monitor screen
Download drivers
Drivers for Mac
eeprom_resetEeprom error
Code running on USB power but not battery?
How many components can be connected to arduino uno?
ESP32 BLE Unique Identifier
Pass source path to bootloader
My arduino uno stop looping after a random time by it self
Atmega 328p microcontroller
Making RGBW LED's Change color with each button
Arduino does not connect right
The issue with the ESP32 connection to the RFID on the RST pin
Code problems with servos
Mix python code with arduino c code in arduino IDE
Modulo Neo-6m V2 pisca mas não passa informação
Usb midi control to arduino with midiusb?
JAWDUINO con arduino NANO
Problema con Esp8266 conectado con dos max7219 y displays de 7 segmentos
Pls help me stop a RGB led loop
My code and wiring is correct but the IR sensor is not working
SD Card confusion
Not getting MQ2 sensor value
Arduino car problems
I am geting error
RFID 125kHz scaner
I want to Rotate stepper Motor only once
I could use an outside point of veiw
MISO problem when controlling an EVB with SPI
Fatal error: bits/c++config.h: No such file or directory
ESP32 Camera: Failed uploading: uploading error: exit status 2
Consecutive digital inputs trigger output
How to control nema 23 stepper motor with driver TB6600 via bluetooth
Cloud Editor Serial Monitor Not working
RF-Nano communication with RF-Nano
Arduino UNO : digital outputs
Issues with sensor kit temperature humidity
Galvo control with esp32 arduino
Programer's responsability not compiler's
How can i use arduino meg +wifi +esp8266
ESP32 static IP doesn't work with SMARTPHONE? NO SOLUTION POSSIBLE
Proyecto Arduino UNO (Maceta móvil con sensor de humedad)
Arduino Nano Access Serial Monitor While Supplying 12V Power Source
Sensor Canon MG2470 MG2570 MG2570s
How can I structure a quadruped robot dog on an Arduino UNO Q (App Lab) to follow specific people? I'm looking for opinions and ideas on this architec
WeMos D1 R1 and NPK Sensor with the use of RS485
Problème de précision de temps
Save data to array then plot in serial plotter
Hii I am a new user to the community
When I enter a digit on the project keyboard, it is overwritten and does not break the line to be displayed on the screen
Finding a way to use an Esp32-cam as a receiver for ELRS or Frsky
PIR motion sensor delay
Only DHCP works
What are these resistors called and where can I buy them
Accepting x,y,z coordinates in real time
Trying to figure out power for a Quadruped Robot
Code compilation error in arduino ide 2.0
I need help with u8glib
Compilation error: expected ';' before 'delay' bu hata nasıl düzeltilir?(TR)
Reverse loop for model railway`s
Exit status 1 problem
Connecting the UNO with the elechouse vr3 and L293 adafruit driver to move 2 motors by voice commands
EMG over BLE doesn't give the expected signal in time domain
Flowrate from Pressure in xgzp6897D
Esp-cam [failed to acquire frame]
How to display Date in Scrolling Text
Sensores qtr-1a y qtr-1rc
Evelopment and Evaluation of an Arduino-Mega based Active Noise Cancellation Device for Indoor and Outdoor Environments
Water pump and strain gauges with arduino
Pulse sensor playground
How to display Date in Scrolling Text
Arduino UNO R3 with MAX30102 sensor and 1.3' OLED display showing Incorrect/No values
Driving a display
Arduino Uno Wifi Rev2: Serial monitor
Why this nibp program can't control the circuit properly
How to get the best out of this forum
Nothing to discuss, I already find the solution
Rotary encoder not working properly
Arduino Oled code help needed
Controle de mouvement avec nema17 + TB6600
How do I make a connection to a host server that has been deployed on a service such as GCP or Railway?
Tuning Internal Oscillator of ATTiny85
Help with understanding a sketch and how to implement it
Where is the Problem in this code?
Problemas con motor y Driver L298N. No trabaja con PMW para manejar velocidad
Gauge temperatura
Sensor de temperatura transistor lm317, 3 led y pantalla lcd con modulador i2c
Countdown timer with LCD
Driving a display
Exception shown in Serial Monitor when running sketch on ESP8266 board
ESP32s soc.h problem
Expected initializer before spring
TB6612FNG driver - i dont get voltage
PID coding using motor driver and voltmeter
How to stop buzzer sensor?
Problema con analogRead
Arduino nano con ch340 causa pantallazo azul
Setting up the Duinotech UNO r3 Main Board with Wi-Fi with ESP
Error compiling for board NodeMCU 1.0 (ESP-12E Module)
I have just a little problem
Carro (4 motores) evasor de obstaculos
Ch552 sdcc callback passing values
Project discussion : water level indicator with auto cut off and purity checker
Voltage sensor not reading right
Using 2 sensors for 1 event. Having a problem writing the IF-ELSE
How to achieve 1km Non-Line-of-Sight Wireless Communication without Internet
Why arduino uno reads high or low at digital pin after reseting the board
How to recieve data from BLE sensor via HM-10 bluetooth on Arduino
TMC2226 Driver Current Limit
Mkr wifi 1010 not recognized
Connect LED to GND without wire to Arduino?
Cálculo da velocidade média com dois sensores ultrassônicos
Serial.print and Board at null is not available
PCA9685 Servo Pins
Set arduino RTC alarm every minute
Adafruit fingerprint store from DB to actual fingerprint memory
Suddenly change in value
Bluetooth Low Energy 4.0 Module x Mega 2560 Rev3 and general questions
Loop for fault IDE 2.2.1
Mcp can.h cannot receive data with the specified ID
TCA9548A ESP32-S3 Connection Help
GSM Module to Breadboard
LiDAR-Luna+Arduino mega+WS2812B
Stepper Motors with Arduino Mega 2560
Excel data read
Graph sinusoidal on 1.8" tft display using lookup table
How do I combine 2 codes in one program?
Need Help, Code messes up motors
Weird behavior from DFPlayer Mini
Here all works well except "delay(1000); digitalWrite(REY, HIGH);"
Serial communication help between 2 Boards SOLVED
How to Power down based on encoder movement?
Connecting printer encoder
Make servo motor control code
Need Help! Can't get Servo motor to work with the Ir sensor!
Controlling Servo Speed's
Buzzing sound when accepting call from sim800l module even though dfplayer mini module has audio file(0001.mp3) stored in microSd card
Help with my first Self-Driving Car
El monitor serial de Esp8266 no funciona
Does anybody used the RN131C in Arduino 2.x.x?
My code doesnt work
Trying to use HiLetgo ‎3-01-1247-25A
Press any key every time delay
Energy meter not displaying load
Help on my LCD project
If only runs once
Arduino Board with analog output 0-5vdc
My code doesnt work
Arduino Board with analog output 0-5vdc
Please Help: Compilation error: expression cannot be used as a function
Powering Nano 33 BLE
Liquid Level measurement using copper foils sticked to the steel cylinder with arduino
Exporting serial data from Arduino in real time
IDE hangs on startup after removing OneDrive
Arduino upload error
Need support in PN532 and NDEF
Why is my circuit not working?
Can't print on Nextion from esp32
Trying to communicate with a Simcom A7670E connected to Nano and Uno without avail
Powering an Uno project board
BTS7960-M behaves weirdly after using it in if condition
Ili9341 shield and wemos d1 r32
Arduino Uno watering system with moisture sensor
Energizing two arduinos
Finding center of gravity with 4 load cells and 4 hx711
Macropad - Arduino mini pro I2C communication
ESC Controller for BLDC Motor
ESP01 pin rx tx no working L298N
Shutting power to model train during current spike
Arduino ramps 1.6+ diconnecting
Relay is not working when supplied 5V
Load cell display highest value
Oled digital clock
Push button doesn't work on arduino nano powered by a 9 volts battety
ESP32-S3 + ILI9488 (SPI) stays white with LovyanGFX, TFT_eSPI crashes inside tft.init()
Help me with my 1st project (my deadline for this is tommorow please help)
Github Archive for ESP32-TTGO-MQTT-Using-Arduino-IDE Projects
Github Archive for Arduino-28BYJ-48_Stepper-Motor projects
Arduino 1.8.19 Linux 32 on HP Mini with Ubuntu
Implementing 16-bit PWM on Uno R2
IDE bpreprocessor errro[SOLVED]
Esp32 and max30102
L298N motor drivers driving me crazy
Arduino nano not working
servo.writeMicroseconds() does not seem to yield correct results
Compilation error: exit status 1
8-modulereley-urgent!
IoT Based Soil Nutrient Monitoring
How do I use the Sensor laser distance LDBA B182 ?
The blinking LEDs wont run in Sequence 3 codes
16 bit data transfer between two arduino uno's
Arduino IDE does not start
Help with an error message please?
Pressing joystick centers both x and y servo
Compilation error for teensy 4.0
Initialising Error for esp 32 cam on serial monitor
Hc-05 not working
Modbus Communication Issue between Arduino OPTA and Mega - CRC Error during Write Operation
Question On Running Same program on two pins
Code cooling fan
I sent encrypted command from python code to here using Wifi, but the code here doesn't work with decryption, it doesn't show the original message
Serial help wanted
Help w programming electronics for diorama project
Uno R4 problem with FastLED and WS2811
Uno how to define pin13 relative to PB5
How to output to a pin from serial.port
Fun project with sensor to make alarm sound when someone gets close to it
İyi günler Nrf modül kaç gb veri gönderebilir
Nodemcu gps without gps module error
Esp32 solo funciona con monitor serial
How to connect everything for a button box
Spi interrupt issue
AttachInterrupt breaking my code
Crear un simulador para ECUs Automotriz
How does arduino communication between uno R4 wifi and uno R3 work?
Uno R3 Upload/Connection Issues
ESP 32 does not connect to WI FI
Bitmap does not display correct
Making pc mouse with joystick and two buttons
Controlling 12v Neon led strip Brightness
"Uploading error: exti status 1" with "avrdude: ser_open(): can't set com-state for "\\.\COM2""
Soil Moisture Sensor On and Off control
SparkFun_TB6612 library
Serial port busy
Df player mini and esp32 proyect (horn)
RL circuit problem
Problem with USB ports of PC after project burnt
Segitség kérése
Stepper motor at a constant speed of 60 RPMs using the TMC2208 UART
What should i do to NOT fry my new Arduino nano
Connecting arduino nano
Conflict of TFT display and SD card SPI communication
GY6180 TOF Laser library file
LED P10 matrix with arduino mega
Access to the AdvancedWebServer webpage
W5500 frozen arduino
ESP8266 NTP error Year 1970
Maze solution with LiDAR technology implanted in a drone
Multiple 12v inputs
Rele Reed always closed
Mkr wifi 1010 loop speed improvement plan
Trying to get motors to work
Arduino Nano & HC05 Two Way Communication
No output from MIDI shield
How to amplify a signal being received from a plant
New file Extension in Arduino IDE 2.2.1
Arduino LCD Counter issues
Modbus RS485 communication Through ATMEGAmega2560p
Esp32 Wifi problem
Audrino AI Xiaozhi development
HX711 with 4 load cells
Fotografía impacto gotas 2
Measure battery Voltage 4V using optocoupler and read voltage value use Arduino
Pedales y volante para simulador de carreras de autos con Arduino Leonardo
Se trata sobre servomotores
I want to make a one way communication setup through Bluetooth connection
The timer loops when the milliseconds is higher than 32k instead of stopping why?
Help with object movement using robotic arm
Arduino mega Usb not recognized
STM32F303K8 analog input and PWM is not working
Emulate FreqIN input using Arduino
Monostable non retrigerable with Uno
Deta Space(Struggling to use)
What's the problem here?Forgive me for being a beginner
Extra line print
Make my relay on a off state or standby when the sensor catches something
Inputting more than 360 degrees for an encoder
Arduino and gsm
Elegoo v1.1 Smart Car Code Not working
Daisy chain SPI
Oled clock with pulseoximeter and thermostat
TB6612FNG Protección EMF
Arduino limit switch reading as high without pressing it
Error in uploading a code
Problemas para mantener estable la lectura utilizando los Perifericos del arduino
Multiple GPS Outputs for a 1 second update
I want to design Double Active Bridge bidirectional converter, to control MOSFET I need 18V but arduino only produce 5v
Program issue I can't resolve
Pump isn't stopping at the treshold
How to integrate power supply to this
Respuesta HTTPREAD no imprime la respuesta completa
Color was not declared in this scope
Failed uploading: uploading error: exit status 2
Drag racing , calcular tiempo y velocidad
Temperature Recorder
SD Card y biblioteca LedControl
Timbre de escuela
Basic RFNano question
Using Arduino Nano 33 IoT Internal IMU as Interrupt to Wake from Deep Sleep
3 way switch between arduino, 36v 4.4a motor, 36v 5a battery and charger
Error when uploading code to board
Wakeup STM32L432KC from Shutdown Mode with extern RTC
Looking for smart people for the project
Module nRF24L01 and E28-2G4M27SX comparation
TinyGPSPlus: isUpdated()-qustion
Transistor is blowing out
LCD1602 Seemingly not working well
Air pump motor not working
Uno and Mega communication
BTS7960 Driver burning out on Arduino FFB wheel
Tinkercad Blockcode
I need a business idea
Seeking help to build an automatic water auto top system
Exit status 1Exit Status 1 on Nano and most recent ide
ACS712 Reading Too High
Encoders is not working when pwm.analog write is lower value
ESP32 Read Serial after wakeup
Exit status 1 problem
Having problems with the libraries in the ESP32 controller
[IMMEDIATE] Esp 01 didn't responding at commands
OV7670 no fifo esp32
Geolocation finder , I'am using open API
URGENT Help with this project (please!) Urgent!
Upgrading wires from jumpers after breadboard
Error exit 137 in Arduino IDE
Compilation error: expected unqualified-id before 'int'
NOOB - Help with Arduino code, simple pin state = pin active
ESP32-C3 SuperMini port doesn't show up on ChromeOS machine
Cannot print to LCD with Wave file playing
Servo motor anomaly
Hi i have this code, but the wifi connection doesnt work, ive enabled the hotspot but nothing happens
Servo control with while
Bluetooth app not working on 4WD Robot KS0559
Making my own PC USB racing pedal
Mpu6050 and sim7600E-H http request
RF Module with only one arduino
Reduce I2C clock frequency
Pregunta de error
Controlador RGB/PWM
Lightsaber Sound problems
Error compiling for board ESP32 Wrover Module
CH55x: USB data - Vendor, Product, Serial
How to protect the circuit if i use selenoid lock
Port Error occuring on device manager and on Arduino IDE
Voltage divider circuit for arduino
Arduino pin - how it is possible to draw 40mA from it ?
2.8" ISP LCD module white screen with ESP8266MOD Board (NO CS pin) Any help?
Add extra buttons to button box project
Nema23+tb6600 what code do i need to change
WiFi tone on iPhone
Query about INA237 Library
Medir voltaje positivo y negativo
Can't catch UDP datagrams from NANO + ENC28J60 to pc
Building a gradiometer using fluxgate magnetometers
Failed to create Arduino Create Agent
Error detected after uploading need help asap thanks
How to devloped ardino one input by using two output alternate condition
ESP8266 - COM not found on MAC
Send data from Esp8266 to google sheet
ESP32 Port problem
Protocol error in uloading sketch to ender 3 v1.1.4
Como empezar con este problema
Difference in serial reading en LCD reading
How and Which type of Speakers can be used with an Arduino Uno?
Loconet and Interface board
While uploding on arduino editor to esp32 it is showing Monitor: "serial port temporarily busy"
Compilation error: library_name.h: No such file or directory
Timmer registre on arduino giga R1
New install and setup on Linux mint - cant compile
Help me to find out the coding of this project
Project 4 - Color Mixing Lamp
Football-Following camera
Arduino UNO Q – Kein Videosignal über USB-C DisplayPort Alt Mode wegen falschem bevorzugtem Displaymodus
Pressure sensor and sd card initialization failed nano ble 33
Deploying ML Model Onto an Arduino Nano 33 BLE Sense
Problema con el puente h L293D
How to get the best out of this forum
Linear actuator doesn't work by ultrasonic sensor
Adjusting brightness of 1-digit 7-segment indicator with 74HC595
I wanna create wind turbine for capstone
Alimentación de un robot esquiva odstaculos
10 servos and arduino uno
I keep getting errors
Tarjeta de Desarrollo Wifi ESP8266 D1
Problema al medir TDS mandando los datos a Firestore
Calculation of Azimuth and Altitude Angles
Arduino ATMEGA32u4 Falla
Fatal error: password.h; No such file or directory in tinkercad
Help with aditional code
ESP32-S Cam connection to telegram failed i heard installing an ssl certificate helps how do i do that exactly?
Need to buy an atmega 328pb
Help MIni Tank Robot Just Spining In Circles (Right Motor Only)
PID v1.h only outputs 0
Step counter in LIS2DUX12 chip
Pololu 3pi downloading programs
Build a project with a humidity sensor and LCD screen. Get the data from the humidity sensor and display it on the LCD monitor as follows: If the hu
Beginner-level Arduino programming
I have robot car with four dc encoder motor (jgb37-520 330rpm) and arduino with moebius motor driver for mega im trying to drive my robot for exact1m
TMC2209 stepping extremely slow
Esp8266 con sensores
NANO Humidity-Heat-Co2 Relay control
ESP32-C3 fails to connect to WiFi: "Reason 2 auth_expired"
INPUT pins are always HIGH even if clearly setted LOW
Upload fails: "stk500_recv(): programmer is not responding"
Help I need to fix my code!
Problem when using Arduino Ethernet Shield 2
Este tema es para la escuala no haghan casoplis
Error Code not compatible with this board type
When ı uploud a code to the my clone arduino card for my trouble
Arduino IDE 1.8.19 stopped compiling for Lilygo T-Display S3
Arduino nano error
Signal pattern with ARDUSTIM
Hello, how are you? I need help. Can you help me with a simple project to design a radiation intensity measuring device? Thank you
Hello, how are you? I need help. Can you help me with a simple project to design a radiation intensity measuring device? Thank you
Using U8g2 on RP2040 Pi Pico
Arduino ile yapılmış projeyi satmak
Programming arduino with mobile application
Unspecified code problem
La verdad no se que hacer para arreglar este error
Error while uploading data on firebase using esp32
Timer for illuminating one LED for 1 time only
Where are the examples that come with Arduino stored?
Arduino Uno, air quality sensor, IPhone
D5 pin on arduino uno pwm problem
Soldering tutorials
Executing Command: Exit Status 1
Can someone show me what's wrong
Write commands via I2C to AS5600
Uploaing error to arduino nano 33 BLE sense
I want connect to siemens CNC 828D controller to Arduino Esp8266
Need help with connecting a LCD at the UNo Developing board
Ffb on a controller
Arduino midi project doesn't work
Merged code no longer works
Making the ESP32 Computer [SOLVED]
LIDAR sensor serial output
Space in Lcd for no reason
Problem with simulation
Arduino spot welder v3
Lcd 16x2 con botones
Servo Chatter Problem
Controlador MIDI 12 potenciometros ESP32
RP2040 OTA Update with4G module
Thremostat MLX90614 IR Thermometer
Servo isnt responding to ir signals in automatic mode pleeease help me urgently i am a newbie
How to reset arduino
Support on HX8369A TFT with ESP32-WROOM-32
NEED HELP- Burglar Alarm System
Custom protocol
How to use the IS31FL3731 PWM LED I2C Driver
CONFLICT! driver_ng is not allowed to be used with the legacy driver
Thremostat MLX90614 IR Thermometer
For and if else - I'm missing something
Quadcopter PID tuning self balancing problems HELP
Error utilizando la función lcd.cols
Analog trigger to MIDI trigger
I can't upload anyesp32 s3 1.85inch
Win11, No Com ports, only libusba
Do I need resistors to pull a pin low? (A4988 Driver)
Initialization of DAC pin in Setup
Connecting multiple sensors to ardino mega
Increase Torque of DC motors
How dependable is AI?
Help with detecting the frequency of a modulated light wave
No uploading Arduino IDE 2.3.2 in windows11
Swich a pin on the slave, from low to high, by a command on the master?
Make running led on off with push botton
I'm trying to Modify and program my robot car to sense light and distance. then move forward once it senses light
Using USART0_RXC_vect for Attiny1616
DIY Car mirror tilt when put in the reverse
FM Band Spectrum Analyzer
Interfacing Lionel train layout switches to UNO for LED lites @ control panel
Aislación galvánica de fuentes switching - Switching power source Galvánic isolation
Problème sur connection d'un accéleromètre MPU6050 avec un motorshield
Schneider EM1200 with arduino uno via max485 to ttl module
NMEA2000 And serial communication
Is SFTP possible on ESP32 using Arduino IDE?
Esp Rainmaker IOS APP problem
Connecting Multiple Modules to one Arduino
Arduino nano reset button
Power Arduino uno error
Mando Ps4 R2 y L2
Slow down servo
Error on sketch
I'm stupid and I hate myself
I'm stupid and I hate myself
Arduino spot welder v3
Problems calibrating pH Sensor
Pin connections between the SIM7600E module and an ESP8266
Can you help me with this code to work
Помогите пожалуйста
Magnetic field sensor help pls? (wont print data into serial monitor)
Arduino UNO R4 WiFi as bootloader burner
Redefinition of void setup
Ultrasonic Sensor HCSR-04
Question about the efficiency of esp 32 cam
Help me to fix my code to control buzzer and monitor status buzzer on Iot cloud follow signal from hc-05bluetooth module
Im strugling with my esp32 problem in code for about 15 hours
Only one motor is rotating
Can't see HEX in serial
. Variables and constants in RAM (global, static), used 28652 / 80192 bytes (35%) ║ SEGMENT BYTES DESCRIPTION ╠══ DATA 1520 initialized
The Arduino project hub is not working
SoftwareSerial usage
Did my Nano die or what?
ESP32 read GPIO0 button
Estaria bien para un seguidor de linea
HC-05 quality of service
IR Beam Break Sensors acting up
Push Pull setup for LED
Port monitor error: command 'open' failed: Invalid serial port. Could not connect to COM6 serial port
Only 11 pins working on Nano
Fixing Compilation Errors
DCC _decoder with min 3 sevo angles
I use to combain 3 sketch in one but loop1 onbeat is not work why
How to get the best out of this forum
Hi, I just want to ask for a help, what specifically type of 2 channel relay module that is shown in this diagram, which is connected to 24V supply
Multi turn switch to analog input
I can't Calculate the exact Rpm and current. Pls check the code what i can changes should be done in my code?
Esp32 unknown device issue ?
Hello guys, I need to create a arduino project using the 3 in 1 soil sensor that measures moisture , temperature, electrical conductivity. And I do no
Flashing LED does not work
Tft text screen width
No response on AT commands from HC-05
pH sensor and Rtc I combine it please help me
Comunicacion arduino-plc siemens s7-1200
Nema 34 and dq860ma
Esp32 TTGO and sound analyzer
LDR problem- TL system
UNO reboots - unstable?
Extract temperature parameters of refrigerated containers
L led blinking problem
Help with understanding a sketch and how to implement it
Astro tracker Help
IDE compiles and uploads but execution fails on STM32
Module HC-05 error when sending
Motor paso a paso posiciones
Hey Im trying to make a 2 axis robot using IK but im have some issues
Anemometer suggestions without moving parts
Putting Neo6M gps information onto a webserver with eps32
My arduino R3 is printing only 0 doesnt matter if i flash any code
RFM9X to arduino nano
SAMD21 ADC Trigger (Arduino Zero)
I am new to arduino UNO R3 but the tx light is blinking and code is not working. Kindly provide a working code. here is the code-
Motor de passo com chave de velocidade e sentido
‘LED Control via Shift Register with 4x4 Matrix Button
Can you combine my code because i don't know how to combine
MCP23017 Suddenly Not Working
Project I came up with to help me study
Help with 16-Bit LED Nixie Tube Driver (CH453) and Arduino Integration
Creality CR10-S Pro V2
Issue with Heltec LoRa ESP32 V2 Not Connecting to TTN Server
HC05 bluetooth module doesn't connect to smartphone
Red de sensores IoT Ultrasonicos para monitorear niveles de rio
My code says exit status 1 when i try to upload it
Leonardo R3 connection
Leonardo R3 connection
Why does this #include <AFMotor.h> doesn't work
Debugging esp32-c6 devkitM-1
Car controlled with a turnig evolution
How to increase capacity of bidirectionalperson counter?
IR reviever continuously running after turning on motor
Compilation fails: "Arduino_GigaDisplay_GFX.h: No such file or directory"
Modulo RFID-RC522 error
How can I make Fading in any seconds?
Fire fighting jeoiegnwkfygmwoy
Please help in rf amplifier code
Help with displaying on a tft lcd
Bluetooth Car motors are not moving. I need urgent help please
I'm looking for an old Arduino OPC SERVER program
Lectura de archivo de tarjeta sd y utilizacion del dato leido dentro de una sentencia if
Question, How to control frequency speed in PWM ports?
LCD not turning on
Error after moving functions to different tabs "Compilation error: 'PROGRAM_LED_IDEL_PUMP_UP' was not declared in this scope"
Programming limit switch?
Mi módulo L298n no enciende
New to Arduino, help sought
I need help making my motors faster
El esp32 mantiene parpadeando el led azul
Set the default relay turn OFF state into 3 seconds
Can the Arduino nano use 16 RFIDs with the RST pin connected via MPC23017?
Help digitalread/ write is not working
AC heater temperature control
HC06 no agarra con mi teléfono
Wrong Data in Dashboard and cloud
IR transmitter and receiver
NRF24 RADIO is never available
5 Digit 7-Segment Display Writing Error
Upload to ESP32-C3 board fails: "No serial data received"
Solar tracker not working in sunlight
Stepper motor help
Toy car but it doesn't work properly
No esp32_camera.h in arduino ide
Stepper Motor pulse, direction and speed control
I really need your help/ midi controler mega 2560 ch340g
3.3 relay going crazy
16x2 LCD Display Shows Black Screen - Could It Be a Power Issue?"
How to Synchronize 360° Servo Motors for a Bipedal Robot
Reset Arduino Leonardo
Arduino Obstacle Avoding
I am a novice, I want to ask a question, my board has been connected, but there is this error when running
RTC_DS1307 and Adafruit_I2CDevice libraries errors
Unable to rewrite sketch on a non-genuine UNO
Cant get off UI LED
Some Arduino - DMX interface advise needed
Possible Memory Leak?
8 in 1 sensor need help
M5STACK StickC Plus complie error
Troubleshooting FSR to speaker across breadboards
Arpeggiating Synthesizer (Mosquito I)
Bike Computer - help with touchscreen
WROOM not connectable to pc
Arduino Nano 33 Iot Hang after time
REST API POST request ESP32 local network REFUSED
12v motor, relay module, IR sensor wiring
Arduino program freezing if RTC (DS3231) disconnected...?
IrReceiver.begin mess up L293D motor shield
When i plug my escs red wire to arduinos 5V the brushless motor stops spinning
Accelerometer Keeps on Giving Me 0s
SPI and I2C problems
Problem Connecting 128x160 TFT Display with PCF8574 Module on Arduino Uno
Nextion Intelligent NX4827P043-011R touchscreen not establishing communication with the Arduino UNO R4 WiFi board
LVGL v8.3.11 scrolling problem
Arduino cloud upload error esptool
Arduino leonardo r3 connection problem. please help me
How to mirror iPhone screen on ESP32_TFT ?
Incorrect reading from MCP9600 amplifier
SPI Protocol Connection help
‘LED Control via Shift Register with 4x4 Matrix Button
Arduino IDE Error
Struggling to make a nintendo switch hitbox
16x2 LCD not displaying what it it's coded to do
Question about multiple concurrent tasks using Serial, and Wire
Overheating Protection for the XL6009E1 Voltage Regulator
OLED display glitches only in one part
About controlling a dc motor which is 6v with pwm control with an arduino
To program output on and off
Problem with connecting some arduinos and not being seen as devices connected to my computer (win 11)
Please help arduino
Print captured JPG image from filled uint8_t PROGMEM saved in the Flash of esp32
How to convert a differential analog signal (-4/+4V) to single ended analog input at Arduino (0-5V)
ESP32-S3 Mass storage device
Configuring Arduino IDE So That Drivers Are Not Installed by the User When They Launch the Arduino IDE 2.3.4 Application
Zigbee remote failure
Getting randomly peak data from gyroscope
Arduino problems
Sensor de oxigeno OCS_3FRL_1.0
Facial recognition
MIDI Input? Synthesisers
CNC shield v3 Arduino Uno Gcode sender is freezing
ESP32 failed to communicate with another ESP32
Help connecting two AT-09 Modules
Esp8266 is freezing after variable time
Fan controller that controls nothing
Strncmp I'm having trouble
Brushless motor controller Allegro a4964
DFRodfrobot_INA219 not compiling under arduino 2.3.1 to 2.3.4
Plot Voltage vs Speed using Encoder DC Motor with Arduino
Storing floats and double in the internal EEPROM of Arduino
Bare Conductive Touch Board
Why my pump won't work?
Measure resistance using a matrix configuration with Arduino
Im trying to make a for loop work but it just keeps printing the #6 into the serial moniter
Sensor and Buzzer
Arduino + SimpleFOC smallest footprint
What's the difference in wiring between common cathode and common anode RGB leds?
My stepper motor nema 23 23kgcm not proper rotating power supply 24v 10A this is enough for this?
How to connect elm327 with esp32
Como se maneja la secrecía de passwords en el codigo que manejo a traves de arduino cloud
I have and error with my esp 32d
Fatal error: avr/io.h: No such file or directory
Automatic clothesline system
Variable pressure control
Help in Arduino code! [SOLVED]
Servo arm issue
Plant project with LCD
My Smart robot car v4 right wheels can only go backwards
How to wire a 6 digit 7 segment display
Using softwareSerial
Long file names SD card [Resolved]
Arduino micro midi problem
ESP32 STATIC IP IF ON THE IP OF ESP32 an html server is also being hosted
Replacemenent for MKR 1010WiFi + MKR 485 modbus
Need help with this error
ESP32-S3-Nano and Huawei R4850
VRef on stepper driver
Portenta X8 - Uno Q
HM-10 reads all text as question mark
Dumb motors not running
Seven Segment Displays using MAX7219 and SPI
Troubleshooting False Race Lane detection Finishes on Arduino Mega 2560
Two questions about the stack size
Arduino portenta x8 board - localhost unreachable
Language of the IDE console
Error camara index h, i tried anything and i have no solution,please help
Clock with 2 shift registers
Micro Polarity Reverser
ID-12LA RFID Reader not working properly
Circuit not receiving power when disconnected from USB
Esp8266 earlephilhower repeating cycles without pause
GC9A01 1.28" TFT Display Issue
Compilation Error
Need Program for Stopwatch for Arduino UNO
New to arduino, how can i send arduino code without com port
Photoelectric sensor E3JK-R4M1 with ESP 32 Wroom 32D
¿Como deplazar texto verticalmente en una matriz de leds?
Unable to Update Alvik Firmware
Finding resistor and capacitors values / Test circuit
Clang-format: indenting braces
Push button to activate LED light strip animation
NRF24L01 + PA + LNA modules not working
Arduino failure
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
I need help I am new. could someone rewrite this for me so it works!?
(Newbie) Issues with IR sensor and OLED screen on Arduino Leonardo
Arduino Line-Follower Won’t Restart at Low Speed—How to Boost Starting Torque Without Sacrificing Line Detection?
Randomly stop my arduino car
Fuel Gauge IC for Primary Cell Monitoring
24Hour instead of AM/PM
Barcode/qr code sanner with rs232 pins connecting to arduino uno
I2C Devices Interfering with Each Other When Powered via Transistors
Help Needed – Displaying Numbers on OLED from Voice Commands Using Nicla Voice
3 Stepper Motor doesnt rotate at the same time
VU METER lcd 20x4
Arbitrary Precision Decimal Arithmetic by Arduino
Difficulties using Cubemars AK70-10 serial communication in servo mode
Led light control with proximity sensor and radiofrequency
Arudino uploading a sketch error
Building a traffic light controller - which micro controller best suits this project ?
Laser light security system connected with RFID door lock at the both sides of the door
Arduino include problems
Controlling an Anaheim Automation Stepper motor using Arduino R4 WIFI with RS485 protocol
¿Cómo puedo flashear un wemos d1 mini, leer y escribir datos mediante el wemos desde java?
How to play sound using esp32s3 and a sd card
Nano connection to ICBOOST
Save-able Custom Board Settings?
Nano won't process until after a USB data connection
Responding Issue
Ph-V2.0 problems connection with esp32
I need to create two buttons onto my webPage, (im using ESP32C3), to calibrate my scale without a phisical button
ESP32 Bluetooth Car – Servo not turning and motor responds to steering commands
Seeking Help – Motor Not Responding in Fixed-Wing Aircraft Project (Arduino-Based)
MEGA keine EMpfang von Strings auf PIN 15 Serieal3
Trouble to flash ATMEGA328-P R3 plus from Sharewave
Connect to WiFi with the M5Stack TAB5
DFPlayer Mini Serial and Hardware Buttons issue
Mega 2560 + TDA7498
IR remote issue
Arduino Uno R4 WiFi Telegram Nachricht senden
Convert speech to text with esp32 i2s imp411
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Help me assess the correctness of the task
How to get the best out of this forum
HT1621 induvidual segment control
How to Read Text From an NFC Card
Got a problem with a uno and relays
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
About ADC in NodeMCU (ESP8266 with OLED integrated 0.96 inch)
Mean value calculation in parallel A0 and A1
PySerial "in_waiting" Almost Never Finding Bytes Sent From Arduino
Ask About Error
How to get the best out of this forum
PySerial "in_waiting" Almost Never Finding Bytes Sent From Arduino
Anyone tried Meloni’s Arduino Potentiostat?
How to get the best out of this forum
SoftwareSerial and SH1106 and SSD1306 compatibility
I cant conect my phone to BT-05 Module
How to get the best out of this forum
Realtime Fake Drivers for Microcontrollers – Develop Embedded Code on PC and Hardware Seamlessly
How to get the best out of this forum
LittleFS malfunction
How to get the best out of this forum
LittleFS malfunction
How to get the best out of this forum
Error al subir codigo
Manual PWM changes cause DC motor to momentarily stop
Reading FS-i6X PWM to make a robot car
SEEED XIAO RP2040 uploads, but does not run
Como pasar un codigo de arduino MEGA a arduino UNO
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Morse Code Project
How to get the best out of this forum
GPS GY-NEO6MV2 con Helctec Wifi Lora 32 v3
How to get the best out of this forum
How to get the best out of this forum
Lesson 1 error upload
TCP communication with Mega Rev3 using USB adapter
Seeking Advice on Coverlay Lamination Overflow Issue in FPC Process
I want know about the arduino uno Q
Cannot upload new sketch with tx led on
Connection from esp32 to rs485 to ttl
Aiduino Temperature, Humidity DHT Sensor and Buzzer
Programming problem
One wire sensor data gets weird when I open the Arduino's serial monitor
Help me my led decoration
A fatal error occurred: Failed to write to target RAM
Stepper motor have jerky motion with DRV8825 microstepping
Arduino tag cpp error
Trying to used Compressed Fonts
Nema17 stutters using tmc2208
About Touch sensitivy values
Petition to never close topics
Kobling av Arduino UNO R3 til HL TNC DM 542 stepper motor til LDO Hybrid stepper motor Nema 17
Partager ses projets Arduino efficacement
Vision Artificial con arduino uno q
Stepper Motor Position Using Button Presets
OSC library - route causing error?
28BJY-48 and driver ULN2003 with buttons and endstop
HI ALL I Have Issues on my program I have 1 Stepper Motor Kit Nema 34 8.0Nm Stepper Motor and 2 buttons 2 limit switches
The code provided for sending health data (heart rate, oxygen level, and temperature) to Firebase Realtime Database using ESP32-C3 is not working. Whe
Problem With L9637D and ESP32C3 SuperMini or Arduino Nano
Interrupcion con pcf8475 y esp32
Serial communication isuue
What size 3d pen do i need?
Arduino Nano R4 not working with Adafruit Ultimate GPS Breakout V3
Aansluiten voeding Arduino en relais board
Is there anyone who can help me?
Arduino UNO Project with 775 Motors fails upload
ARDUINO R3 LAFVIN Expanding Board With Motor Driver Shield For Smart Robot Tank Kit
MKR Wifi 1010 + MKR CAN shield
I am currently working on nucleo 64 F401RE(MCU) microcontroller and ice40hx8k breakout board(FPGA)
My 2 wheeled remote controlled ir receiver and hc sr04 robot was working fine but now its taking code of only firstly pressed button but not subsequen
Quel transistor pour un solenoide de 3V?
Custom libraries
Help with serial UART communication between arduino and a sensor
Problem with code or hardware?
Remote Control UNO R3
UNO R4 minima Modbus TCP
Power for Arduino + CNC shield
ESP Cam issue Error 0x106
Help with old startere kit
Esp32 3c draadloos geluid opvragen
Sensor de humedad con arduino. etc
Error de copia al portapapeles
Problema con sensor hc-sr04
Syncing ardiuno nano esp32 to mac
GPS Module doesn't work after 3 day's of continuous working
No cargar la aplicacion de arduino
No output power from the Arduino UNO R3 from out put 8 to output 2
Windows disconnecting
Need help with my schematic
Carrito evita obstaculos
Custom Ethernet W5500 is not working
ESP32 RS485 Modbus CRC Error 227 with PQM1000S
Nano not reading correctly
4x4 pinpad not working
Communication error of WT32ETH with HMI through ModbusTCP/IP
Tecnologia amy pilliza
LcD leading 0 at start of top 2 lines
ESP32 and iphone connectivity issues
RFID rc522 modul
I need to build an Arduino project to test usb and other such cables for all electronics and computer uses
Arduino uno not syncing, no fix found
How to get the best out of this forum
Firmware to use ESP8266EX as slave of Arduino Mega 2560
Using AI to write Arduino code
[CRITICAL] Cannot setup Arduino Uno Q: App Lab blocked by 403 Forbidden on apt-repo (Debian)
Engine of the motorcycle cutoff of its own with Arduino
Using AI to write Arduino code
Arduino Uno R4 Wi-fi board
Kaggle competitions download -c playground-series-s6e3
How to get the best out of this forum
Need equation for setting delay
Arduino and ultrasonic sensors
Controllino Modbus TCP Heidelberger Wallbox
Asasasawsdewr34t54yt54
Asasasawsdewr34t54yt54
Narrowing conversion of '4.8e+1' from 'double' to 'uint16_t
Voltage level shifter but from 30v to 3.3v
Nueva versión - clon - HC-05
Streamlit en app lab
EM4095 Transmitting at 60 kHz/ rfid reader 125 khz
Unable to open port
Basura inteligente
MAX30102 not detected on breadboard (0x57 missing) but works with direct jumper wire connection – ESP32 I2C issue?
40X4 LCD Display Vertical Scrolling
Sistema de seguridad
Sine Wave Sketch not appearing on Serial Plotter
ESP32 BLE Arduino libraries problem
Connexion arduino r4 uno plug and make et ableton
Arduino - Digitalt in TinkerCad ASAP
Coding HELP needed
Nokia 5110 LCD not working(except backlight)
How to get the best out of this forum
Mp3 player door chime
Speed controlling of servos using PCA9685
LoRa module RSSI test using arduino
Mood CUE- Servo doesnt move
How to specify the board lib install directory
Led 8x32 dot matrix game need help
Freezing problem on Teenzy 4.1
PWM, MOC y foco
DC motor with enconder
Getting error in the MFRC522.h library while connecting ESP 32 with RFID reader
How to read flow using flow meter without interrupts
GUI on M4 rotated by 90 degrees, why?
Failed to find MPU6050 chip
How many codes can be put into an arduino at the same time?
Looking for a two code fusion 1st for Relay 2nd for Servomotor Everything on a web page? need help I arrived at this result
8 Digit - 7-Segment display turns off after 10 seconds
NTP Montreal date and time - need to turn this into a function in another script
Sketch works when uploaded only from a specific computer
Error compilación placa arduino uno (SOLUCIONADO)
Vivarium controller
Detect key press while running algoirhtm
125KHz RFID code schrijven
Help ,Please,afr gauge Newbie to Arduino
Pulsed frequency modulation
Built in LED of pin 13 decreases in brightness (MEGA 2560)
Problem with logic behind my code
Arduino not working with FTDI Driver and USB
Estado de relé según temperatura, humedad y presencia de luz
Arduino IDE doesn't see my arduino nano
Pls how can I reduce noise in current sensor
Fault detection in an optical fiber using arduino
How to know ESP32s-CAM board model
ARDUINO OPTA, hosting a HTML on it
I am facing problem to upload my arduino code in arduino board
Resistor messaurment: Value fluctuating
Please slove this error
Wie man das Forum benutzt - Kommentare und Verbesserungsvorschläge
GPS is not working
Controlling 12864 lcd with SPI
Using Arduino R4 Wifi as IoT Test
Sketch ?
Photocell as switch to step a program?
Pushbutton problem
Swprintf and wchar_t?
I need Help in connecting 5v relay module
Turn on LED with Bluetooth
Smart parking using iot
How do i interface Eemprom with Linear Acuator
DS18B20 simulator
6 digit 7 segment 2812 clock/stopwatch
Multiple software I2C, how?
RC522 dropping a character from the middle of UID
Requesting for help in my program ,pleas help me out
Image transmission 0V7670
Digishark ATtiny85 is skipping lines
Wie man dieses Forum benutzt - bitte lesen
How to get the best out of this forum
Need help with some Radar System code
The code does not show the values
Clear CANbus buffer
Double run setup
ESP8266 can't connect Bad Board?
Can I use a React to create the UI for my IOT project and how can I connect the two together?
Ultrasonic sensors questions
Help with RTC DS1307 on my project with Arduino Mega
Arduino pozyx multitag positioning
CLK and DT 3V while Vcc 5V
0802A 4bit LCD Interfacing with renesas R5F102AA
ATtiny84&Bluetooth hc-05
WeMos D1 R1 wont display any serial output unless reset button is pressed
Difference in outcome Laptop / Tablett
Using #define to on and off functions
Sensing the signal and put delay based on RPM and then OUTPUT
Cannot find -larm_cortexM0l_math
ESP8266 WiFi Smart Switch 230V
Serial moniter not working with hc-05 bluetooth module
Seven segment LED for cathode
Arduino 1.8.3 IDE not opening
Need help with schoolwork, appreciated
Arduino PWM frequency change
How do I reset variable after song finishes playing?
Button Start Stop Loop Play Audio
Determine the average of several sensors
Arduino2arduino communication
Gyroscope L3GD20 erratic values reading
Sketch works when uploaded only from a specific computer
When Yelling at The Sound Sensor the Speaker Plays?
I can't solve this error in verification mode
Interfacing piezoelectric sensor to sd card module
Servo motor won't work right
I'm using Arduino Nano and it gives an error like "Low memory available, may cause stability problems"
Stepper Motor Programming Questions
Using Nextion displays with Arduino
HC05 connection only working every other second
Atmega328p PCB Led slowly powered
Expected ',' or ';' before 'LiquidCrystal'
The system is getting stuck after a while
Control de dirección de giro de un motor con potenciometro
RC522 RFID how to set-up
Strange crash happening with Arduino Giga
LEDs Help required
DT6-1A-01 I2C Arduino UNO code (seat occupancy detection)
CoinSlot and CoinHopper , COIN CHANGER CODE
Senior project assistance
LCD screen for Arduino UNO onlys shows a row of white boxes on top row
Voltage Reading On digital input pins with PULLUP enabled
Programming errors using arduino IDE
Relay with button
Subprogram that does not work
RS485 how to send 2 integers and receive in slave
Can I use this relay?
Forum Members Etiquette Rules proposal
How to enable SPI_FLASH_DANGEROUS_WRITE
Error esp32 upload CAN ANYONE HELP
My LED won't blink with if statement
Cannot pass AT commands to shield
Help with Intern RTC | ESP32
I need code help for my servo motor
Error with code
UNO R4 WiFi and sending email
Unable to program ATMega
Arduino as skills
Control motor simultaneously using bluetooth module and joystick
Problem with non-stop calls using Arduino Uno and Blynk
Low voltage on ATTINY85 output pins
Bosch 4 bar map sensor not reading after 2 bar?
[HELP] Serial Communication between an ESP32-CAM and Arduino uno
No i2c device found
Esp32 and 4-20mA industrial pressure sensor
Help with code for fade loop
Error in almost all functions
Function of time
No port shown in Arduino IDE for my board
LM324N connection problem in a sensor circuit
How to wire Emergency Stop
Will anyone code for cash?
Mega 2650 solar tracker LDR Relay
Estou usando um Medidor de Tensão DC 0-25V no Arduino Uno, e gostaria que ele desligasse quando chegasse em tal voltagem
Need help with motor
Ir sensor with ESP8266 (webinterface)
Problems uploading my code to the board
Issue with project
Dodgy eBay MAX7219CNG devices
Led light up a soon as power applied
Another Weather Station (with e-Paper)
Coding issue while trying to connect my ESP8266 to Wifi
Best powersupply for Arduino Mkr 1000
IDE 2.0 Beta 7 ; Serial monitor displays the wrong switching states HIGH/LOW
Nothing shows in serial monitor (EDIT: Managed to solve it)
Esp32 Not decoding Li-Fi
SdFat - ENABLE_EXTENDED_TRANSFER_CLASS
#include <ESP8266WiFi.h> void setup() { Serial.begin(115200); delay(1000); Serial.println(); Serial.println("Resetting to factory setti
Caudalimetro con sensores ultrasonicos
I2C Wire library clobbering my switch statement
Uploading Error after boxing it
My code keeps repeating from the previous code that I programed
Trying to make a series of Arduino leds with one pin
Nano every at 3.3V
Sim 800L yazılım hata
Arduino doesn't display anything
MCP23S08 Questions
Connecting my sensor with NPN Transistor
3x4 Keypad detecting "*" instead of "0"
Choosing microphone sensor for long range
Servos motors with Arduino
Read data from energy meter (ISKRE ME172) using RS485 and arduino uno
Arduino Door lock system using fingerprint and keypad both
IDE does not run on MacBook Pro
AS7262 color sensor
Using APC220 between Arduino Uno and Arduino Nano 33 BLE Sense Rev2
Using namespace to separate two "functions" in one ino file
Stepper Motor with driver
Compare problem
Human following car using L293d motor shield
Ldr sensor problem
How to increase analog output pin current?
Keypad problem with ghost keys
(VISUINO)-ConstantProperty' is not a member of 'Mitov'
Ds18b20 2 wires
Send HIGH or LOW signals from micro:bit to arduino using micro:bit pin 0
Code writing problem
RTC ds3231 - 165:165:85
Nrf24l01 module not working
Arduino robot stops working when I disconnect it from the laptop
Manual override
Unable to find string literal operator 'operator“”redmi' with 'const char [11]', 'unsigned int' arguments
How to implement arduino emergency button
Rotary Encoder Not Working in Wheelconfig
HX711 Torque sensor
Uno, MOSFET, Servo.write issue with digital read
Line follower robot with obstacle detection
Using NRF24L01+ or NRF24L01 promblem
Transistors or resistors in parallel
No matching function for call to 'HardwareSerial::println(FirebaseJsonData&)'
Displays LCD but nothing logged on SD card
Having issues adding a void() in this script
Hi New here I want to learn as much as I can, Thank you
Problem with generic arduino uno
LCD forgets info one I unplug it from my computer
Weird compilation error
"can't open device "\\.\COM1": The system cannot find the file specified"
Adafruit_SSD1306.h library is not recognized
Execute "If statement" only one time
Problème d’alimentation : câble trop long?
Actually i am new at forum , getting the error "expected primary-expression before ')' token"
Arduino UNO driver not working / Help to figure out it's label
I am having an issue sending and receiving $_POST values in my PHP script
Why does my code not loop?
Help ! Serial Monitor
All A Ports Reading Weird
How a character is converted to a string. How to read data such as Esp32, bluetooth low energy Serial.readString ()
Problema com Relé 12v
Need help learning how to create a function with x inputs and returns a y value
I have problem with the if statment
How do i connect autonics temperature and humidity sensor with arduino
Script tag not working with Arduino and ESP8266
Error 0x44 en programacion de arduino ky 038
Glcd project using arduino uno
Arduino not connected on raspberry pi reboot
Struggling with DC Motor Controller
Associate a serial2 port to megunolink
Run the Goldbach Conjecture
IDE 2 addition suggestions - open source participation
Arduino short pulse issue
Tradução dos textos fixos do Fórum em Português
How do I trigger a continuous servo motor (FS90R) with an ultrasonic sensor (HC-SR04)?
Alarm clock coding error
Good Rotary Encoder code
ATtiny85 + bitmap + OLED
Codigo arduino temperatura
I would like to ask why the screen of my wio terminal does not light up when running the program?
Stepper Powered Tank - Please Help
However i am getting the error code, expected unqualified-id before numeric constant, on line two. has any one got any ideas on how this can be solved?
Would this Nano every code runs on a Nano Atmega?
Me aparece Device OFFLINE
A bug for grammar auto checking IDE 2.0. beta 7
Code Request - 3 100k NTC Data Logging - Teensy LC
Looking for Advice on my project setup!
Problems with sending can bus message using arduino DUE
Servo motor with one button
Controlling BTS7960 with arduino and radio controller
Nano MobaTools Library - Speed Steps Needd Advice
Trouble with ESP32 Interrupt Not Triggering on GPIO Pin
Builtin Led is alway working
Serial Input from multiple characters
Ultrasonic to RCA out
Esp32 code compiling error
Esp32 code compiling error
Uneven blinking rate of LED without delay() without millis() overflow
Arduino mega as LED controller?
Serial Communication between Two Arduino Boards
Can I still record data in my SD card module even if my arduino is not connected to the laptop, however my arduino is connected to a power source?
Separating incoming string through 433 MHZ receiver
Avrdude stk500-getsync () : arduino uno and mega 2560 avrdude
I am trying to interface LM35 temperature sensor and soil moisture sensor
Esp32 Cam A fatal error occurred: Failed to connect to ESP32: No serial data received
LMD298 doesnt drive till analogpin has no voltage
ESP8266WiFi Lib Error
Message return function
Arduino as skills
Request Serial data
Coding with 2 sensors and 2 actuators
Robot-Car Projekt mit einem Arduino UNO smd
Please I am new here. I need help with processing serial data on the second Arduino connected to GSM800
Arduino nano analog output not working
Rotary dial pulse counting
Triggering 3 Separate Servos with 3 Separate Sensors
CAN-BUS Shield interface with 7 segment display
How to get the best out of this forum
The merits of delay() vs millis()
Atof() Precision is not accurate
DHT Library Problems
Add count by 0.5 mm after every pulse recive in digital
Codding problem
MPU printing Zero's on second iteration in for loop
Serial communication NodeMcu&Atmega
How can I get my Potentiometer to control everything?
Interfacing Sensors to an Arduino Mega 2560
How to turn "off" or black specific pixels on a LED string?
Problem with TFT screen while compiling
68:4: error: #error "Required HOMING_CYCLE_0 not defined." #error "Required HOMING_CYCLE_0 not defined."
Need help my code dost work properly
Control 4 relays to turn on for a few seconds a day and then turn off
How do you operate the buzzer with the desired motion after machine learning?
Cambiar icono de arduino Leonardo b
Can anyone help me with the coding of fire alert with sms800L
How to get the best out of this forum (short version)
How to stop serial monitor
Arduino uno R4 wifi
Using I2C to read the onboard IMU of the Nano33BLE without using the Arduino_LSM9DS1 library
Having trouble adding 1 to a variable and making lights correspond to those values
Stepper motor not running
Portenta H7 no matching function for call to 'arduino::MbedI2C::begin(PinName, PinName)'
CAN-BUS Shield interface with 7 segment display
Need to know if what i try to do is possible
Trying to turn off an led when temp is reached. (using dht22)
Resetpin on the Arduino micro
Project hardware
Problems with Potentiometer
Esp01, gps module connection error
Error ; before teptimer
Starter experiment/ invalid library
Duplicate rows on 32 x 64 LED Matrix display
I'm doing tds and temperature project but
Making esp32 working with ILI9488
Arduino act strange as I pull the cable out
Connect 6 Sensirion SFM3013 Gas Flow Sensors to an Arduino
Need help at coding
Facing problem with EEPROM results
Pin Voltage Pullup
Arduino relay and motor issue
Arduino Due with Bluefruit
LSM9DS1: Disable gyroscope
Pin Voltage Pullup
Help fix my code PLEASE
ESP32 : Missing terminating " character
Arduino can communicate via serial monitor but not with softwareserial
How to measure voltage of battery using ESP32 internal reference voltage?
Millis() not delaying
Unintentional delay with Arduino
Problem while integrating Wokwi esp32 simulator with firebase realtime database
Xvalue not declared in scope
DHT11 if else statements not working
How would I program this?
Hey guys my Serial is not displaying the information scanned from the GM65, i tried using the usb instead of UART it seems the GM65 is working, help
Relay module error
Looking for someone to write a simple program
Controlling a Stepper Motor Using a Photoresistor
Error: expected primary-expression before '<=' token
LN298 motor driver with uno just one motor works
Need help controlling motor with arduino
2 HC-SR04 (1 as trigger 1 as echo)
Getting low voltage from digital pin (0.5) instead of 5v
Conexión de I2C a un Arduino Uno CH340
Collect2.exe...help me
8 Servos with Arduino Mega 2560 R3
External power use problem
RF communication problem betwwen ultrsonic and servo motor
MIDI touch piano with two MPR121
Getting Interupt every time switch press
How to convert this function to int, is function String?
ST7920 Graphical LCD not Working
Percent timer by using arduino
Im struggling with a delay bug in my code/project
433mhz led control button
DC motor only runs when arduino is connected to pc
How to connect to Alexa
8 Channel millisecond timed based relays?
NAOS (Arduino OS)
Display 128x64 only 15 pins
Stepper Motor will not go through a full rotation
External power use problem
Pausing code after my if statement
HC-05 Bluetooth module - laggy transmition
Button LED and sound problem
Arduino calculator using adder and xor
PROBLEM reading from serial monitor
Wireless Communication between arduino and ESP 32
Ldr sensor problem
HELP WITH WIRING nRF24L01 with esp32s2/LOLIN S2
Painless mesh outside communication
Port busy (fingerprint as608)
Arduino is not working stuck on loading screen(Windows 10)
Using HC-SR04 sensor to trigger max
Arduino Uno Variable frequency generator
7 segment clock multiplexer error
PROBLEM reading from serial monitor
Nextion Library and numbers above 65536
If statement with time condition
Im very new to this can i get some help please
LCD "Shift" issue
How to control multiple LEDs with 74HC595 shift register using millis()
(Uno R3)Ultrasonic sensor& servo troubleshooting
Lcd printing 2 glitched letters
What is the best way to do this project?
Multiple Thermocouples on nano
Received Raw signal displayed in Serial Monitor is different from the sent raw IR signal
MPU6050 connection failing
SOS - GPRS String Getting Truncated
Help with P channel transistors
How to display the serial monitor data to an oled display
Ignore rotation when calculating direction?
Random sound on button push with arduino and dfplayer
Help with P channel transistors
SD Card can't save new Pictures
Hilfe brauche ein kurprogram abschnitt
Generating a waveform with two frequencies
Help with Stepper?
Can someone combine my coding for this Car lighting system
Hello I am doing a project but it gives an error
Nrf24l01 arduino doesnt work
Simple Nano-based music player using an sd card
Text Splitting from HM-10 BLE
Problema para instalar agente Arduino Create Agen
Problem while compling a WS2811 LED with ESP32
MPU9250-6500 connection problem
28BYJ-48 stepper motor with ULN2003
Modbus TCP with W5100
New to arduino and coding
"For" statement runs twice in ISR
Stepper 28byj-48
Run Programme When Key Switch Enabled
Strange problem, after giving lcd.clear();
Do the micro servos break?
Reading multiple analogue inputs and printing values
Two stepper motor
Reading multiple analogue inputs and printing values
Play animations on TFT screen when certain buttons are pressed
COM port not being read
Using digipot to control water temperature
Lora Ra-02 arduino current consumption
I want to stop a moving servo with input from a micro switch
Using ultrasonic sensor to detect an object with a buzzer
Air flow detection to turn on my Arduino from sleep
Connecting optocoupler to GPIO
Recommendation for a VCR - FET
TFT touch Screen+ Serial communication
Error compiling
Red de sensores zigbee
Coding error at void set up
HELP Joystick Type Error
SDI12 and LoRA librarys Problem
Arduino SD module
Nodemcu with rs485
Two programs in arfuino
Need help with my school project ASAP! expected primary-expression before ')' token
Need help with my school project ASAP! expected primary-expression before ')' token
Not declared in scope how can I solve this problem
How to display both value of adc on excel
Serial Communication between Two Arduino Boards
Hello I am doing a project but it gives an error
Basic OOK with the RFM69
Problema con dos RFID
Arduino with PC sync problems
How to read data from sd card and compare the id from r307 finger print sensor?
Why do I get these errors?
I have problem with project
I need to help make push button down 4 menu code
Thingproperties.h no such file or directory
Lcd progressbar problem help plase
Extending available outputs with 20+ kHz PWM
Main HC05 error solve
Arduino Uno with SD card shield not recognizing esp8266
Seven Segment Display Flickering
Firebeetle ESP 32 error or my laptop?
Tortoise vivarium controller
Set up sample rate of arduino
Help needed on a project
MH Z19 code sensor testing on arduino uno
How can I create a Water Sensor Vibrator Device?
I made Arduino Korean word clock. Please help me
Expected constructor, destructor, or type conversion before '(' token
Help! How to Control speed of a water pump AC 220V with C code
Totaling all values of sensors
Cant upload code to nan every
How to use Arduino code to get tag coordination?
Nema 17 with Big easy driver, jittering
Beginning Arduino/Circuits - Middle School Age Appropriate
Guys please please please help me ASAP
programming different sensors
Common code problems
Read Duty Cycle and Drive Leds
Counter implementation on IR sensor
How to get the best out of this forum
Need help in EEPROM
I have a problem with pins
Formating serial command
I am a beginner and need some help with code and the lcd, and I would really appreciate some help!
Help Error message!
RFID reader with RC522
Control 16 segment to display month
Possible Coding issue
Sistema de modulo para bico injetor
IR Remote button Push "ON" release "OFF"
Can anyone elaborate me this code
Serial communication problem with RS2428 relay module
BLE UUID HELP programming arduino
Sketch not running
Need urgent Help On my project someone please help
Controlling 0-5.7v signal dc motor
Why is this code not reporting the error more quickly?
Breadboard Voltage Input/Output
Circuit Diagram and Arduino Coding
Nema 17 with Big easy driver, jittering
Arduino MKR ZERO DAC resolution
ADXL 345 SPI: Receiving zeroes as output data
Force sensor with Arduino
Controlling external circuit with PWM
Can't get expected readings using PulseIn command
Using shift register for serial input
Developing an Arduino Uno
How to get the best out of this forum
Can't get expected readings using PulseIn command
Frequency Counter using ATMega8A, 7 Segment display keeps flickering only shows 1 out of 4 digits
Df player mini, can any one help me
Unable to stream video or capture stills ESP32-CAM
How to troubleshooting my project
Concatination of string
LCD display and Rotary encoder to measure distance
Library 'Servo' is not uploaded to the board
Issues with 12v and 12v relay to power a pump
RX Sketch Nano RP2040 Connect
Timeout Error (serial)
Servo won't respond with ultrasonic sensor
Multiple Dallas onewire busses on a Arduino
Servo keeps shaking
Multiple libaries were found for "SoftwareSerial.h"
Adafruit BMP388 Board Arduino Code Error
L298n needs arduino to be connected to pc
GPIO Pins Layout In ESP8266 Motor Shield
Windows 7 fails to install drivers - not even listed in Device Manager
pinMode - how come it worked without definition?
A 3d designer Wanted for us
ESPConnect v1.1.18
I cant drive my dc motor with arduino and L293D IC
Make a hoist control wireless
IR remote controlling nema 17 stepper motor CODE press/depress
Serial monitor is giving wrong values
Error " 'lcd' was not declared in this scope "
Exit status 1 error de compilacion en compatible Arduino Nano
Arduino lcd display
Voltage sensor 25V and Arduino IDE serial port (COM)
Help why wont this cod work
Wire.h me dice : Se encontraron varias bibliotecas para "Wire.h"
Arduino UNO Quadcopter Schematics
Why is my Proximty sensor output being pulled to .1V on pin 11
Arduino MKR Wifi 1010 Encoder Issue
I keep getting a missing file compile error:
Possible Coding issue
Arduino lcd display
Create 360 deg with 2 servos
Replacing UNO for OPTA on model trains
Bluetooth Module not working?
RPM sensing withot causing delay in sketch?
Load cell + led arduino uno
Accelstepper: Speed control
Arduino Mega2560 dosen't proccessing routine command in loop when it send a data via serial port the delay about about 100ms per sending poreccess
Arduino code to read the pins
I cannot read text correctly through the serial port
Help, error: expected constructor, destructor, or type conversion before '(' token
I want help serial communication between arduino and python
Error compiling for board Arduino Nano 33 BLE : The paging file is too small for this operation to complete
ESP32 Dev, reading a register of an I2C-Device
Necesito ayuda para unir estos dos codigos
Mpu6050 and Servo
Servo motors moving by themselves
Problems with int errors
PWM control IGBT
Arduino Nano and Visual Show Automation
Lcd display A015AN02
IR receiver cant decode continuous signal from transmitter
Need guidance for selecting appropriate power supply and for connecting a lot of LEDs properly
Arduino based Oscilliscope
Can't send data to ESP8266 via arduino
Pushbutton trigger for advancing Neopixel animations?
Looking for someone who can help me troubleshoot a project.
Diy Spot welder using Arduino nano
I type 99999 in keypad, and it shows 4294936223 on my serial computer
Guide sketch for 2 DC motor , L9110s, and an ultra sonic sensor
Arduino UNO + HC05 => weird data transfer
Very simple Ultrasonic sensor and distance sensor
Led strip flickering
Arduino uno and esp8266-01 problem while adding an i2c lcd
Arduino code Pick and place with stepper motors nema 17 and TB6600 driver with encoders
Hex serial data receiving problem
Flux Capacitor inside a Track car
Im creating a system. Controlling 4 leds with bluetooth module. But i have a error in my code
Arduino Nano: Unexpected behavior in switch-case - (Autonomous RC Car Project)
Mi modulo RFID no me detecta la tarjeta
analogRead multiple value Problem
My code isnt working?
Arduino pro mini te362 and nRF24L01+
360 spin photography
Error compiling for board DOIT ESP32 DEVKIT V1
Cpp error...please help
Sketch only works when plugged in via USB after a short
Getting rtc time and using this info to label data in sd card
Controlling a stirrer with RS232
STM32 with AC solenoid valve with relay and hx711 module for load cell
Stepper misses steps on low speeds
Trouble Using SIM808 with Arduino Uno
Błąd kompilacji dla płytki Generic ESP8266 Module.
Sensor de Presión LONGWAY LWP040-PSGLC-S
Problem ESP8266
Cant compile this code
Timer without delay 2
WL_IDLE_STATUS' was not declared in this scope, How to Fix?
Which Arduino device should I use for a capacitive pressure sensor?
Crear archivo CSV o TXT en memoria externa USB
Help on using FC 51 module
Avrdude, no response from Atmega328PB
Trouble on working with shift register 74HC595N
CUSTOMBOX1,GET and CELL,GET
Arduino UNO, Dfplayer y teléfono analogo
Math problem "invalid conversion"
iBUSTelemetry.h compile error for STM32
I have trouble with Problem with hc-05 bluetooth connection(Not sending message out through phone app)
How to control a servo motor using a PID control with input from current sensor. I am not so proficient in arduino and in coding so can anyone please help me. I want to create a closed loop using pid for controlling servo with current sensor acs70331
Eeprom address loction
Arduino nano 33 iot profibus
Read EEG with Arduino
Running the Arduino 2.0 with the specified board and its settings
I cant drive my dc motor with arduino and L293D IC
Servo motor not working when connected to Arduino Nano BLE
Nano BLE Bootloader Crash?
Switch statements within another switch statements
How do i compare a string if it has been entered two time using serial.read input?
Reading & comparing multiple digital inputs
ESP8266 esp 01 wifi module
Millis for two conditions
Using Arduino IDE to verify a sketch and received this Compilation error: Exit Status 255
Problem in programming a boxing machine
Sistema de riego automatico con sensor de humedad de suelo yl-100
No 1-wire devices on GPIO0 with putty/serial, works with Arduino/IDE
Comparing strings
Connecting 9v 600mah battery and 2 1.5v 2500mah battery in series to the Arduino Uno r3
Yip another noob,trouble with error compiling for board esp32
Programming Alvik in C
AgOpen? Want a 'chicken tractor' to follow a path, like a tractor
Problema para cargar sketch
Randomize RGB LED colors
How do i wire this stuff?
Arduino uno CNC Shield Co 2 50 Watt Laser fires without usb pluged in
Control of 4-stepper motor + 1-servo motor
Using Arduino with RS 485 Angle Sensor
Why is the SD.h very slow?
Please help in coding arduino
Arduino IDE 2.1.2
Press any key every time delay
Connecting with HC-05 using SoftwareSerial
Help , I do something wrong in my sketch
Arduino UNO with ADS1293EVM
Serial.available() returning unexpected results
Problem with infrared remote control and lcd "invalid header file"
Writing AT commands via arduino UNO to SIM7080G module
Help with the 8266 esp-05 version
Sinusoidal signal comparator
Analog read and data upload
Accessing SD card?
MCP2515 Can controller : getting error while sending message
Arduino counter need help please
Trouble Shoot Code For “Left Button” is not Working on Arduino Mini Powered PCB
Weird issue with char
Problem with infrared remote control and lcd "invalid header file"
Need Help: ESP32C3 won’t communicate with IDE Serial Monitor
How to avoid a if statement running again and again until another else if or else statement becomes true in void loop
How to get the best out of this forum
My Arduino rfid (rc522) is not reading
How to control the LEDs flash using Serial Monitor
Cannot find crt1-sim.o: No such file or directory
Help with millis() command
Survey the data transfer speed of ESP32-Wifi
Who can write this code, I can't figure it out myself
Error push button
Error esp32 upload CAN ANYONE HELP
Why my servo only run once?
How do I declare for "sendCommand" and "getData"
Help about loops
HC-05 serial passthrough
Error in code using Arduino IDE for reading RFID tag and sending data to SQL
Reading messages by Arduino received from SIM800L GSM Module
ERROR compiling for board generic ESP8266 (Arduino mega))
Collect2.exe: error: ld returned 1 exit status exit status 1
Can anyone help me in making paino using arduino using proteus with code
LCD on arduino doesn't work after rewiring
No me reconoce la librería Keyboar el Arduino IDE
Any solution for multiple input shear same pin?
Control led brightness using ir remote volume buttons
'L' build in led not blinking
Controlling Stepper Motor With Buttons Using Arduino
Help in error expected primary-expression before '.' token
Why Timer Arduino not functioning after I add in the function
Problem with matrix display and scrolling text on it with Arduino Uno
Problem reading serial data as integer using hc05 bluetooth module
Errors when running the servo test with motor carrier
Hall sensor interference help
No carga el código de esp32 a firebase
General Guidance and How to use the forum
Please Help me this function doesn't fire from the periperical?
ESP32 ILI9341 SD Card problem
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
IDE hangs on startup: "Error: 14 UNAVAILABLE: No connection established"
General Guidance and How to use the Forum
General Guidance and How to use the Forum
General Guidance and How to use the Forum
ESP32 Audio error
Problem with cable length interfacing 4x3 Matrix Keypad and ESP8266
MPU6050 Doesnt get detected
what is the best approche for multi fruit capacitive portable piano
Using a button and a potentiometer to stop/start and change the speed of a dc motor with a h-bridge
Need help with ping sensor activating Keybord.press
Mobile Rover motors turn on to fast even when tuned properly
Before I signed up I could copy and paste from an AI
Serial.read() print unreadable after include delay()
Small Question About Speakers
For(....) loop seems doesn't work, I mean it doesn't take time
Servos causing laptop to shut off?
How to code, i need help with my last smt project
NodeMcu v3 only works on laptop usb
Issue with my Arduino code - delay function
Multiply float big numbers
digitalRead not working or am i doing something wrong?
Counter goes negative after reaching break point
How to control led brightness with one keyboard button
Four-load cells to be used with arduino (for balance device)
Nextion LCD Arduino with DC motor help
Nano Every connect to Serial1
Forum Members Etiquette Rules proposal
My robot doesn't work
Empfangen und Senden eines GPS-Signals
WiFi.begin(ssid, password); not workin on my ESP32-S2
Loop problem in method calling
Making a Servo spin for set amount of time
4 Panel P10 RGB 32x16 paralel with Arduino Atmega 2560
I need help with my iron man faceplate project
Hack a DAC project for Audio Techole/Prozor register data handling
Problem about mysterious output
How can I control a stepper motor and then a relay
Project 09 Motorized Pinwheel - Motor spins continuously
Arduino, Ultrasonic, Servo Motor and Capacitor?
Exit status 1 expected initializer before '.' token
Unsigned int not working on ATTINY1624
I'm having a problem connecting multiple soil moisture to turn on relay
Arduino Nano, ADC, Multiple Inputs, Unreliable Measurements
R503 having communication error randomly
Why on my esp 13 the access point doesn't appear?
Calculate temperature and humidity for 15 minutes
can i Integrating Arduino with Google Maps or waze?
FastLED with 2 PIR Switches
Triggered event starts multiple things - Sooo confused :(
Arduino Edge control Solid State Relay
MCP23017 nano problem
How many modules can arduino handle at the same time?
Arduino leanardo + Usb shield + logitech mouse
ArduinoUno with POT HG to control led speed
Expected ')' before string constant
Arduino Mega 2560 not flashing
Cheap ssd1306 oleds not showing i2c address
Blinking LED for 10 sec when pushbutton pressed
Oled show temperature instead of menu with temperature and Rtc
Please help arduino code error
Understanding code tags
Hardware spreadsheet help
Error while Compiling
Cryptography and Modular Arithmetic Operations
IR remote not working after working for some days
PWM with arduino and L298N
Controlling 2 12V DC motors wirlessly with an H bridge
1602 LCD display with I2C module not working
Serial.begin woes
How to create a Random movement for interactive art
Error opening file on sd card
Arduino pro mini problems
Servo Motor, that has to turn 20 degrees every 5 seconds
Advice Needed: Connecting Hydrophone and Amplifier to Arduino Board for Data Collection
Code isnt working at all
Serial.Print Matrix 8x8
Arduino with adafruit data logger shield
Ich brauche Hilfe mit UDP Kommunikation
Square pulse wave with a delay and a certain length
My arduinos only connect when i open the serial monitor
Relay is being high at starting, Can we make it Low at start up until input matches
Using multiple SSRs simultaneously
Why my static qualifier does'nt work
Help! Error compiling for board Arduino Mega or Mega 2560
SSD1306 works intermittently
How does mapping work?
Gyroscope MPU6050
Fm-505 rfid module
Error was not declared in this scope after new computer (windows 11)
Automatic watering system with LCD Display
I'm programming the game roulette and a number between 1 and 6 should be written when a button is pressed, but nothing happens when the button is pres
Code upload problem
Programming Project Problem with ESP32 + LCD I2C 16x2 + Pushbuttom
ESP32-S3 wont work and writes codes on serial
Teclado matricial
Arduino mega OTA using ESP32 through UART
Seperate a value in arduino
Digital read and bluetooth read
FONAFlashStringPtr
Power steering from Renault Clio - emulate car signals
Infrared inconsistency
Code comArduino: 1.8.5 (Windows 7), Board "Arduino Uno" C:\Program Files\Arduino\arduino-builder -dump-prefs -logger=machine -hardwarepilation error.
Error drum arduino nano
Is it default that arduino nano gets hot?
Need help with my code using color sensor and pressure sensor with Serial monitor
Arduino Circuit, 2 buttons, 2 leds, and motor
NeoPixel stops Refreshing after Array Usage
HELP..... mq2 reading problem
CCS811 airquality sensor
Code not woking correctly and i dont know why it wont run the last if statement
Usar 4 servos en arduino uno r3
Arduino Inline ASM With Strings
Serial Plotter is not working!
OBDII Reader and display for hibrid cars
Who can help me
HD44780 not displaying anything?
Help with activating a Solenoid from a sensor
The Different of Generating PWM Frequency in Arduino Board
W5500 and UWB not Working Together
Can not get my arduino connected to web first steps works then error no matter what i did i followed all instructions
Newbie need some help, got stuck for whole day
4 shift registers in and out getting artifact
Ultrasonic with stepper motor arduino
Multiple string command
Push button to switching Led effects
Music Box won't run on battery power?
Up Key input does not work
Reading 12 volt battery using an esp32
Help with creating music on arduino with Assembly language
Multiple string command
Else' without a previous 'if'
Libraries not Getting included
Can't get anything to work
Help! Project 14 Tweak the Logo code error!
Nrf24 bidirectional
ESP32 Using placeholders in HTML on SD Card
How I get 100 hz frequency in arduino mega 2560
Output PWM without sending a large current
I need help with my code for my school assignment
WiFiClient.available() hangs
Amplificador Pam8403 y 84de 2 canales, 3 w+3 [OFF TOPIC]
Getting a timestamp using Ethernet Shield
Arduino to Arduino CRC
I can not find how to fix my code
Need help with delay function
Make experienced users help: two ways to quickly post code as a code-section
Display does not start on power on
How to set synchronous PWM channels on Due, that would have pulses shifted by half period?
Conveyer Belt Speed
SD.Begin does not initiate!
Trap timer with RTC
LCD test project print "hello, world", screen goes blank if "o" is inserted anywhere in text
Spaceship error
Problem with Serial communications
Gravure printing press registration Project
Program error questions
PIR Sensor and Arduino
Ir sensor with unstable reading
Heltec Lora esp 32 board V3 libraries
Números doble alto en LCD
FastLED: Problems with rainbow cycle
Puente H y Motores con Pwm
Button counter not incrementing
Displaying Compass on OLED SSD1306 (128x64)
Current measurement verification method using sct013
Need help in Loop cycle
24V DC motor not working with BTS7960 and Arduino nano
How to send the ECG signal to the arduino UNO?
Using 6 x MCP23017 Issue
12V Relay Module Project
Saving values in array by pressing button
Data sent api server with ethernet 400 bad requests
Arduino based home intercom(USING WI FI ONLY)
12v Relay with ESP32
I’m a beginner to arduino programming. I’m trying to develop home automation project based with blynk. I’m trying to memorize commands on the EEPROM.This is my code. Please Help to modify it
Hello team help
Gps tracking system by sms
Arduino mit einem UR3 verbinden
Gardenpump problem - problem solved! Sorry - logic mistake: need to use long int or unsigned int
Help with Arduino IDE 2.3.3
Can Arduino (UNO) "pass thru" external power to my project?
Arduino Stepper Code help
10 Motores 1 Arduino Mega
ESP-01 works with USB adapter but not when on breadboard
14 line error aa raha hai
Arduino serial esp01
LoRa does not transmitting the required data
Arduino and Race Coordinator(HELP NEEDED)
Silly parallel 74HC595 problem
Es posible Reproducir palabra no grabada en ISD 1820
Request for help in code in line follower robot using 2 IR SENSOR , 1 MOTOR DRIVER, AND 2 DC MOTORS
How to make tsop
Button box construction, connection
Parola Scroll text, Brightness
Controlling Stepper using incrimental rotary encoder and arduino
External Power Supply with LED Matrix
Need to be able to pass variable in analogRead
NODMCU sketch problem
Check wiring on GPS Module
Checksum calculation leading to crash (dividing by 0)
IDE Debug Issue GDB Server Quit
ESP-Now with ESP32C3
Humidity and Temperature Controller
Can we set output working duration? Pls help
Sketch working on a Micro doesn't work on an Uno?
Problem sending two integers from a master to a slave arduino!
HX711 Amplifier with 50kg load cell - Values fluctuating constantly
Active front wing - 1 axis gyro/servo
Use Arduino with MATLAB
Controlling relays based on inputs
Simple Question from relative newbie
Continuous servo concern
Subroutines and do While Noob questions
Simple Two Button input to LCD output issue
2 stepper motors with independent actions
Generating ECG Waveform
Help me please :)
Request for member print in 1 which is of non class type int
l293D motor shield from adafruit not working
How to extract a random number from an array of values and remove it
Help ultra sonic sensor
Is the problem I have to do with wrong pins or code?
Arduino uno Input problem
Tarda en compilar
This my code that needs help
Problems uploading to arduino nano
Project guidance
Void loop doesn't work on my recevirer code
I'm a noob and need assistance
My arduino blinking so fast and it not working
RCSwitch and Loop-Usage
Thingspeak error o arduino
El WiFi de la ESP32 no me anda si no conecto desde USB
Help me with my project
Someone could give us our own program
Compilation probllem(solved) unnistall &install
Peugeot 207 gauges for games
Error with Real Time DS 1302
Extract a number from a gsm module text
I2C and servo conflict?
Communication to parallel (not cascade) 74hc595 over common bus lines
Arduino uno relay shield as timers
Can you ctrl f on serial monitor
Confuision (again) re SpenceKonde ATTinyCore status
IR receiver receives one input but not any more
Keep getting an input with push buttons without pressing
Pulling pin closer to 0v
Stepper motors not responding
I need help coding two servos to be controlled by a PIR sensor
Can't display animation using u8g2 library
Hi I'm totally new to Arduino and my first real project is to build a stepper motor to control a gas valve via a wifi app page!
Servo Motor not responding to program involving photodetectors
Problem creating a simple circuit with uno r3
Nema 17 Stepper Motor Issue
Arduino Reads Random Analog Input
Controlling pump with Digital pin, but use another power source
Motor shield driver not providing power
I am not able to figure out what's wrong with my code
上传程序的时候就弹出这个编译出错,这是出现了什么问题
Led programmable
Problems using Hosyund .96 in OLED display module
'countof' was not declared in this scope
7seg and ultrasonic
Keyboard input to Flip Flop memory conversion
Issues with bleKeyboard, ESP32 and windows 11
Information school bell frame using Arduino
Paris Street Furniture Walk, Don't Walk Sign. Oh and so New to Arduino I only heard about it recently
I want to send command with Bluetooth from python to esp32
Robot arm kit van Lafvin
Minimum value of an array
Where is the problem ?
Are there any devices that could make a 3.7v input into 5v output and keep the same current output of 12.5A?
Digitale kazoo speler
Simple Button Issues
Fingerprint R307 pin5 touch wire connection
How do i get my sketch from arduino cloud?
Project for school- Input of sensor signals in the range 0.8 - 3.2 v
Reading array value
MFRC522 freezes after a while (inconsistent)
Making a seismograph with GIGA DISPLAY, how to unite the dots?
Analog channel configuration
Serial Read Data
Serial Read Data
Error Uploadning ESP8266
Unable to find network to edit timeout
Code crashes on line, tried to fix added image of serial monitor
Hi can anyone help me on this. Im using servo library for my burshless motor connected to ESC and reciever. How do i add limiter for this?
How to connect Google script to node mcu
Arduino Mega un sector quemado internamente ?
Why is my first "if" line only blinking?
Increasing Power of HCSR04 Ultrasonic Sensor
How to use serial data to get a digital output
Serial Monitor Issue
Using 4 Transistors seperately
DS3231 would not sync
Esp32-s3 with USB keyboard
I have problem with code
The DC motor does not rotate continuously
Measuring solar voltage
Redirect function output from serial monitor to character variable
Working with Sparkfun m6e nano and Arduino mega2560 to read tags
My servo motors are running too weakly
Dont upload arduino pro mini
ATtiny10 PWM generation
Title: Arduino UNO Q — Cannot read Serial/Monitor output via CLI without App Lab
How to code for Servo using IRremote (1 button, 2 directions)
About uhf arduino code?
Stepper motor tb6600 serial monitor
Sketch exit status 1 expected '(' before 'unsigned
Suitable mosfet for coreless motor 8520
Blynk project with dimmer
DS1302 Compile error
Is there any support for UNO R3?
Use multiple interrupt for flow sensor
Serial Monitor unusable
Stepper motor Nema 17 stuck when power is supplied
Controlling WS2812 to form 7 two segment displays
Design Bidirectional Buck-boost DC-DC converter using Arduino MEGA
Problem with arduino nano v 3.0
ATMEGA328 Resetting
Stopping a remote control vehicle
MP3 set serial not declared in the scope error
2s complement conversion
[Serial issue] Exact same code wont work on Mega, but works with Uno
16x2 display issue
How can I get a reliable 5v output from nodemcu v1?
Arduino Stepper motor Weird response
HELP NEWBIE ? Using a Nano atmega328p with a panel 64x64
Existe una libreria para LCD 480X320 controlador ili9486con arduino due
Cuestión de practica
Strange Character display on LCD 763-24064WG-ATMI
Arduino: 1.8.19 (Windows 7), Board: "ATmega328, Yes (UART0), EEPROM not retained, 328 / 328A, BOD 4.3V, LTO disabled, Internal 1 MHz" avrdude: Vers
Executingc command: exit status 1
How to keep rfid reader triggered after one tap
How can I SPI transfer without function in Arduino?
Audino pin voltage is low
Wireless Temp Monitoring UNO/MLX90614/NRF24L01/OLED
Esp8266 stops sending data to firebase
Ic acs71020 arduino full code needed
Nixie module for IN17 nixies and bluetooth number keyboard for android telephones
Nn4mc: Neural Networks for Microcontrollers
Voltage and Current measurment using arduino
Make arduino speakers louder with less noise
Graphical Programming Document SmartRobot Car 4.0
Is there a problem or something
7 segment diaplay
Capacitive Soil Moisture Sensor Trouble
DS3231 - Code that repeat for given no. of X days?
Unable to compile program
Communication in Arduino
Help with coding change
How to program extra tags for 13.56MHz RC522
DQ420 MA Stepper Motor Driver - NEMA 17 42BYGH616 - Arduino Code CW/CCW Motion Program
Power Saving for pins only used during setup
Convert from String to accepted variabel on SD-card
Advice for coding motors
Arduino-cli work offline
Discord webhooks
My Buttons just start going haywire when theres a lcd i2c on it
Why can't I use if else to change the color of the RGB led?
Mkr1000 going shutdown program
Trouble with the Stepper motor utility
Not able to connect to esp8266 from device window
Problemas en proyecto con librerias VR3+SD+TMRpcm
Arduino Cloud, some webhooks do not include all variables
Thingspeak failed to send data
Library error for compass
Please help newbie struggling for 5days! about using millis
Tolong apa yg garus ditambah supaya motor stepper bisa berjalan 2 2 nya
Serial Transfer has no member named ‘txBuff’
Using a potenciometar to set variable value
Arduino-based solar power charging station
Tips and ideas for users
MPU9250 gyroscope
Arduino nano power supply
4 reles controlados con un control
Serial monitor in Cloud won't display text
Esp8266 nodecmu oled issue
Conectar mas de una pantalla oled i2c en arduino
Moding a vacuum
Using an Ultrasonic Sensor to start a timer
Stepper Motors, Limit Switches and buttons
Delay l298n arduino
Control 5 servos 3 joysticks recording coordinates arduino uno
Data Logger Crash
ESP32_WROOM_30 + Waveshare 4inch Touch Shield
Connection problem with arduino nano every clone board
Hello, good day, I have a nema 23 stepper motor that reaches up to 150 RPM, how can I reach higher speeds?
Need help with connecting 2 servos together
Driving a PMSM (sometimes called BLDC)
Escrever um numero grande na EEPROM
How to post sketch
Measure motor voltage using arduino uno
Need help with code for my project
A loop want to wait until a condition become true
RPM printing on lcd shield
Picture from sd to 128x64
How to auto reset
Pressure Sensor - Needed Guidance for my Project
Arduino and Assembly
Not getting data from PMS5003
Arduino only works when connected to USB
TMC2130 with Arduino Mega 2560
DRV8825 Setting vRef Issues with High Voltage
Random Color Strip and Sensor PIR
Ayuda, es posible?
What's wrong with the signs? I have reviewed the program many times
Stepper Motors, Limit Switches and buttons
Error en funcion ledcAttachPin
How can I change keyboard Layout
D2 pin needed 12345
Modify this code?
What's wrong with the signs? I have reviewed the program many times
Rotary Encoder DT pin notworking
Stop stepper motor from heating when idel
Please help me, i already have the source code for control 1 PIR, but i stil don't know how to edit that source for controlling 2 PIR by using arduino
I'm new and need help with code. (NFC to start car)
HC SR04 to suspend the calculation until a button is pressed
Need help with setting up
I am unable to use this LED as an indicator for when the temperature exceeds 22℃ and the motor switches on
Error con sensor RFID y pantalla LCD I2C
Zigbee,wifi,ble use together in arduino ide
Need help with connecting 2 servos together
Timer/ sound Project
Crear rutina de cálculos
Requesting help on using DHT11 Module with NodeMCU
Is it possible to Switch between 2 app images?
7 digit number voice command with DFrobot gravity
Strftime to useable variables
A9 Thinker network garbage text
Stepper motor vibrates but doesnt turn
Proportional electro valve control
Check schematic for errors
Arduino reads incorrect voltage
Issues with changing variable and char.toInt
File not found "executable" error
Coneccion de Arduino con bluetooth
Possible for Arduino to read sensor data and wait for user input to turn stepper?
2 photoelectric sensors to measure time
Screen partially display
Cloning drives on the shield
Arduino Bluetooth Car
Guest counter with Ultrasonic sensors
Tendero de ropa automatico
Cant do mp3 to led stips with drivers
My keyestudio joystick for ks0398 doesn't work
Mikroe 1577 that uses MPU6000
Stuck at 128x32 oled screen working at wrong resolution
Put JSON to API Endpoint using WifiNina Library
20x4 LCD display text barley visible
Arduino won't play music
Arduino BLE to micropython board
Arduino UNO R4 interrpts do not work
Error: cannot convert 'HardwareSerial' to const char*'
Arduino Nano 33 BLE code
Espacio de almacenamiento de programa
Code for VFD Clock from Ali
Max30102+ESP8266
Error Currently nRF24 RX is only supported for ATmega328P
How to trigger BLDC compressor with arduino?
Support forum for Nextion displays
Programmer not responding
Arduino MKR1010 WiFi disconnecting
New Beee Web Editor intermittent connect
Random 16 LED's, just 8 will turn on and their representation in binary code
How to see 7 in 1 soil sensor register values (JXCT Soil Moisture Sensor)
Arduino Ethernet Shield W5100 Issue
Radiohead lib and SPI CS pin
Controlling multiple servos with potentiometers
Data Logger Crash
Help with Arduino Leonardo, RWS-371 RF Receiver, and 12-Button RF Remote Setup
DFplayer mini not playing any sound issue
Switching from Arduino uno 2x16 screen to 4x20 lcd screen
Errors on Arduino
Stepper motor with IR sensor
No Matching Function for call MP3
How to make bluetooth gps spoofing
Only initializing in serial monitor when connecting Max30102 and arduino uno
Camera_pins.h error
Color OLED code error
Help with arduino, robot, and servo motor
Uint_8 e uint_16
Acs712 Please help
GXEPD2 with RPI pico W
Problem with Ublox NEO-6M GPS
SDCARD ISSUEEEE
COM Port Error With i2c Devices
How to skip over a line of code when hardware isnt returning the result
I am trying to connect MPU9250 with my Arduino UNO and I am getting this error while uploading the code
I have compilation error with any sketch and any board
Sim800 a liitle help
Arduino Uno CH340
CONTER WORKS IN STEP BY STEP. NOT running CPNTINUSLY
Project Guidance for 4 stepper motor system
Help with arduino, robot, and servo motor
Serial doesnt showing ip
Adafruit MQTT client to work with the openweathermap.org 1 client
Arduino IDE 2 pico build process problem
General Guidance and How to use the Forum
I want to create a Toggle Push Button switch, when LED HIGH, then i want to show " LED IS ON" either "LED IS OFF", Please can any one help me?
How can i read a charieplex with arduino
Arduino UNO Blink Light Button System
Receiving some strange characters in console log of xctu when sending data from sensor node to coordinator
Servo Motor controlled by inductive sensor <HELP>
Proffieboard EXIT STATUS 255
Get variables from serial
Does not match any class
Yo guys, Need to know the name of that Other IDE
Arduino unable to pick up slave on i2c
I'm new and need some Coding help
LCD plus OLED in one Arduino
Balancing Drone
QR Code Reader ESP
Arduinon Uno loses time sync
Hello friends Arduino ILI9341 2.8 screen text upright
Arduino problems
String toInt and cut in pieces in a elegant way
Arduino uno interrupt timer bluetooth
MAX6675 with SMPS (Readings haywire)
Wrong spinning servo!
Error: Cannot convert 'char[33]' to Stream&'
Serial monitor prints 2
Automatic Card dealer project LCD help
I want to add 2nd sensor for my project. example pir sensor 1 is for gsm and relay and 2nd sensor is for buzzer, I dont know how to do it please help!
Can I put clockwise and counterclockwise on photoelectric rotary encoder?
Trouble ESP32 wroom with Vl53L0x and multiplexer PCA9548A
Schets not working
Does not match any class
I want to add 2nd sensor for my project. example pir sensor 1 is for gsm and relay and 2nd sensor is for buzzer, I dont know how to do it please help!
Limit #'s behind decimal?
Arduino outputting extremely low voltage I/O
I have a problem with void loop() where the x,y,z does not show up when I run my program in Proteus
I have a problem with void loop() where the x,y,z does not show up when I run my program in Proteus
RS232 with arduino uno
PWM reprate software
Custom CAN Module (MCP2515 Inside) Detects Bus Without Connection
Nodemcu esp8266 domotic
Derivateur de surtension (dimensionnement condensateur?)
HELP: with wiring for a 2.42 OLED with Arduino Nano 33 IoT
Trouble with a connection of two pushbutton and one ldr sensor
If there is a service, feel free to talk about it
I want to change x y z movements in software but it won't
ESP32 Cam module capturing photo triggered by Arduino
Which is better, python or Arduino program(C++)?
Problem of balancing in quadruped robot
How to turn a light if the buzzer makes a sound greater than 500
Waveshare ESP32 C3 zero from PI Hut
Need Help with MIDI Control Change Messages with Buttons
Arduino + bbdd problemas
I can not get my code compiling
Poco voltaje hacía los motores
Selectable led sequence with push button to run program only one
Using HTML buttons for web control with data refreshing
ArduCAM mini 2MP Erorr
Motores de coche ESP32 no funcionan
Problemas con un proyecto activador de rele por el sensor ultrasonico y leds
74HC4067 MUX switches all output ports to low after port change
74HC4067 MUX switches all output ports to low after port change
Writing to SD card, 0 bytes written
IRRemote starter kit problem
Help with compiling
Power to arduino uno
Unable to upload sketch to Board
Custom water monitoring system
Voltage leakage?
An old programming adage… (oops!)
Chinese sound sensor Config
My "loop" function only seems to work for 3 minutes then stops
Arduino DC variable speed water pump speed regulation
High and low logic
Claw Programing Problems
How to fix Exit Status 1 Error
UART to LCD between two Arduino
Windows 10 won't recognize MKR Zero?
Variation in the voltage value for no input using Arduino
Error uploading cyber falls code to nano
How to code "free" synchronous motor
Bait boat with gps
I would like to know where to find more info! ("simple" wireless charging case)
Automatic control of feedback linear actuator to a desired position
Tarjeta de relés de 8 canales encienden en orden de mayor a menor
Microstep driver settings
Esp32 comunicating data to Arduino uno
Digital pin value
Gsm sim900A not sending sms but showing symbols
Inline Assembly if statements
Error use wire.h and twi.h library
Counting state changements
Arduino Uno R4 Wifi
Is it possible to use httpclient library for Arduino mkr wifi 1010
Connecting Water Level sensor to Digital pin
Possible to code the Arduino to shut off an LED after 20 mins?
Wemos D1 Mini - communication to Wemos D1 Minis - wireless
Problemas con los sensores digitales y analógicos en la conexion inmediata usando el esp32 ttgo sim7600g
How to connect ultrasonic sensor with ts3200 sensor in Arduino Uno?
I need some help with this error code
Convertir código a maquina de estados
Control stepper motor by potentiometr
How can I pause stepper motor with ultrasonic sensor?
Laser control using arduino
Problem with CAN BUS Receive Data CODE
GPS breaking when adding lots of sensors
Controlling Arduino using internet(website)
Need help in displaying data of device showing on it's LCD on a computer screen
How To Control Water Flow?
Arduino project - pump and ultrasonic sensor
Poner un temporizador o leer entradas mientras esta un delay
Bosch Motronic 1.3 Air Flow Meter PiggyBack, HELP :'(
LCD display stop data Flow after hour
How to declare hardware connected to arduino pins
I'm using a state machine, but the states are not switching properly
Multiple definitions TinyGPSPlus
Brushless betafpv motor with Arduino
How to declare hardware connected to arduino pins
Compilation of any sketch fails for ESP32: "No module named 'serial'"
Delay/Millis use
Compare First Value with the New Values of Load Cell
Hey, Im young and dont know what im doing help please?
Arduino nano RP2040 connects
WiFiNINA client unreliable on MKR 1010
Noice Z shifting
Communication RX TX Arduino PC
MEGA 2560 Code problem
HC06 pairing problems
Problemas con convetidor TTL RS485, Chip Max487
My code will not be uploaded to ESP32
Invalid use of void expression
HELP, it's for a school project
Can u say what Arduino board I am using
The Atmega328P is going too much fast
Esp32 DFPlayer mini not connecting
Unojoy mega eror
How to read a 0–60V single-wire pulse signal with Arduino/ESP32?
ELM327 and HC-05 connectivity issue
360 servo and button
MAX30102 is not working With ESP32 DEVkit V1
2 Channel LED strip control with DMX
Can't get example sketch to run for SSD1327 Display
Debugging is not really working
Can I use Two battery of 9V batteries for 2WD arduino car? It show not enough power
Light sensor servo motor
Arduino relay code for 14 in 5 timing
7inch HDMI LCD (C)
Esp32 not connecting to pc
Ultrasonic sensor connected to a joystick controlled car that stops within a predefined distance. I am new to arduino and need help
Can someone tell me if there's a "stay/don't change state" type function?
Error Arduino 0xac
Buenas noches, omar desde Venezuela
Self-driving car using Arduino uno
Error uploading the code
Smart Stick Project with Arduino
.debug error during compiling in Arduino IDE
I want arduino code for TSOP ir read data with using Attiny1606 controller
Help with switching players in a 2p game
Force Sensing Resistor
Interfacing Arduino UNO with Logitech 3D Pro: Code Troubleshooting
Real time stepper motor control
Smart greenhouse
Bluetooth controlled car - advice on an issue
Trying to increase a variable when Ultrasonic senses a certain distance
Capturar huella de sensor biométrico
Stoping rgb sensor at specific rgb value
6V 20A power supply for arduino robotic arm project
[SOLVED} Old Wifly RN-171 Factory Resets Itself at 2 AM
Nodemcu and LED
Different inputs, same output
Starter kit, love-o-meter sensor takes to long to react
Using nano to activated up to 8 songs on a dyhv20t after using a micro switch
Contador de pulsos con tiempo
OPTA - RETAIN data space
How to combine 3 arduino codes (main code + 2 sensors)
Fram spi read-write writes to one memory location
Error compiling for board NodeMCU 1.0 (ESP-12E Module)
Delay is not working for applied filter on serial analog data sample
Using nano to activated up to 8 songs on a dyhv20t after using a micro switch
What is the best way for Arduino to handle a large amount of continuous data fast?
Beginner RGB led
NFC shield and Arduino
I need to get data from different esp32 board to a single esp board or modem and upload that to a cloud .Any idea how can we do this?
Not able to perform register level coding on Arduino MEGA (Atmega 2560)
"invalid header: 0xffffffff" when I press reset on ESP32-CAM
Arduino Nano cannot find ports when I plug my i2c device in
Can we Control DPDT switches by using Arduino/ESP32?
Neopixel controllable groups for Dancing Fountain?
ESP NOW is where on forum?
How to convert float point into microsecond?
Arduino_LED_Matrix should on() only turn on LED and off all the others?
New to Arduino. Need help confirming code works and how to confirm its running
Led matrix conflict with i2c
Mprls simpletest
How does sd card with rfid card reader work?
How to wire this up, what is my mistake?
ESP32 ILI9846 Temperature humidity show the display with 5server 1 client How?
Program ATmega328p using BT module HC-05
Cheapest microcontroller to convert 1000-2000us to 0-100% PWM
Arduino Nano connected to a 0-360 degree hall sensor
CAN communication using SNV65HVD230
Problem Adding Additional Transducers to Single Set
Change element in HTML page hosted on arduino
Clear Serial available
Need Help A9G connect to internet
Controlling multiple servos independently from serial monitor inputs
Arduino uno recognized as midi and not as Com (help)
A fatal error occurred: Timed out waiting for packet content esp32
Stable Multiprocessing README
Will my WebUI output still work if the Arduino UNO Q has no internet connection?
Arduino Uno error
how to program new buttons using an existing sketch
New posting - frequent responses
Creating a new partition scheme for ESP32 AI thinker
Wind Vane mechanism and sensor
Can't get Stepper to go full speed
Newbee needing a little help with a project
Programa para robot aspirador xfavor
I got problem with this code,
Send data from nodemcu to Arduino
N424l01 wireless fireworks ignition system
Error while using the psx
Getting userinput from serial monitor
222 counter from nothing
Compilation error: exit status 1
I don't understand Uno VIN polarity - Help
ESP32-C3 and P10
Sms Controlled Servo Motor | Code stuck in sending STATE block
Got problem with coding call to 'HTTPClient::begin' declared with attribute error: obsolete API, use ::begin(WiFiClient, url)
How can we solve the lag problem of push button?
World Map with over 200 Leds (Max. 1280)
How to send data from the accelerometer using OSC ?
Mega : Interrupt on Pin 3
I need help for a solar tracker project
Lcd muestra cuadrados blancos en circuito de control de acceso por teclado
How to cascade Hexadecimal no
NEMA23, TB6600 Not Returning to Original Position After 30 seconds Delay
Liquid crystal I2C
ESP32 not discovering BLE Device during scan?
Motor control using two ultrasonic distance sensors
Trying to show multiple texts
Problems with rf modul on ATtiny
Send information via TX/RX from an arduino uno to a mega
2 nano works ok on win. on linux 1 ok the other no
Current measurement
Serial bug(I think)?
Arduino Nano every "No Native USB support available on this board"
Opta RS485 port not working
Need Help , How to show Serial data on blynk
Flux Capacitor by RadBench
Arduino ide, is there an automated up date
APC220 transceiver
I want to ask about my thesis
RPLidar Values are inconsistent (Any help is appreciated)
Updating firmware through URL
I can print initial sensor value with serial1 but this value doesnt change
GPS esp8266 oled
Arduino Uno R3: The programmer is not responding
Sync of switch and mit appinventor apps
Use multiple ds18b20 sensors and calculate average
Multiplexer Supply Voltage
PIR sensor output toggled always even noone near to sensor
How to improve the speed of Python reading MLX90393 through nrf52832?
Compilation error: 'HIDMouseEvents' was not declared in this scope
Need help to understand Keypad and password
Urgently Need Help!
How to send a csv file to remote server using gsm900a
Ardruino Nano and Pro Micro CH340 Not recognized by Win 11
Saving ECG data in array
Help needed for project due 6/3
Forum rules - Italians are better
NRF24l01 broken or I'm just bad?
Nextion display problem
My serial monitor is printing garbage
Help with types/ overflow
Arduino Nano not uploading
Missing characters in serial monitor prints
I'm selling my Arduino Uno and many more IoT components at half price
Encendido de 3 leds con 2 pulsadores con bucle for, array y millis
Missing expression between '(' and ')'
Electronic Dice
Selected port is currently closing popup
Openrb-150 and ax-18a
Multiple serial devices , ESP8266 & E32 LoRa on Pro Mini
Line Following Functionality In Self Balancing Robot
Ubicar libreria ds3231 que corresponde a este código
NEED HELP, arduino nano keypad
Strain gauges with arduino
Proposed change to the forum guide: ChatGPT
How to get the best out of this forum
Need help to read usb mouse readings from pico
How to combine 3 arduino codes (main code + 2 sensors)
Having trouble verifying code
74HC595 - driving higher loads/voltage
Importing JPG to an Array on Arduino
How to control a stepper motor with a text file on an SD card
SdError: 0XC, 0XFF y la sd wireless shield
Arduino doesn't work properly after disconnection from pc
Why is there a voltage drop when I add a resistor?
Thermostat LCD display doesn't turn on
[esp32] random outputs with 4*50kg load cell & hx711
If statements HELP
Noise produced in Encoder signal using Arduino while noise absent when using alternate GND connection
IDE hangs on startup: "Failed to initialize the CLI configuration"
Having trouble with setting up the pro micro
Getting error during compile
i need help with a error
I need help with Lora
Simple RTC project
Restart delay when press button
Need help to store data to eeprom
Dabble gamepad not working
Arduino Uno and ESP8266 will not work
How declare char type array
Need Help to Manually Install Seeeds Board Package
How to use serial to comunication with DAW and PC(C#)
Problem while combining/compiling code for 2 programs related to same project
Button box sketch help
Collect 5 seconds of data from sensor with a gap of 1/60 seconds between each reading
TinyGsm connect failed
How to send messages to Esp32 from pc through Ethernet without internet in physical layer...?
Unable to upload code
I have line follower robot with a sensor with 5 IR AND A MODULE L298N.I have a code but it doesn t work.Can anyone plsss help me
Flapping motion for ornithopter
Stepper motor programming and scsketch
MPU 6050 goes wild once motors plugged in
Try to send "swi01,swi02,swi03,swi04" switching commands to ATEN video switch VS0401 through RS232 TTL converter
How to controll servo via imu on nano rp2040
Arduino nano se congela
Arduino sorting robot
I am making a simple automated irrigation system but the arduino is resetting when the power supply is switch on
Can someone help me with this?!
Can someone help me with this?!
Highschool Project Help
Serial Communication without USB
Problem with PZEM-004t CT sounds like creak when hooked onto cable
USB Host Shield "OSC did not start"
Serial data going missing intermitently at end of string
Arduino Uno Connecting to Arduino Uno with WiFi Wemos D1 Using Lora
Help with arduino uno not uploading
Read Pulse Of Built In Hall Sensor and Measure speed (RPM)
Possible code error?
Portenta Machine Control and PlatformIO RS485
Sim900 Mexico 2G No conecta red
Set font alternative
digitalRead timing out in while loop?
Avrdude: ser_open(): can't set com-state for "\\.\COM10"
Problem sending data ph sensor to blynk 2.0
LCD-Display Life Point Counter
Help! Wireless doorbell for a school project
Help me please :(
How to get the best out of this forum
Totally Frustrated
Potentiometer with reverse button for stepper
'class DS3231' has no member named 'getTime'; did you mean 'getA1Time'?
Serial.println() with Arduino IDE 2.1.0
DF Player Mini Working Problem
Control Led using MUX & Arduino
Controlling Speed of DC Motor using Serial Monitor
My Nano Clone is not working but I have the drivers installed!
Serial Communication Not Working with SUART pins
Arduino Create Agent on Windows 11
My boards all say NANo on them but come up as unknown?
Serial Communication between ArduinoIDE and Simulink for controlling motor
Arduino lcd ic2 problems
Using AT24C512 with Arduino I2C and controll the addresses using the serial monitor
Arduino sensor and 2 lights code help
Searching for micro controller with 9 or more uart channels
Two Ultrasonic sensor 1 is not giving correct readings
A one wire communication program with problems
Blink LED stopped working
Question about IR Thermometer with 2 Line LCD on Uno
Connect arduino with gsm module to freepbx server
Failed to connect to ESP32: No serial data received
Led driver failed
Nextion test sketch
Using web serial as serial monitor
NeoPixel Lights
People counter + noise level detector WITH wifi
Blynk do not connect
CAN shield programming
What is the best way to drive 4 stepper motors using 4 potentiometers and 4 switches for direction
Communication of several devices by serial port
Need help with Mega Sensor Shield V2.0
Having problems with gy-521
I cant read fast movements
Portenta H7 SD.begin() returns 0 systematically
I made a stopwatch with a point counter with a 7 segment of 4 digits, and it blinks when the number is not equal to 0
RFID MFRC522 Read personal data
Hi! can someone tall me what this line of code does? in UltrasonicDistance
No i2c device found
Interval between calls to slaves
Potentiometer controlling arduino
Need help combining sketches
Como obter o melhor desse Fórum
Arduino nano ESP32-S3 panic resetting [SOLVED]
How to control two servo motor each with a potentiometer controlled wirlessly through NRF24L01 and Arduino uno?
Help Combining Two ESP8266 Projects with Web Control, Timers, and EEPROM
Analogous data from sensor & requirements
I2C register read on Attiny85 using tinyWireM
Programme coflict
How to change the default pin number in wire.h library
Ethernet 2 uno setup
El sketch usa... bytes del espacio
Code Help, 4 inputs per hit
Why does my A4988 burn?
Porque mi esp32cam marca un error
Servos keep failing after some time
Not being able to use brushless motor
Arduino Step Motor
ESP32 video recording on SD card
Only my first serial pin is taking order
Read 2analog inputs and compare them
Line following robot package picker
Running a fan only when a 48v wire is active
Can I use Arduino to silence a barking dog?
Float value send
Bluetooth Function I Don't Understand
Serial Monitor for ESP32 S3 Dev kit
How to make voltage adder
Send recive data separated by comma
Como alimentar una bomba peristaltica 12V
Device manager-CODE 10 error
Coding timer help me
Getting an error when i try to verify code
Recommended tutorials/learning path for animatronics?
I have a HCM375B sensor
Convert from Blynk to Arduino iot cloud
How to upload photo file for ESP32 over Wi-Fi OTA
ADS1115 showing inverted Reading
ESP32-wroom-38 pin board selection
Pressure sensor ABPDLNN100MG2A3
PH sensorCalibration Issue - Same Voltage for pH 4.0 and pH 7.0
Help me with my project, please
Title: Excessive Power Consumption Issue with ESP32, MPU6050, and Deep Sleep
FS1012 MEMS mass flow sensor
Stepper motor driver for NEMA 34
12v Solenoid valves with arduino
Arduino nano Serial printing out ascii garbage
Arduino + LCD + nRF24L01
(5k lines 25 classes)COMPLETELY READY TO GO - API package for esp-idf.Suuuper easy to use, ultra fast and all functionality
CAN bus programm code not getting compile
Using LoRa To Control LEDs but cannot get it to work
How can i make automatic light switch? arduino
Doing Auto Brightness on a SSD1306 (OLED) Using APDS 9960 any idea how to do that ?
RS485 Soil Moisture and Temperature Sensor with ESP32
Solar inverter output voltage
Arduino - Change background colour of LCD
Motor speed and count control
Does not connect to WiFi when country changes
Help with Arduino code pasting
NEO-6m GPS gives me 0.0000 for long and lat. Is it working or not?
HC06 ATMega 2560
Pules Counter with Output 3V
ILI 9341 not showing data
Digi_pt_pt problem in powershell
Stepper motor with the uln2003 board driver
BLE device connection with ESP 32 using the specified MAC address
Floating point number via serial
About Nano TX LED
Need help with motor choice
Laser Colour Sensor
Arduino 2.0 IDE = spyware?
RC Plane Landing Gear Problems
Obstacle avoiding car not working properly
Esp32 cam program upload error
LED Pin Controller Help
ESP32 Universal Project Questions/Opinions
Not able to get data from the optical encoder
How can I deliberately make a stepper motor vibrate?
Encoders not counting properly
6V + Ground Car 10mph trigger light
Prox switch delay
My modules randomly start glitching
Rtc ds1302 clock
GxEpd2: How can you use a Waveshare 10in3 e-paper screen with Esp32
LCD 16x2 com módulo I2C
Arduino UART communication with ESP32
Multiple weight sensors and results to appear simultaneously on a pc screen
Hlo pls help me as im not very good im programming iam getting an error with esp 32 programming can you fix this code
Exit status 1 error in compiling
Proyecto domotica, cerradura electronica y control de iluminacion
Can anyone pls help me merge this two arduino codes so that they can work together?
Expected HTML GET response only with cookie statement; And I can't get data for my website
Help me TCS32745 not working serial monitor ?//
Arduino NANO powered by solar panel
16 Mhz smd crystal oscillator
I can't seem to install codes to my arduino
ESP8266 with GSM/GPS module
Micro not coming up as throttle
Error compiling for board ATmega32
ATtiny Run w/o Delay Two Functions from void Loop()
Simple project to make several lamps to light as traffic lights
POE Circuit required
Esp8266 alimentacion
One wire Communication For 8051 TO Arduino UNO
SAMD Board Manager 1.6.17: Error
PCA9685 how to get the duty cycles figured out for RGB
Sound detector + arduino + processing
Is arduino mandatory for L293D motor driver?
Cant Read Linear Motorized Fader with Arduino Uno
Arduino should react to music on Computer without Microphone
Arduino digital I/O pins dropping form 5V to 1.2V when i connect a second stepper motor
I need help with my project
Slot car timer problems
Why this attitude?
SAMD51 multiple SERCOM issue
analogRead always returns 1023
Interrupt function misbehaving when powering up stepper driver
NRF24L01+ Received Garbage
Using onboard Ethernet (KSZ8081RNB) on i.MX RT1050 with Arduino core – is it supported?
Getting error on missing files or no directory
I share with you a project for light lamp with a light sensor
Guys i want to send data from my esp32 to node js server but disconnected message appear the port and hostname are correct.i reach server from react
Arduino Micro as Controller
Dual solar tracking coding using 4 ldr , 2 servo motors, arduino
Grbl 5x Arduino mega Required define homing cycle 0
AREF pin on arduino DUE
How to measure stator current in 1ph induction motor
RFID project scan tag or card with LED light without continuously scan
SAMD21 MINI by ROBOT DYNE NOT BEING DETECTED . USB PORT, CABLE , PROPER
433 MHz communication not working (virtualwire)
Switch case dc motor
Touch sensor is bugging when used 2 if statement
I need help figuring out how to fix this error code. Can somebody please help?
Arduino object avoiding car
Controlling diameter of extruded filament
Send Character into Serial Monitor via button press
Node mcu error while compile
Esp8266 10bit register reading
Interfacing AHT10 with 7 segment display
Need Help with Dim 7-Segment LED Displays Using PCF8575
Fuel volume of rectangular tank using Arduino
Need a dc motor working at 40 RPM
I need help with arduino project
Help needed for Arduino guitar tuner
'mcp_can' does not name a type -CAN BUS problems
How to Use Multiple VL53L0X I2C sensor on a single Arduino UNO
How to display sensor data in to TFT LCD DISPLAY?---Add in to the attached code?
Shock detection Arduino Nano ble
L293D shield won’t turn on any motors on
Arduino IDE 2.3.3 auto format error ?
Pride2015 code on attiny85
Coding cc+ pls read
Can you code use and code python on Arduino
Atmega64a not working
Attiny85/ etup_watchdog was not declared"
Newbe morse trainer
MUX to control servos on adafruit pwm servo driver
7 segment digital dice
Powering load and Arduino from 5V
How to display sensor data in to TFT LCD DISPLAY?---Add in to the attached code?
SimHub thinks Nano is a Simhub Dash
Serial write and read don`t work toogether in the same loop
ESP32 Foul Shot Keeper
PWM Fan control - nano
USB TIme out error (Python | PSoC 5) Please help me to sort this out. Why its coming?
Using arduino to generate signals
DHT11 not found
Oscilloscope repair
Can't correctly get the analogRead value
Slow optocoupler turn on/off time
IR controlled arduino uno car
My Relay isnt working
Need help! ASAP make a code for Water leveling sensor
Making function with parameters in ArduBlock
DfRobot TDS Sensor Faulty Reading
Turn of the Load connected via ACS712 using Realy
Could you help me with this code?
Comunicación serial entre arduino y Esp32
Multiple Sensors Working Together
Pure "C" Hello World
Mi arduino nano, no se conecta
IR receiver not working with OLED screen
DMD.h libray error p10 panel
How to retrieve data simultaneous from three sensors and create a loop system?
Arduino UNO with more than one stepper
Buck converter to power device
MPU6050 high Gyro value
Uno R3 No Signal on LED for PWM
Issue on FastLED web client, to control on and off for ws2812
Using Arduino to Switch a Power Supply For Escape Room
R4 Renesas RA4M1 processor programming?
Map() function data types
Connect / interface two / multiple ad9833 with Arduino uno
How to troubleshoot Arduino when the board is not connected
Cannot set com state error
Level Gauge using led bar graph
Calculating the Force using FSR and Wheatstone Bridge
How to connect Ultrasonic sensor to run DC motor with Ardino and same time Soil moisture sensor for water pump
Why are these buttons not working
Off Topic Still need your help 89C4051
My servo isn't working. PLEASE HELP!
Serial Plotter - DS18B20 sensor data
Ramps 1.4 sing stepper testrun
Sending GPS coordinate to thingspeak using GPS module neo 6 and GSM 900a
Consistent -1 return from BTSerial
Dont know how to calculate what i need to have
How to store serial data to a variable for temperature data
Predict function predict(input, output) supports either int/int or float/float.?
Wrong reading of voltage by analog pin
Nano 33 BLE Sense Project
Using 6 x MCP23017 Issue
Best imu with sensor fusion
Two PWM Signal with Dead Time
Compilation error: expected constructor, destructor, or type conversion before '(' token
NeoSWSerial - how to use my own PCINT?
Using touchscreen to simultaneously control LEDs and servo
How to take analog signal sample at one perticular period
Combine two codes in one for a solar tracking system with voltage and current display using ina 219
Data not transmitting between RF Modules
Help with void loop and setup , everytime it pops error
Error message when trying to compile sketch (In file included from.....) (fatal error: functional: No such file or directory)
Need help with TSL2540 light sensor libraries
Code for Multiple Lasers
Double Relay and motor issue: URGENT
How to program a photoresistor to input an LCD display
Ardunio Mega gets hot With L293D. Need Help (URGENT)
Can someone help me with take the time of the event in to code calculation
Expected '(' before '{' token
Expected '(' before '{' token
Won't transmit a message after after servo rotates from water detected
Unqualified ID before void
Unqualified ID before void
ArduinoFFT library Compute returns NAN on NANO
Can someone pls correct this code
I have connected my stripLED connected to a pin set as an output and I would like to control it with 3 or more pin inputs and I couldn't. Help me
Need Help with the Arduino using a relay and a temprature switch
Need help to configure LED running by preesing switch
Aurdino mega have to send data to two mcp2515 can module at a time and other aurdino mega bord with two mcp2515 should receive data but no o/p came
Arduino UNO, OLED y Serial - No responde
Stepper run and return HELP!
Bridge rectifier GBU8J
How to get an Arduino to send data over WiFi network
Errors measuring voltage
Find holes in flat plate surface with infrared sensor
On/Off/On switch and Stepper Motor
Unable to upload sketch
Self stabilising spoon
Implementing PID control using Timerone library
Connecting sd card and bmp280 via spi interface
One_Wire_bus get 85 or -0.06
Stepper Buzzes but doesn't move
Resolution for error
Voice controlled car project
Powering Arduino nano with 18560 battery
Trying to connect pH sensor to esp32
DFRobotDFPlayerMini.h Libra is not working
Newbie screwup I am Sure
HMC5883L Giving Constant values
Simple blink code or any other code not running in my UNO
LED Control with Nextion HMI
Adafruit_ILI9488.h
LDR Problem (Do I need to Add Something Here)
Arduino nano Flysky
Sim900a only power led is blinking
Guys need help with GY 87
ArduinoBlue App receives but doesn’t transmit
Arduino Uno and 5V Pump without Relay
Arduino Uno 3 way security door lock need help
How can i fix this error?
Nextion enhanced series - ComboBox
DS1302 based Relay control
How to Strobe a High-Voltage Light Using Arduino Portenta?
Ultrasonic sensor problem
I have written a code but it keeps giving me a error MESSAGE
Waterlevel with php
Disgusting treatment on this forum
Easy way to read selected bits from byte
NodeMcu Firebase Json get data
Question of Sequence Numbers
A4988 driver stops arduino from working
Ethernet.h library Ethernet Network Module
Upload to "Moonpreneur" Uno fails: "avrdude: ser_open(): can't set com-state for "\.\COM3""
Troubles setting up a connection between 2 HC-SR04 sensors and nrf24L01 WiFi module, getting nan on Serial Monitor
Does SoftwareSerial support pins 20 and 21 on Mega2560
Fixing the loop in my code
Automotive integration. (insight and advice for a newcomer)
eBox 3350MX - Needs older framework
Serial not printing anything
Voltage error ADS
Device for traffic counting device
Upload problems
Arduino nano only runs the code when it is connected to the computer
Arduino Reaction Lights
Editing sketch keyesstudio micro
Hello all, I want to use PID controller in Arduino. I have to use temperature sensor and in output I wanna use Peltier
Is The Arduino Create Agent Need?
Please review this circuit diagram
Rs485 soil sensor code needed
Control manual y automatico
UNO analog pin not reading zero when grounded?
Steppermotor turns not every turn the same distance
Rtc ds1307 and relay modul for arduino uno
Servo speed HCPCA9675
Obstacle avoiding on smart robot v4 using neural network
ESP32-S2 RS-485: Error de lectura ModBus Slave
Variable zone/relay Timer
SSD1306 and TM1637 incompatibility
How to use ELRS Receiver with Arduino?
How can i spoof arduino iserial number
Stepper Motor Not Working with Encoder Code
Burning bootloader
Battery selection for my project
PLC Siemens S7-1200 y Arduino con ENC28J60
Commenting out printLn breaks program
TTGO display with pulse sensor
Unable to flash ESP8285
5x2 Button Matrix With Diodes Doesn't Work
SoftwareSerial Library Error
Multiple sensors for arduino, is it okay?
ESP8266 and IoT Cloud Help Request
Sonoff TH16, Arduino nano, AJ-SR04M
Saving stepper motor position with corresponding RSSI value
My esp8266 overloads for no reason
4 button's to control 4 relay's
4 button's to control 4 relay's
Help with LM3914 resistors
How connect 7 semgent display on ATMEL
Wel/niet op WIFI ESPC#
Connect keyence laser sensors to Arduino
Upload failed, exit status 1
PLX DAQ v2.9 not sending data continuously
MFRC552 not working
No Voltage on pin 11 Arduino UNO
How to Read Speaker values from some device to use as if function
Program showing error
Micropython modules SDcard, USB host and Ethernet missing
Need help with motor driver
Sevseg kamu sama dengan aku namun saya susah mengatur desimal nya
How to Stop BLDC Fast
28BYj-48 motor on A4988 returns to int setting
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
How to use this forum - please read
Vision artificial con arduino uno q
Millis() won't work with Adafruit NeoPixel library
RC combat wing servo mixing and hardware
Compilation Error
Jittery encoders on certain ports
Nema23+tb6600 what code do i need to change
Error verifying code for Mega on Arch Linux
I have a problem with image classification esp32-cam project with edge impluse studio, can you help me?
Arduino Detecting Wrong Button Press Randomly
Arduino board for programmable Led strips
Distance measurement through laser transmitter module or laser dot diode module
Open the GPS power failure
How to combine 3 different sensor into 1 program and start the program by using one Button , this is the program i created but it seems cannot work
Code. Help. Please
Arduino uno Keypad with lcd password project
Arduino Nano + GPS + GPRS + LoRa + WebSocket + PHP + MySQL
HELP
Newbie feasibility question
Seeeduino xiao with hc-05 bluetooth module
Compilation error: 'lt' was not declared in this scope..... line 78
Using Modbus (RS485) storing sensor values
Incompatibility between libraries ELMduino and adafruits?
Instrumentation project
Help! Program for my final project
Arduino-project with color-sensor and rgb-led
First home project (newbie)
Catnip I2C Sensor not Working
Arduino using leap motion controller
DMA Stream to PWM configuration
Can message and mcp2515. I got this from one of the examples for MCP libaries. https://github.com/coryjfowler/MCP_CAN_lib
Using Adafruit Ultimate GPS: only logs Lat/Lon when board is reset
Webserver (Mega, W5100, include html/css)
In my recent project I am trying to use 2 servo motors,dc motor,colour sensor with the help of nodemcu but my motors are not working.what to do?
How to send 512kb of data from stm32 to esp32
Scrolling text line on Jhd12864E Blue GLCD using openGLCD
Low-Power by rocketscream does not work
Json no such file
Unspecified IDE problem
Arduino Code 5 motors with 3 boards LN298N and ESP8266
MPU6050 para controlar angulo de un instrumento que mide un motor
Fallo con carro Arduino por corriente
Problema de arduino reciente
Arduino's Analog Inputs Not Providing Accurate Readings
Arduino Nano ADC
RFID code isn't working as expected
ESP32 , arduion iot cloud , after puting ESP32 goes in sleep mode , how to do OTA updates
TinyGPS++ Altitude problem
LCD problem : increasing power of 10 when reading dips below 100
Cant select port with emitter installed
Interfacing an Ultrasonic Sensor with Arduino
How can i fade LEDs concurrently and at different rates on a PCA9685 chain ?
Using ARDUINO mega2560 TO SIM800L SMS not reciving only full in hardware
¿Cuanto vale el envio hacia argentina
Arduino GIGA R1 Wifi joy stick button issue ERROR code Compilation error: 'USBJoystick_' does not name a type; did you mean 'SysTick'?
Arduino_TensorFlowLite library has been declared as precompiled:
Arduino ide code for edge impulse esp32_contineous using esp32s3 devkit c1 and inmp441
'_circularBuffer' does not name a type
Arduino Pro Mini and NPK Sensor
Help uploading my code
Random number on a certain group of numbers
Custom Joystick like bluetooth device connect to VR Headset
L293D motor driver slowing down my motor
Alguien me puede ayudar en mi codigo al momento de compilarlo me manda error y no encuentro la falla
Connection of Cardinal 205 to Arduino via Max232
Plz guide code that Aruduino MEGA can read from ADC converter
Strange Analogue Input Readings. Is my board Broken?
I am getting error while compiling my code "expected primary-expression before ';' token"
Ttl to rs485 converter
Need direct non-invasive flow sensor (<$500) for project
Why doesnt my simple UART code work on ESP32?
Flash BIOS w25q128jv surface pro 4
Serial data Transfer
Arduino Code Problem!
DMX library for Arduino WIFI MKR1010
5V output - battery input
Arduino Nano LCD Display
Vending machine
Here all works well except "delay(1000); digitalWrite(REY, HIGH);"
Ways to draw ~1.5A from a 9W radio battery or some other small battery
Retaining a variable in the loop & General code
Estado offline placa esp8266 de arduino iot
DS3231 RTC Question
Plz guide code that Aruduino MEGA can read from ADC converter
Plz guide code that Aruduino MEGA can read from ADC converter
Arduino R3 ,L293D and Brushless motor (Include EsC)
How to get tsop arduino
Having Issues With Blender Talking To Arduino
Firebase doesn't receive any updates !
USB Host Shield With Arduino And Keyboard Not Working
Multiple Sensors on GND and 5V
I need help for my project
External clock/xtal not worked in atmega328p-au 32 pin MLF package
How to get the best out of this forum
Read Multi-Signal Pulse-Position modulation using Wemos D1 R1
Arduino Uno with Bluetooth HC-05 is not showing the results from sketches
Tips how to get working code from chatGPT
I need help with i2C code
I can't manage to send data (a number) from Arduino to Nextion
What is the lowest power ESP in sleep mode
Oppo a17 a Arduino
Analog input to Simulink
Solid state relay and mosfet triggering using Arduino Mega
Arduino Micro -- windows 10 driver?
Cable harness tester with 3 connectors (<30 test points)
My LED is not working according to the coding
ESP32 Bluetooth Control Motors
Sketch works on Uno, but not on unknown ATmega328 variant
Pca9685 16 channel servo board Questions
Ship style radar display
Squared numbers giving back strange results
Steppermotor left right and stop
4stepmotor with arduino and Accelstepper
Is it possible to use the arduino library in php?
J1939 Message Transmission via MCP2515
Error message : Testing the MATLAB-Arduino USB Connection
Why can't I connect my IR Remote and my oled
Esp32 gets eaten by a monster!
Radio frequency modules reliability
Mount ardunio memory in pc
App syncing for DC motor, and servos
Problem with servo
Need help with wiring
Help with juice dispenser
Smartwatch señal
Python support?
Sending message from cell phone to PN532
Variables not declared in this scope
ST7789P3 2.25" 76x284 TFT on DOIT ESP32 DevKit V1
Ethernet Shield Fixed IP
What board to get for mulitple audio recordings
Library tft 4" ILI9488
ESP8266 mini (01) is always crashing no matter what
Troubleshooting I2C Communication and Data Inconsistencies with SHT85 Sensor in Arduino Project
Help me make stethoscope based on Arduino
Set the default relay turn OFF state into 3 seconds
I need help with arduino ESP8266
nRF24l01 not receiving data struct
ESP32 - MAX485 Modbus RTU communication
Arduino Uno watering system with moisture sensor
PLC ide sketch issue
Oops I'm having trouble posting
Need a help with multiple matrix coding [solved]
EsP32 C3 mini in serial communication not transmitting value
Arduino input lag when building DIY gaming controller — how to reduce delay?
Code not working properly
Item-locator using arduino
Problems with PulseSensor_Playground libraries
Sending data from arduino uno to ai thinker esp32
Sending data from arduino uno to ai thinker esp32
What is SAMD11?
Need Help with IR Remote Model Project
Chevron Safety Signs
Building a cordinate system on robot under 9V
I3G4250D Only Spitting Out Data At Random Times
Math Error, Maybe
Why isn't my IF condition working?
Trabajar 2 Sensores DHT21 en Arduino Nano Esp32
Create plugin issue
LCD Cant Write "O" and "o"
Ili9488 a Arduino mega
ESP32 Partition and chip size
Arduino Nano BLE Transistor Issue
Nhd-0420d3z-nsw-bbw-v3 displaying vertical lines after every character in a sentence
ESP32Servo360 with BLE
TimeTick_Configure
RFID-Relay-need help
Help for control W-24BYJ Stepper motor with Arudino uno
Developing a Land Surveying rover using arduino?
Feedback Voltage not being read by A3
Problems driving 4 motors with L298N and Arduino Mega
Has anyone successfully used the the keyestudio 8266 module?
How to get the best out of this forum
After few minutes i cant connect remotely esp-01 in Arduino uno
Avrdude: ser_open(): can't open device "\\.\COM5": Acceso denegado
Problemas Con Interrupcion Sensor VL53L0X
Controlling LED brightness with MCP2004
How to connect several modules to arduino
Bee scale with Arduino Pro Mini 3.3V, SIM800L, HX711, DHT22, DS3231, ThingSpeak
Clone nano not working
Problem reading analog inputs with nano
Chromebook Serial port not detected
Getting a Compilation error
MPU6050 angle only between 0-90 i want only Z-AXIS should change
Print int value problems u8g2 lib
Problemas con la pantalla usando arduino 2.8 tft spi 240x320 v1.2
Detectar movimiento con un sensor ultrasonico
Can anyone help me fix this for my ICT project?
Arduino mega SMD board
PN532: Problem with wire connection, libaries and sketch
"Blink LED" App fails to start: "error: 'MsgPack' does not name a type"
Communication problem between arduino nano and df player in perf board
Solucion de un problema
Señal pin digital y sensor fotoelectrico
Leds to be turned off immediately when I turn off the switch
Esp 32s servo not working correctly
Interrupciones arduino mega
Very new and making wireless and remote controll stuff
Engine not stopping for Card Scanner
I have problem in uploading. The code is correct but it tells done uploading but not uploaded
Buzzer multasking
Esp32 error the std vector
Steper motor not moving continuasly with rosserial
Esp32 and Gps Neo 6m Firebase
Arduino Leonardo problem
Arduino MKR 1400 GPIO current not enough for relay
Mystery exit status 1, without comment, building from source
One off project builder wanted
Bomba centrifuga con bluetooth
Es posible conectar de manera simultanea un shield de usb y un shield de ethernet en arduino mega ?
Handling of sketches in IDE 2.2.1
Issue lighting up WS2811 strand with Nano 33
Number of Ultrasonic Sensor HC-SR04 Connected
Keypad with Arduino IoT Cloud
Giga Board lost connection to my laptop
Multiple switches with different resistance
How can I make a specific button run a specific loop?
USB powered relay for arduino
How do I create a point system for a flipper game
Proyecto para niños sordos
Variaciones altas cuando utilizo la configuración de 4 Hx711 con pesos grandes, sen 10245 y ESP32
DST with NodeMCU
Solenoid Valves
DIY Colorimiter
Help combining 3 codes
Why adding another comment line causes compilation errors?
ESP8266 Reading Google Spread sheet return Null
Traccar GPS Arduino example error
Help me with my project
Ic l9110, esp32 doit devkit v1
The capacitor on my Arduino overheats
Avrdude: ser_open(): can't set com-state for "\\.\COM6" Failed uploading: uploading error: exit status 1
Programación mini motor
Arduino not recognized
RFID struggling to read tags and zeros not properly saving
Garbled text in Editor output
Voltage For Project
About 18v 3amp DC motor
Would you guys help me to fix this? the output shows "Compilation error: too many initializers for 'Perintah'" thank you
Arduino UNO TX and RX LEDs are dim when ON
Text data to String var
Ps4 controller esp32 rc car
Adafruit Smart RGB Neopixel live colour changes
Mi lcd se apaga a cada rato
ESPAlexa working with ESP8266 but not ESP32
Scroll number from bottom to top or vice versa
Karma is still a Thing!
Esp32 cam no es detectado
Creating Stereo Audio with Arduino Uno
I need help about how to use lcd SPFD5408 with esp32
Hello all, please help me, how to program rfid module PN532?
Arduino Waveshare 7080G Vodafone M2M SIM
SRXL2 library not recognized after manual install
Arduino robot problem
Failed connecting Arduino nano to MP3 player module
Why PCA9685 doesn't work?
Sound board serial to LCD print
Foutmelding: dsp_info
Sending Messages
Advice on database for pet feeder
Best Method for Utilizing On-Board Flash?
How to control a 12V ball valve with Arduino and MOSFETs?
How to access the USB port? Is there a special bootloader for Atmega8 to access the USB port?
Need help with code
Controlling multiple outlets with SSR Relay module and Arduino
Transducer analog input
Fingerprint doesnt work with HC05
Stepper Motor doesn't work
Código para robot que evita obstaculos
Aidé moi / help me
2 Player game with toggle switch on arduino
I sent encrypted command from python code to here using Wifi, but the code here doesn't work with decryption, it doesn't show the original message
Need HELP with ESP8266 Project NodeMCU
Alternative to connect servo motor with arduino uno without male connector
Problema unir codigos
Switching from vacuum actuators to electrical servos
Problem with bluetooth controlled cart
Question On Running Same program on two pins
Wifimanager questions
Error on LCD 12864
Function generator via Arduino code (sawtooth, sine, and square wave)
İyi günler Nrf modül kaç gb veri gönderebilir
Kinetic Facade Prototype (Academics)
Led and push button with sensor
Cambio de pines conexión pantalla OLED
While loop looking at 2 push buttons conditions
Stepper motor at a constant speed of 60 RPMs using the TMC2208 UART
DHT22 Component unknown name
HELP NEEDED! Issues with PIR motion sensor with servo motor s3003
Ayuda programación Arduino Uno
Arduino uno getting power, but not uploading?
Infrared remote controls LED Multicolour is all ffffffff
Using A4/A5 as analog pins parallel with SCL/SDA pins for I2C with HMC5883L
Ayuda con sim800L y ESP32
Can reading too often from a pin burn it out?
Access to the AdvancedWebServer webpage
Sim 808 module power on and send no location cordinations
Arduino + pi hybrid swarm experiment (distributed agent test)
Not getting desired output frim Arduino UNO analog Read
PCF8574 problem - no I2C communication
Code to command 2 stepper motors and a dc motor
Fall detector sensor
Help Needed: 12-Hour RTC Countdown TFT Display and servo
Can an node mcu 32s program a esp 01 ?
Pushbutton controlling brightness of LED strips with Arduino
Issue with Incorrect Readings When Connecting Multiple Sensors to Arduino Giga R1 :
Pls help me button controll
Grove emg sensor
About setComponentText
Solved How to interface rf module 315Mhz with esp01
Serial input value is not readable
How can I make Fade LED using Tpp223 Touch Sensor and Arduino?
How do I use a T-Plug LiPo battery with L298N
Enviar un dato por medio de un pulsador con método post y esp32
Red de recolección de datos (Conexión inalámbrica)
Simple Arduino uno r3 sound sensorkit Chatbot
HELLO, New arduino using esp8266 for P10 LED Display and its not working. here is the code and the result. what do you think is the main cause?
Error:avrdude: ser_open(): can't set com-state for "\\.\COM10"
CAN-BUS READ Problem between UNO&Seeed_Arduino_CAN V2.0
Sending data from mysql via php to arduino
Using nRF24L01 with I2C expansion board
Serial.print( millis() ); resets my Arduino nano
Compre un carro de 4 motores el cual venia con este codigo, no he logrado hacerlo funcionar
EVSE and ev pwm communication
CS5530 with Arduino
Kit NFC PN532 module
Uploaden mislukt: uploadfaut: exitstatus1
Connecting HCM375B-232-68N with arduino
Help with LED strip
Air pump motor not working
DF-Robot URM13 Movement detection mmWave-Sensor
Is the SPIFFS sketch the same as LittleFS ?
2x transparent displays with arduino nano pls help
Did't not found finger print sensor
Compilation error: expected unqualified-id before 'int'
Board capabilities
Fingerprint Scanner (GT-521Fxx) Not Working
Issue with the Serial Monitor
School Project Help - RFID
Servo that points towards object detected by ulstrasonic
My arduino is not uploading any sketches
Display is not showing the correctly
Gibberish display on LCD
No se me actualiza el firmware
Encoder nidec 24h404h070
Pump system for my plants to not die
Alternatives to a Breadboard
Help Arduino Compilation error: expected initializer before '.' token. Can any body help me with this
I am having an error while compiling, what should I do?
Arduino Wifi 1010 keeps disconnecting
Can't I control my dynamic cell with just an Arduino board without a shield?
Design of an automatic PV panel cleaning system with arduino
Need help with connecting a LCD at the UNo Developing board
I Need Help: Connecting SIM808 Module with Arduino Nano
Esta en mantenimiento arduino cloud?
SD Library File Read Write Edit
WiFi Not Working When Arduino nano RP2040 connect is Powered via 5V Adapter
Error: void value not ignored as it ought to be done = radio.read(&Irms, sizeof(float));
Caracteres raros en monitor serie - arduino uno
Como empezar con este problema
Use of GT-U7 GPS
Limite de medicion con el ultrasonico
Arduino Nano - Connection Problem
ESP8266 - COM not found on MAC
Menu en pantalla TFT 3.5
Is it possible to achieve accurate multi-camera start record synchronization across two PCs using arduino?
Merged code doesn't work properly
Want to make a simple specs locator when specs are misplaced for which i don't have any knowledge but someone told me to use arduino with buzzer
Pls help me with my school project, idk anything about programming and about hardware
Is there anything wrong with this code, everything looks fine, just doesn't work
IoT, websocket server disconnected
Please solve this error
How to remove uninstalled libraries
Compilation error: expected ',' or ';' before 'String'
My ESP32 keeps resetting when the motors start
ESP8266 pair with L293D motor driver shield for arduino not working
Looking for someone to write a program for Uno
VISUAL_TFT_Build v 461
Arduino mega overheats
Arduino uno Q, bridge api
ESP 8266 wont initiate my servo sg90
Controlling vibration around encoder motor axis at 10 degree angle
Adding Arduino as device in arduino clod
Why does the 5v output give me 3.62? please
Arduino leonardo bootloader dead
Will Arduino UNO and Arduino ATMEGA 2560 board USB port can be used to upload the compiled sketch into my new atmega2560 chip in custom board
Arduino spilling out result even though it is not connected to sensor
Txt data search on Arduino SD card
Arduino combinacion de motores mas control remoto
Portenta H7: use DAC and ADC simultaneously
Jag vill att min rc-bil ska stanna gradvis. Vad ska man lägga till för att det ska funka? Är det något som inte låter mig lägga till den funktionen?
Contador ascendente y descendente con botón y display 7 segmentos
Understanding the harmfulness of goto statement referring to Edsger Dijkstra's Journal Paper of ACM-1968
ERROR: Expected '}' before 'else'
Automatics braking system using dc motor, arduino uno, ultrasonic sensor and L298n
Receiving data from 3 sensors
Hi I am working on a project that includes a boost converter that is mt3608
Upload only option?
Hi, totally new here and beginner with Arduino. Please assist
Arduino Sensor and Servo motors
Need help with an Error
Peatón semáforo dinámico con multiplexación
ESP32: Servo Motor + DC Motor viaL298N
Arduino Alvik and Chromebook
Void onPhoneNumberChange() not triggering
I would like to build a safe with RC522
Can't upload, exit stat 1
Arduino zero and GDB Server
Arduino coin operated charging station
Patrol robot project
How to fix not in sync (arduino nano)
Expected declaration before '}' token
Procesando la señal de una sonda de Doppler Fetal
Karma is still a Thing!
Ayuda con mi codigo no tengo espacio
Arduino R4 Wifi library
Vending Machine Project, LCD No Work :(
Extracting value from array
Leonardo R3 connection
ERROR CON OLED (ssd1306 oled 128x32) y RELAY
Lora Sx1278 and HC-SR04 interfacing ESP32
Problems with encoder and digital potentiometer. HELP
Communicate with mobile phone using hm-10 as master
Read a scale data via RS232M Mstock
How to protect GPIO from sinking too much current
Couldnt get the PN532 (an NFC/RFID module) working on I2c
Siemens sentron pac3100 modbus
Arduino nano problem,the connected circuit not working
[VMA430] - decoding Trame UBX_NAV output UART1
I can't get the ESP32 microcontroller to simultaneously read an RFID card and display the UID on a TFT screen
ESP32 Item Locator
Read analog (potentiometer) position and output 2 channel pwm for motorcontroller
Building a rc plane
No response on AT commands from HC-05
How to code in this adruino
Even more arduino nano clone failures
Cut ESP-32CAM Wifi antenna
How do , I choose a correct motor
I am arush and i am facing this problem
Timer0 Flag TOV0 reading problem
My PC can't see the arduino UNO R3 usb port
Esp32 Wifi error 254
How to program micro Atmega 64 using Arduino Nano
Synth WIP: Atmega328pb crashes outputting PWM signal into unpowered speaker
Arduino nano error
MEGA + TFT + progmem
Ultrasonic sensor responding when connected to esp12 via usb to ttl converter but not working when connected to power supply
DCC _decoder with min 3 sevo angles
Servo position control using DS18B20 variable temperature
NEMA17 Rotary Encoder Control
I need some help, please
Nano outputs garbage when using analog output
Arduino is not working stuck on loading screen
VL52L1X with Serial om Mega
Arduino uno R3's built in LED slowly turns on when pin 12 is on HIGH
How to apply autotune
DHT sensor connection
Please help me I might fail the year
Photoresistor circuit to switch off motor
Sd libraray on ttgo, esp32 (t8 v1.7.1
Electro magnet control using arudino
Servo doesn't works correctly
Рroblem with transmitting a variable between two Arduino Pro Mini boards via UART
Need help to setup device in Iot Cloud
I want to measure the current for my wind turbine using arduino and ACS758LCB-050B-PFF-T
Como saber las características de mi esp8266e
Hi all help for project using Arduino
Pan, tilt and rotate Camera Rig
I need Help with this Project
Speech recognization with esp32
Şu kod bloğunda şu hatadan kurtulamadım
Need help with arduino microphone, got low sensitivity
Negative trigger/pwm
Mkr1310 not joining chirpstack on RAK7244
Why is MLX90614 found at address 0x7F?
Due friday for school
AC heater temperature control
How to connect three proximity sensors to Arduino uno
ADS 1256 PGA settings
Lcd display doesnt work
3V Arduino Nano Problem
Mpu6050 quaternion
Current transformer + acs712
Request for PCB Schematic Review
Adafruit SH110X and two Displays
Issue in adding ArduImageCapture 1.1 tool
Light bulb is about the only demo that works
Nano Matter help required
If voltage is present apply voltage to different wire
Loading code to a Giga R1
Error code: unqualified id before if
New to Arduino, Project Requires 5 different Sensors – Please Help
Usage of extern key ward with union/structures and arrays
How to post in more helpful ways for beginners
Arpeggiating Synthesizer (Mosquito I)
Controlling servo via ESP8266 D1 MINI module
Arduion编译报错求助,编译不成功
Colour mixing lamp
Relay module is not working
I am getting this error while i connect esp 32 wroom and ov7670 camera. Anyone here can provide me the solution for this?
What to do with GND/COM jumper - 12v pwr supl 8ch relay board, Arduino Uno r4 two DC motors
Invalid header file
I have the same issue; can you help me fix it?
(Neuling) Arduino - Relay mit Münzzähler freischalten!
Tb6612fng and servo doesnt work when i try to control it through esp now
AHT20+ENS160 : ENS160 stuck after 2nd call
How to create a wakeup from deep sleep for multiple pins without delay ?
Tengo un problema con mi arduino nano y servos
Advise for project
Motor Driver (with reverse polarity protection) Not working after reverse connection to 12V battery
Receveiver 433Mhz in mode INTERRUPT
Colntrolling stepper motor with endstop microswitch
Smart Robot Car v4.0(Elegoo kit)
Using of Capacitive Proximity Sensor
Issue with Sharing SPI Pins for MicroSD and LCD/TFT on ESP32 (Wroom ESP32)
All in one esp32 robotic car
Problema actualizando valores termopar
How to get the best out of this forum
[HELP] I2C on ESP32-S2: No Devices Found with PCA Board
NANO AND GPS I am getting and issue
Vesc get data failed to get data
Sim module calling
Please help me if you can :(
Arduino Uno programing help
Lora module SX1278 not getting initialized using Arduino Mega 2560nd Arduino Mega
Variable pressure control
Addition of dc motor
Who can write code?
ESP32-S3 / SDIO and Task
Create a home fully IOT
Help me to find out the coding of this project
UNO Q Bridge Calls Help
BMI323 sensor not detected
Dimer led with eeprom used help me
Spiedometer/Dash tester
Device COM5 is not currently available
ESP32 Mini C. error subiendo sketch ide arduino
Newby question. Posting images to ESP8266 -> Waveshare e-ink
How to connect elm327 with esp32
UNO Q With I2CLCD Display
RFID Works Independently, but Stops Working When Sending Data via LoRa
Exec: "cmd": executable file not found in %PATH% Compilation error: exec: "cmd": executable file not found in %PATH%
Botella que registra el consumo diario de agua mandando notificaciones a una app
FDC1004 Chip does not meassure with STM32
Self balancing and following line robot car
Arduino codes how to operate 4 machines with only one coinslot with 5 screens and 4 buttons that can be used by 4 machines at the same time
I2C Issue with MPU6050 – ACK received, but WHO_AM_I always returns 0x00
Tactile Switch not activating after Press
How to get the best out of this forum
How to get the best out of this forum
Problema Interrupción Timer ESP32
Problem with Starter Kit Project 11
Thought I had a Pow function problem but it was a conditional statement error
Step motor freezing arduino
ESP32 & D1 Mini Not Detecting Any I2C Devices
Help Please- <Deque> not found
RTl8720DN COMPILE errors.. Please Help
MFRC-522 Works With One Library & Not Another
Problem in arduino
Problem in arduino
Neither of my boards seem to be working but I cannot identify why
Pantalla y esp32
Arduino mega keeps on shutting down
How to get the best out of this forum
Sensor Shield V5.0 with servo and DC motor
A0221AU ultrasound distance sensor
Three sensors for one ESP32 Devkit Version 1
Problem nRF24L01 with Arduino
My nema 17 motor isnt working with my a4988 and esp32
Where can I find Obsolete datasheet
Falla en el codigo o en la calibración de un medidor de pH
Deserialize Json Document Sent From Web Socket Client to Web Socket Server
How to get the best out of this forum
Esp 01 wifi car
How to get the best out of this forum
Problem after uploading to waveshare esp32 s3 touch lcd 1 85
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Change LVGL label text in code
TFT_eSPI examples don't run
8 in 1 soil sensor with hex send and receiver
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
How to get the best out of this forum
Memory monitoring uno R4 wifi
Laser turns on during homing and axis movement – GRBL 1.1h + CNC Shield v3
BMP180 Disrupts Arduino-ESP8266 Communication
Someone plz help my project
ESP32C3 Super Mini Wifi Error
Need Help Connecting Tatsuno Sunny XE to Modbus RS-485
A book library in a TFT display using esp32
Disparity in Measured and Calculated Current through IR LED Driven By MOSFET
Arduino Giga Display Shield drawPixel() Not Working
Esp32s3 + rfid error
analogRead portamento effect?
Cant understend how to make it
Data transmitted doesn't match data received for NRF24L01+
Se faire aider par l'IA
Código solo en el que yo pueda hacer mi código
Sensor EMG no funciona – problema con la etapa de adquisición (basado en proyecto de Joel My Lee)
0-10v Converters Constantly Failing
HI ALL I Have Issues on my program I have 1 Stepper Motor Kit Nema 34 8.0Nm Stepper Motor and 2 buttons 2 limit switches
Need help connecting ps4 controller to esp32
How can i communicate between a teensy 4.0 and an esp32?
Humor with artificial ai
Arduino uno obstacle avoiding car not working
Inconsistent sensor values
Title: How to Increase Serial2 RX Buffer Size on Arduino/ESP32 to Receive Large Data
Amp Sound from Attiny85
RC522 not reading cards
ESP32 S3 Devkit C1 Arduino IDE Projects and Showcases
Sound sensor problems
Need assistance for 16*2 LCD Display
Bidirectional wiper motor control using arduino nano
UNO Q: Fail to stop a running App
C:\Users\paul\AppData\Local\Temp\.arduinoIDE-unsaved2026427-21980-hexn6a.99onr\sketch_may27b\sketch_may27b.ino:1:10: fatal error: LiquidCrystal_I2C.h:
Help with relevant Ethernet tutorials or sample code
Nano no carga sketch
Project 8 digital hourglass in the arduino starters kit
Hello, I am working on acquiring raw EEG signals using the MindWave Mobile 2 with Arduino. Although I have the code, I am not confident in the accurac
Robot mower perimeter wire
Help with P5 RGB64x32 Matrix Clock with ESP32
Regarding Video Processing and Displaying at a time on UI
DIY-plotter pen lifting servo does not work
Protocolo mdb vending expendedoras
Forgetfulino - Upload your (compressed) code in the board - IDE 2.x extension
Ground issue dumping ECU EEPROM, 5V Rail Collapse
Code for distance measurement system
Arduino nano every code issue
UNO Q: Performing orchestration on arduino
How to calculate sensor reading average on Arduino?
How to get the best out of this forum
How to get the best out of this forum
Begin maken met arduino
Arduino and ultrasonic sensors
JRKG2 driver from Mega2560
How can i calibrate the following sensors MAX30102, DSB1820 to suit human body vitals ?
Push Button LED Control experiment questions?
Officially ban ChatGPT and AI
Présentation d'un passionné d'Arduino du Maroc
How Do You Organize Larger Arduino Projects as They Grow?
`exit status -1073741819` while compiling for ESP8266
My arduino LCD can't showing text
ReadHolding register by Arduino uno