Пікірлер
@zorp3456
@zorp3456 4 күн бұрын
@Luogen54
@Luogen54 5 күн бұрын
what happens if I don't have that 12C part of the LCD display? all I have is a 16x2 LCD
@cheezmartian
@cheezmartian 4 күн бұрын
You can use the liquid crystal library without i2c it just uses more pins
@Luogen54
@Luogen54 4 күн бұрын
@@cheezmartian I brute forced it for like 30 minutes and finally got it lol
@malcolmduru1854
@malcolmduru1854 6 күн бұрын
I already have an Arduino Nano v3.0 (Funduino). Can I use it instead of an Arduino Uno?
@arduinointrochannel
@arduinointrochannel 5 күн бұрын
Yes, you can definitely use the Arduino Nano v3.0
@Sovii144
@Sovii144 13 күн бұрын
Sir is this a series circuit?
@arduinointrochannel
@arduinointrochannel 12 күн бұрын
Yes, an Arduino with one LED and a resistor is a series circuit. In this configuration, the current flows from the Arduino's Pin 3, through the LED, through the resistor, and back to the GND pin
@iwayvannesskyles.1626
@iwayvannesskyles.1626 14 күн бұрын
what type of program do you use?
@arduinointrochannel
@arduinointrochannel 13 күн бұрын
I'm using Arduino
@Kokoro-yi5ut
@Kokoro-yi5ut 15 күн бұрын
what is the name of the application that shows the projects in arduino ?
@arduinointrochannel
@arduinointrochannel 15 күн бұрын
It's called Learn Arduino Intro. You can get it here: play.google.com/store/apps/details?id=com.arduinointro.learnarduinointro
@Kokoro-yi5ut
@Kokoro-yi5ut 15 күн бұрын
Thank you very much​@@arduinointrochannel
@Oh-ou4lp
@Oh-ou4lp 16 күн бұрын
cool but what dose it do that a 15$ clock cant in honesty a 15$ has am/fm and alarms so whatthe point of this just to show or is there more to this
@arduinointrochannel
@arduinointrochannel 16 күн бұрын
It's a fun project to learn about real-time clocks and I2C communication. Plus, you can customize or scale it to fit your project needs like an automated gardening system where you can turn on/off grow lights or water pumps at certain times or specific days (using conditional logic), or you can use it to make a log, with a date and time stamp, of anything that is captured by sensors connected to this Arduino setup. Think of this as a foundation of the greater things you can do with creativity and innovation.
@zs_gmbor
@zs_gmbor 18 күн бұрын
Good video
@arduinointrochannel
@arduinointrochannel 17 күн бұрын
Thanks!
@leohamelinck3524
@leohamelinck3524 20 күн бұрын
Thanks for the explanation, very clear! But in Europe (Holland) we use a 24-hour clock. Do you have a solution for that? Greetings Leo
@arduinointrochannel
@arduinointrochannel 19 күн бұрын
Sure! To modify the code to display time in 24-hour format, you can remove the logic for determining AM/PM and adjust the code to directly print the t.hr value as the hour. You can try this: void loop() { Time t = rtc.time(); // Display the time in 24-hour format lcd.setCursor(0, 0); lcd.print("Time "); if (t.hr < 10) lcd.print("0"); // Add leading zero if hour is less than 10 lcd.print(t.hr); lcd.print(":"); if (t.min < 10) lcd.print("0"); // Add leading zero if minutes are less than 10 lcd.print(t.min); lcd.print(":"); if (t.sec < 10) lcd.print("0"); // Add leading zero if seconds are less than 10 lcd.print(t.sec);
@saesa-yw2gx
@saesa-yw2gx 23 күн бұрын
i have a problem with the lcd initialize "POSITIVE wasnt declared in this scope", can you help me sir ?
@arduinointrochannel
@arduinointrochannel 23 күн бұрын
The I2C LCD and Wire libraries may not have been installed, or there could be a conflict with another installed LCD library. Check this article on how to download and install the libraries: www.arduinointro.com/articles/projects/displaying-characters-using-the-i2c-liquid-crystal-display-lcd
@saesa-yw2gx
@saesa-yw2gx 23 күн бұрын
@arduinointrochannel Thank you for your respond then, what's the name of the library you install for this project? , i've already installed lcd 12c built in officially by arduino 1.0.7 isnt that the right library? And what's the name of wire library you use?
@RowdyCaleb
@RowdyCaleb 28 күн бұрын
hi this is great but the led lights wont light up when i scan the card
@arduinointrochannel
@arduinointrochannel 26 күн бұрын
Make sure the LEDs are connected correctly (positive side to a digital pin and negative side to GND). It could also be a broken jumper wire, try to change the jumper wires.
@roncarrier4205
@roncarrier4205 29 күн бұрын
For anybody who is curious, the Arduino is measuring the time the signal sent from the trigger to the time the echo is received in microseconds, i.e. millionths of a second. The ping travels at the speed of sound. If you know how to do dimensional analysis, it's not difficult to figure out yourself. Just don't forget that the sound has to travel the target and back, so you'll need to divide your answer by 2.
@poojabhati366
@poojabhati366 Ай бұрын
What Ohm resistor to use when using a buzzer instead of LED?
@arduinointrochannel
@arduinointrochannel Ай бұрын
A resistor may not be necessary for the buzzer. Take a look at this article: www.arduinointro.com/articles/projects/exploring-piezo-buzzer-integration-with-arduino-a-comprehensive-guide
@GM_DonRossi
@GM_DonRossi Ай бұрын
Do you have code that will work with UNO R4 Wifi board?
@arduinointrochannel
@arduinointrochannel Ай бұрын
This code will work on that board but to add the extra functionality to upload data, you'll have to try the Arduino Cloud IoT, they have tutorials on how to upload sensor data.
@mohammednazimuddin6951
@mohammednazimuddin6951 Ай бұрын
Where is the code
@arduinointrochannel
@arduinointrochannel Ай бұрын
You can find the code here: www.arduinointro.com/articles/projects/how-to-use-a-water-level-sensor-with-arduino-a-step-by-step-guide
@raihansami1509
@raihansami1509 Ай бұрын
are you able to add your own colours
@arduinointrochannel
@arduinointrochannel Ай бұрын
Yes, you can definitely add your own colors. Just adjust the RGB values in your code to create the perfect shade you want.
@EmmanuelStanley-e7l
@EmmanuelStanley-e7l Ай бұрын
I like that liana of stuff
@johnraemanuel86
@johnraemanuel86 Ай бұрын
Is this working in Breadboard Small?
@arduinointrochannel
@arduinointrochannel Ай бұрын
Yes, it should work on any kind of breadboard.
@althares0610
@althares0610 Ай бұрын
can you tell me how to connect the lcd to it?
@arduinointrochannel
@arduinointrochannel Ай бұрын
Sure, check out this article: www.arduinointro.com/articles/projects/complete-beginners-guide-to-using-a-water-level-sensor-with-arduino-and-i2c-lcd
@krishsondagar9871
@krishsondagar9871 Ай бұрын
Can you tell which online simulator you have used to show connection?
@arduinointrochannel
@arduinointrochannel Ай бұрын
I'm using an offline software called Fritzing.
@samuelbeausoleil
@samuelbeausoleil Ай бұрын
Thank you, this video was very helpful! Do you know if these sensors are safe for drinking water?
@arduinointrochannel
@arduinointrochannel Ай бұрын
Thanks! I wouldn't recommend it for drinking water, though. It would be better to use a non-contact sensor to detect water levels such as an ultrasonic sensor.
@Prashant_parghi
@Prashant_parghi Ай бұрын
which parameter is this to know the moisture level, like the numbers will decrease after giving the water to plant so that numbers are in which parameters?
@arduinointrochannel
@arduinointrochannel Ай бұрын
I'm not sure if I understand it correctly but I think it all depends on how moist you want the soil to be, which also depends on the types of plants. You can determine the moisture level by using the analogRead function.
@makeryourself4435
@makeryourself4435 Ай бұрын
I want to learn but I don't speak your language. Help me set the KZbin settings for audio translated into Portuguese.
@arduinointrochannel
@arduinointrochannel Ай бұрын
You can try to use the automatic subtitles: 1. Click the "Subtitles" button (usually marked with the "CC" icon) under the video . 2. Go to settings (gear icon) and select "Subtitles". 3. Choose "Auto-translate" and select the desired language.
@arduinointrochannel
@arduinointrochannel Ай бұрын
or you can try this: support.google.com/youtube/answer/13339776?hl=en
@ernestwamugo7457
@ernestwamugo7457 2 ай бұрын
HOW CAN YOU HELP ME TO PUT 4 BUSH BUTTON IN ONE DISPLAY MODE 1 AND MODE 2 UP TO 5 IN THE SAME DISPLAY ( lcd.setCursor(0, 1);
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
This sounds like an interesting modification to the project, I'll try to make a tutorial vid for this.
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
I just created an article for this. You can check it out here: www.arduinointro.com/articles/projects/how-to-create-an-arduino-menu-system-with-4-pushbuttons-and-an-i2c-lcd
@YuriWechsler
@YuriWechsler 2 ай бұрын
Wehre is the Link? for the LiquidCrystal_V1.2.1
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
Here's the link: www.arduinointro.com/articles/projects/displaying-characters-using-the-i2c-liquid-crystal-display-lcd
@sapphire1623
@sapphire1623 2 ай бұрын
thank you so much for such an easy tutorial!
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
You are welcome!
@Baobaoying
@Baobaoying 2 ай бұрын
How do you decide which resistor to use?
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
We can use Ohm's Law for this to compute for the resistance given the voltage of the digital pin, but a 220- to 330-ohm resistor is safe to use for the LED.
@tambieyong5410
@tambieyong5410 2 ай бұрын
Nice bro🤜
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
Thanks!
@4seez
@4seez 2 ай бұрын
Thanks mate
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
You're welcome.
@lambdagirl356
@lambdagirl356 2 ай бұрын
Thank youuuu❤
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
You're welcome.
@RaviKishore-o9e
@RaviKishore-o9e 2 ай бұрын
What is the budget for this ?
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
Soil moisture sensors are pretty cheap, you can buy one for around $2 US.
@dhairyasheelpatil1420
@dhairyasheelpatil1420 2 ай бұрын
0:54 what is name of this component?
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
That component is the main soil sensor module where the probe would be connected to.
@Th3Dagi93
@Th3Dagi93 Ай бұрын
@@arduinointrochannel is it like a relais?
@arduinointrochannel
@arduinointrochannel Ай бұрын
no, it is not a relay
@whatthehell932
@whatthehell932 2 ай бұрын
Cool daft punk mask Jaden
@VijayNaradaKumarPilla
@VijayNaradaKumarPilla 2 ай бұрын
Thanks
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
No problem
@user_klm7012
@user_klm7012 2 ай бұрын
Jaden idol 😎
@Epic_coding200
@Epic_coding200 3 ай бұрын
U may not use an external plug-down 10k resistor; instead, in the arduino code, write pinMode(pin, INPUT_PULLDOWN); to use arduino's built-in resistor
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
Yes, this will also work.
@NotRMZ
@NotRMZ 3 ай бұрын
Bro can we attach display
@arduinointrochannel
@arduinointrochannel 3 ай бұрын
Sure! I'm planning to create a video on this soon. For now, you can read this article about using a motion sensor with a Liquid Crystal Display: www.arduinointro.com/articles/projects/diy-motion-detection-alarm-system-using-pir-sensor-i2c-lcd-and-piezo-buzzer Just replace the motion sensor with the soil moisture sensor, but you may have to tweak the code a bit.
@chulia9863
@chulia9863 3 ай бұрын
As a beginner, a breakdown like this are really great. Very easy to understand. Great work!
@arduinointrochannel
@arduinointrochannel 3 ай бұрын
Thanks! Glad it was helpful.
@josedias4664
@josedias4664 3 ай бұрын
Ficou bem explicado,ótimo vídeo,parabéns.
@ShriJela
@ShriJela 3 ай бұрын
Y is it saying timeout sir?
@arduinointrochannel
@arduinointrochannel 3 ай бұрын
It seems like there might be an issue with the connection between your Arduino board and your computer. Usually, when this happens, I restart my computer and upload a simple working code like a blinking LED. If it works, then the problem might be with the sensor's wiring. You may also try changing the default programmer found in Tools->Programmer. Try AVR ISP, or Arduino as ISP. There could be a lot of factors going on with this error.
@AlexCaranza-b1l
@AlexCaranza-b1l 3 ай бұрын
What Library did you use?
@arduinointrochannel
@arduinointrochannel 3 ай бұрын
I did not use any library for this project.
@toonsmits2485
@toonsmits2485 3 ай бұрын
Do you also have an arduino design for ultrasonic water sensors for larger bodies of water?
@arduinointrochannel
@arduinointrochannel 3 ай бұрын
I tried using an ultrasonic sensor before to measure water level. You can check this article for the code and circuit: www.arduinointro.com/articles/projects/using-the-hc-sr04-ultrasonic-sensor-to-detect-objects
@sakthi1510s
@sakthi1510s 4 ай бұрын
Can you please tell me how to connect the buzzer to it ? And accordingly what changes in the code has to be done ? Do Comment in detail please
@arduinointrochannel
@arduinointrochannel 3 ай бұрын
First, you need to add the buzzer to your circuit, you may find the circuit here: www.arduinointro.com/articles/projects/exploring-piezo-buzzer-integration-with-arduino-a-comprehensive-guide Next, you can try this code: // Define the pins #define PIEZO_PIN 3 int waterSensorPin = A0; // Water level sensor connected to analog pin A0 int ledPin = 13; // LED connected to digital pin 13 void setup() { // Initialize serial communication at 9600 bits per second Serial.begin(9600); // Initialize the LED pin as an output pinMode(ledPin, OUTPUT); // Set the piezo pin as an output pinMode(PIEZO_PIN, OUTPUT); } void loop() { // Read the input on analog pin 0 int sensorValue = analogRead(waterSensorPin); // Print out the value you read Serial.print("Water Level: "); Serial.println(sensorValue); // Check if the water level is above a threshold if (sensorValue > 300) { // Adjust the threshold as necessary digitalWrite(ledPin, HIGH); // Turn the LED on tone(PIEZO_PIN, 1000); } else { digitalWrite(ledPin, LOW); // Turn the LED off noTone(PIEZO_PIN); } // Wait for a second before taking the next reading delay(1000); } Hope this helps!
@dragonroyal9116
@dragonroyal9116 2 ай бұрын
@@arduinointrochannel Your a good youtuber looking at comments and providing solutions
@arduinointrochannel
@arduinointrochannel 2 ай бұрын
@@dragonroyal9116 hey, thanks!
@niggorr
@niggorr 4 ай бұрын
Ay man You're the greatest
@Alex-f4d2w
@Alex-f4d2w 4 ай бұрын
i have a problem if i touch once the first light blink if i touch again the led 2 and 3 open and the 1 turns off
@arduinointrochannel
@arduinointrochannel 4 ай бұрын
It sounds like there might be a wiring issue or a problem with the LED control circuit. Have you checked the connections or the code controlling the lights? Or it could just be a timing problem. Continue touching the sensor until the next mode appears and then lift your finger immediately. You only have half a second to do this. Or you could set the delay at 1 second.
@Alex-f4d2w
@Alex-f4d2w 4 ай бұрын
@@arduinointrochannel ok
@AB-bo1dd
@AB-bo1dd 4 ай бұрын
Which app to use
@arduinointrochannel
@arduinointrochannel 4 ай бұрын
I'm using the Arduino IDE. You may download it here: www.arduino.cc/en/software
@TechySatvik
@TechySatvik 5 ай бұрын
hi, u need more subs
@ahmadmokhtar8175
@ahmadmokhtar8175 5 ай бұрын
LiquidCrystal_I2C lcd(0x3F, 16, 2);
@narendernautiyal3197
@narendernautiyal3197 5 ай бұрын
nice bro done👌thanks
@arduinointrochannel
@arduinointrochannel 5 ай бұрын
you're welcome!
@RixtronixLAB
@RixtronixLAB 5 ай бұрын
Nice video, thanks :)
@arduinointrochannel
@arduinointrochannel 5 ай бұрын
Glad you liked it!