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.

Filter by
Sorted by
Tagged with
1 vote
0 answers
92 views

I designed PCb for relay Switching using gps signal for that i am using atmaga 328P-AU and Neo 6M but after connecting gps module its not showing long, lat. i also checked power supply in module pin ...
Jay Vadoliya's user avatar
0 votes
2 answers
57 views

#include <Keypad.h> const int ROW_NUM = 4; //four rows const int COLUMN_NUM = 3; //three columns const int PIN_RED = 2; const int PIN_GREEN = 3; const int PIN_BLUE = 4; const int MOTOR_PIN1 = ...
Aled Zurc's user avatar
0 votes
0 answers
187 views

I'm trying to connect sesnor that use RS485 (I'm almost sure that's modbus). The sensor has RX/TX and +/- wires. Do I still need a component between the RX/TX pin from the Arduino UNO and the sensor ...
Dafik's user avatar
  • 9
1 vote
1 answer
71 views

Project 5 of the Arduino Starter Kit book (page 63) involves wiring up a potentiometer to control a servomotor (see diagram). The book also recommends wiring up decoupling capacitors as shown in the ...
Jack M's user avatar
  • 123
1 vote
1 answer
98 views

I'm running a dc motor using esp32 and mosfet by taking readings of IR. Program works fine when used delay() but same program doesn't work when uploaded using millis(). //This uses fixed delay() // ...
Akash Patil's user avatar
1 vote
1 answer
105 views

As a volunteer for Public Invention, I have developed an Atmega328 based design in which I thought I was largely duplicating the Arduino UNO. Unlike the UNO, I did choose a CH340 USB to UART chip as ...
Forrest Erickson's user avatar
1 vote
0 answers
262 views

Arduino UNO R3 My error code: avrdude: ser_open(): can't set com-state for "\.\COM3" An error occurred while uploading the sketch This has been mentioned several times before here in the ...
StanB's user avatar
  • 9
0 votes
1 answer
394 views

I need to recognize a signal from an IR remote, not to use a library for working with IR remotes/receivers. How can when the button is clicked to display its name. I have PIC12F615 microcontroller ...
Good York's user avatar
-1 votes
1 answer
102 views

int trigPin = 10; const int echoPin = 8; int led = 7; const int distance = 200; void setup() { pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); pinMode(led, OUTPUT); } void loop() { ...
user90289's user avatar
-3 votes
1 answer
278 views

I am trying to use SIM7600 MQTT command to publish and subscribe to shiftr.io broker. I have not been able to get pass stage of connecting to broker. I use this AT+CMQTTCONNECT=0,"tcp://instance....
avong's user avatar
  • 5
-1 votes
1 answer
286 views

I have an Arduino that is controlling two 6V DC motors through a L298N motor driver. The motor driver is being powered (from its Vin pin) by a 7.4V external source. I then have the 5V pin from the ...
Johnathon Bulman's user avatar
1 vote
1 answer
137 views

The project I'm working on: Short-Range Coded Visible Light Communication System. Visible Light Communication (VLC) systems use light to transfer data between transmitter and receiver over short-range ...
Hussain's user avatar
  • 29
0 votes
0 answers
73 views

so I have a logic level shifter which is TXS0108E ,I use it to shift the eps32 ouput volatge to 5v to be used with motor driver ,when I test it with multimeter , all the channels on the B side outputs ...
kamal MKA's user avatar
1 vote
1 answer
1k views

I have a program that communicate between a esp8266 and a atmega328 using Serial, the esp8266 will connect to a MQTT server running on local network, and publish/subscribe to some topics. In the ...
J. C. Stark's user avatar
1 vote
2 answers
255 views

I am currently working on an assignment for my embedded systems course, and my professor has asked us to determine the memory allocation technique employed in Arduino. Specifically, I need to identify ...
Noran Hany's user avatar
2 votes
1 answer
304 views

This is a basic question, but I really have tried my best to find a solution on the internet to no avail. I have a fairly normal setup. HC05 module connected to an Arduino. The HC05 is also connected ...
iceninja21's user avatar
1 vote
0 answers
201 views

I am new to LIS3DH and tried to interface it with Arduino Uno. I have made the circuit as follows- LIS3DH : Arduino Uno SCL : SCL (GPIO18) SDA : SDA (GPIO19) 3.3v : 3....
ABD's user avatar
  • 111
0 votes
1 answer
895 views

I'm trying to get an ethernet module with the W5500 chipset to connect to my network on an Arduino Uno, but whatever I do, I always get an incorrect IP address. The module is connected as default SPI, ...
Deekay's user avatar
  • 129
0 votes
1 answer
274 views

I just noticed that my original Arduino UNO on pin 3V3 have 4.98V output. That's odds. That pins should have 3.3V. So I measured the Vout on the voltage regulator LP2985-33DBVR where that pins is ...
tommy's user avatar
  • 29
1 vote
0 answers
76 views

I have been having trouble with the code below not display and possibly not working and or looping. Before making changes to my code I had a problem where the Serial monitor would print up to "...
S_Pun's user avatar
  • 11
1 vote
0 answers
212 views

I am trying to use following code but its not working. Need a help in this regard. #include <SimpleModbusMaster.h> #define baudrate 115200 #define timeout 2000 #define polling 500 #define ...
Ashish kumar's user avatar
1 vote
0 answers
149 views

I need help with an Arduino project. I want to read values from a TCS150 scale using the serial port. The hardware I have is an UNO R3 board and a MAX3232 level converter. I have connected: MAX3232 ...
Konrad Morawiec's user avatar
0 votes
1 answer
676 views

I am using two 28BYJ-48 stepper motors with two motor drivers that they come with. (I don't know the name of them.) Here is my code: /* * Code to control two stepper motors simultaneously using the ...
Gabriel Adams's user avatar
0 votes
3 answers
2k views

I'm working on Arduino Kit book's Project 8: the digital hourglass. I've got the picture and the circuit diagram below. My question is a fundamental one, and I really don't know how others figured it ...
AndrewGreen's user avatar
1 vote
1 answer
198 views

If I disable interrupts (for example noInterrupts or cli) and enable them (interrupts or sei for example) later, would interrupts which would have executed in the window in between fire by the ...
markoj's user avatar
  • 43

1
3 4
5
6 7
163