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