TUTORIAL 6 SIMPLE WATER LEVEL SENSOR CIRCUIT WITH LED DISPLAY AND BUZZER USING ARDUINO UNO

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ต.ค. 2020
  • This video show how to construct a simple water level sensor circuit with LED display for visual monitoring and Buzzer for sound monitoring using Arduino uno module

ความคิดเห็น • 36

  • @roichibi.
    @roichibi. 2 ปีที่แล้ว

    Thank you! Nice video.

  • @marquesto8516
    @marquesto8516 3 ปีที่แล้ว

    nice

  • @aryanbarnwal5645
    @aryanbarnwal5645 2 ปีที่แล้ว +1

    Please share the tinkercad model of this project.
    thank you for this great video

  • @bonekuhobonekuho2658
    @bonekuhobonekuho2658 ปีที่แล้ว +2

    CirKit3, 2 items. Looks like the make/model of the water sensor is Adafruit 4965. Is this correct? Second, I noticed that during your test run the Green LED turned on and stayed on, then Yellow LED came on and stayed on, and then Red came on briefly while the buzzer went on. Then all LEDs went off and then the Red LED and buzzer came back on. I checked your code and noticed the cause. When the water sensor provides a sensor value of =626 and delete the

  • @nazirselimozcan1810
    @nazirselimozcan1810 3 ปีที่แล้ว +1

    Thank u very much.Nice video

    • @CirKit3
      @CirKit3  3 ปีที่แล้ว

      Thank you very much in appreciting my video🙂

  • @rummer181
    @rummer181 2 ปีที่แล้ว

    Can you post a picture of the wiring diagram? Thanks!

  • @nakulrathod2875
    @nakulrathod2875 2 ปีที่แล้ว

    Hello sir I want this program for project

  • @tstut111
    @tstut111 3 ปีที่แล้ว +2

    holy audio blast in the beginning

  • @nakulrathod2875
    @nakulrathod2875 2 ปีที่แล้ว

    Hello sir How u connect Red n black cable in breadboard . I am doing same project but in project led glow but one by one not glow then what is procedure to glow led

    • @CirKit3
      @CirKit3  2 ปีที่แล้ว

      Watch the video start at timeline 1:38
      Check first the LED if defective, if not follow this instructions:
      connect the positive of Green LED at pin 2
      connect the positive Green LED at pin 3
      connect the positive RED LED at pin 4
      all negative connected to a ground side of the breadboard
      and also check the breadboard continuity and layout
      Thank you vey much for watching!

    • @nakulrathod2875
      @nakulrathod2875 2 ปีที่แล้ว

      @@CirKit3 In breadboard Red and Black wire for ground connection how to connect

    • @CirKit3
      @CirKit3  2 ปีที่แล้ว

      @@nakulrathod2875 used a jumper wire to connect black connected to the ground pin of arduino and the positive is on pin2,pin3 and pin4

    • @nakulrathod2875
      @nakulrathod2875 2 ปีที่แล้ว

      @@CirKit3 Now is working properly Thanks you sir ..

  • @daanenmudalli8130
    @daanenmudalli8130 3 ปีที่แล้ว +2

    Why don't you reply to those requesting the code???????

  • @ace_yt2009
    @ace_yt2009 2 ปีที่แล้ว

    Idol san naka conect ung breadboard positive sa arduino board po?

    • @CirKit3
      @CirKit3  2 ปีที่แล้ว

      Wala po connection yung positive di ko nman po ginamit yung sa breadbord, lahat po ng positive is pin 2,3,4,and 5 and also po yung water level directly ko po nilagay sa positive and negative ng arduino. Thanks po!

  • @jerusalemmariellemonchilou8506
    @jerusalemmariellemonchilou8506 2 ปีที่แล้ว

    Hello, does the length of the connecting wires matter? Isa lang po kasi umiilaw sakin. Pls help me know what could be the problem. Thankyouu

    • @CirKit3
      @CirKit3  2 ปีที่แล้ว +1

      check first the LEDs if defective, if not defective check the wiring connection if the +/- pin connected properly, if correct adjust the value for the conditional statement. Thank you very much!

    • @jerusalemmariellemonchilou8506
      @jerusalemmariellemonchilou8506 2 ปีที่แล้ว

      @@CirKit3 thankyou so much po ❤️

  • @content4you563
    @content4you563 ปีที่แล้ว

    Code copy paste??

  • @takudzwakaseke5032
    @takudzwakaseke5032 3 ปีที่แล้ว +1

    Can I have the code

    • @kiranb6741
      @kiranb6741 3 ปีที่แล้ว

      Code for me aswell

  • @FaithRelativo
    @FaithRelativo หลายเดือนก่อน

    Good Day Sir, pwede po ba magpatulong?

    • @CirKit3
      @CirKit3  หลายเดือนก่อน

      regarding saan?

    • @FaithRelativo
      @FaithRelativo หลายเดือนก่อน

      @@CirKit3 about Arduino uno coding sir for a project sir about automatic plant watering systems sir

    • @CirKit3
      @CirKit3  หลายเดือนก่อน

      @@FaithRelativo send mo sa email ko details

  • @CirKit3
    @CirKit3  3 ปีที่แล้ว +8

    const int analogInPin = A0;
    int sensorValue = 0;
    void setup() {
    // declare pin 9 to be an output:
    pinMode(2,OUTPUT);
    pinMode(3,OUTPUT);
    pinMode(4,OUTPUT);
    pinMode(5,OUTPUT);
    Serial.begin(9600);
    }
    // the loop routine runs over and over again forever:
    void loop() {
    sensorValue = analogRead(analogInPin);
    Serial.print("sensor = ");
    Serial.print(sensorValue);
    Serial.print("
    ");
    delay(2);
    if((sensorValue>=100)&&(sensorValue=601)&&(sensorValue=626)&&(sensorValue

  • @sherwinruiz5156
    @sherwinruiz5156 3 ปีที่แล้ว

    codeee idooooll

    • @CirKit3
      @CirKit3  3 ปีที่แล้ว +1

      const int analogInPin = A0;
      int sensorValue = 0;
      void setup() {
      // declare pin 9 to be an output:
      pinMode(2,OUTPUT);
      pinMode(3,OUTPUT);
      pinMode(4,OUTPUT);
      pinMode(5,OUTPUT);
      Serial.begin(9600);
      }
      // the loop routine runs over and over again forever:
      void loop() {
      sensorValue = analogRead(analogInPin);
      Serial.print("sensor = ");
      Serial.print(sensorValue);
      Serial.print("
      ");
      delay(2);
      if((sensorValue>=100)&&(sensorValue=601)&&(sensorValue=626)&&(sensorValue

    • @CirKit3
      @CirKit3  3 ปีที่แล้ว

      Thanks for watching!

    • @yassinsadk9876
      @yassinsadk9876 หลายเดือนก่อน

      ​@@CirKit3❤

  • @Shaheditz_77
    @Shaheditz_77 2 ปีที่แล้ว

    There is a error in a code