Skip to main content

Questions tagged [arduino-uno]

The Arduino Uno is the most common of the Arduino boards. It is based on the ATmega328P microcontroller.

2 votes
1 answer
3k views

I'm working on a project in which two Arduinos are to be used. Each Arduino is connected to an RFID reader. The first RFID reader should write an integer value to the tag detected, whereas the second ...
-1 votes
1 answer
78 views

There are other threads about replacing the bootloader on Arduino boards, but the ATTiny88 seems to be rather a different beast. Instead of creating a serial port and sending the compiled code to the ...
0 votes
1 answer
392 views

Since the ESP8266 can self program on Wifi, can we use it to program Arduino too with the binary sent via Wifi? My Arduino is connected with Reset + RX + TX pins and shared power.
1 vote
1 answer
429 views

I want your advice regarding powering up Arduino Uno using AC/DC Adapter to the barrel jack. The first adapter I use couldn't work and the shop which I bought it from said the adapter was short ...
2 votes
1 answer
2k views

I'm working on a project using 2 Arduinos connected to 2 computers to demo Serial to Serial communication. We're using Arduino Uno connected to the computer via Serial and software serial for inter-...
0 votes
0 answers
45 views

I wanted to test my new PIR sensor but it always shows the LED high voltage. Please tell me what to do? code: const int pirPin = 2; // пин pir датчика const int ledPin = 13; // пин диода или ...
0 votes
1 answer
118 views

I have an task for my class where we have to make 2 LEDS blink alternatively using a pushbutton. I've figured out how to do the blinking and alternating but from time to time one of the led would go ...
6 votes
1 answer
2k views

I'm working on a project of Ultrasonic Flow Meter with TDC-GP22 using Arduino UNO. I used the library of leokoppel In my code,the configurations of the registers are copied from the Application Note ...
-2 votes
1 answer
72 views

Problem Description: I'm controlling two NEMA 17 stepper motors with A4988 drivers and an Arduino Uno. I'm experiencing a peculiar issue where one motor runs perfectly smooth during code upload but ...
-2 votes
0 answers
33 views

How to make the gear motor to turn only from 0 degrees to 90 degrees and back to 0 degrees?
-1 votes
2 answers
4k views

I want to program a temperature sensor with a LED using Arduino. the goal is to make a sensor, when the temperature is over than Temperature max, the LED turns off and when the temperature is small ...
9 votes
2 answers
8k views

I use the interrupt function to fill an array with values received from digitalRead(). void setup() { Serial.begin(115200); attachInterrupt(0, test_func, CHANGE); } void test_func() { if (...
3 votes
1 answer
1k views

How can I connect and send data between two Arduinos using ENC28J60 ethernet adapters on both of them? Is there any guide or example code for me to take a look from or any library I can use to achieve ...
0 votes
0 answers
52 views

I am trying to build a simple project to get data from a web server and display it, using an Arduino Uno R3 clone with integrated ESP8266 wifi. What I have so far: The ESP8266 attempts to connect to ...
2 votes
1 answer
862 views

I purchased a IV-18 VFD tube driver module, which came with some example code for an ESP32 board. The driver module has a 20 output MAX6921 serial chip to drive the vacuum tube. I want to use this ...

15 30 50 per page
1
2 3 4 5
544