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