Ultrasonic Water Level Arduino Uno Project(JJ Informative) ultrasonic hc-sr04, oled ssd1306 display

Поділитися
Вставка
  • Опубліковано 22 жов 2024

КОМЕНТАРІ • 76

  • @MYSTERIOMAXXX
    @MYSTERIOMAXXX 3 роки тому +2

    Ultrasonic sensor kharab nhi hoga kya tank me..
    1. By humidity
    2. Or if water reaches it??

  • @ShijilThachilodi
    @ShijilThachilodi 3 роки тому +4

    I have been doing this setup to measure my home's water tank level for few years. but some times the sensor gets corrosion issue, any better ideas to measure water level ?

  • @mushtaqdaavar
    @mushtaqdaavar 3 роки тому +1

    Nice dear

  • @zerotomaster
    @zerotomaster 3 роки тому +2

    Good

  • @antoniomelis6743
    @antoniomelis6743 3 роки тому +1

    If i put it in a closed tank but without letting it touch the water, can it be damaged?

  • @pavansathiyan1859
    @pavansathiyan1859 2 роки тому +1

    hi bro nice project it is very use full ,but can u pls add a buzzer code in the description (the buzzer needs to make sound when tank is full

  • @shreyaghosh3293
    @shreyaghosh3293 3 роки тому +2

    I don't have any led display. Will there be any change??

  • @boopeshkumarprabhakaran
    @boopeshkumarprabhakaran 3 роки тому +1

    Can we use it for two capacitor submersible moter

  • @hasanrao2686
    @hasanrao2686 4 роки тому +1

    Can we use the 16×2 Lcd instead of this if yes than what will be the changes i have to do for that??plz tell me if u can.

    • @JJInformative
      @JJInformative  4 роки тому

      yes and led code replaced by lcd coding

    • @hasanrao2686
      @hasanrao2686 4 роки тому

      Sir how and then what library should i download?

    • @hasanrao2686
      @hasanrao2686 4 роки тому

      Sir i am doing my first project on this and i am very new in this work with small knowledge of coding and aurdino plz guide me in a way that i can understand

  • @rizwanmehmood2984
    @rizwanmehmood2984 4 роки тому +2

    bro. can we put the senor in underground water tanky & hang the module at 1st floor ( need around 40-45ft wire)

    • @JJInformative
      @JJInformative  4 роки тому +1

      nope it is for small tank only big tank need big tank monitoring system

    • @rizwanmehmood2984
      @rizwanmehmood2984 4 роки тому +1

      @@JJInformative bro. my underground tank size is almost 8-9 ft deep. then which sensor will work ?

    • @JJInformative
      @JJInformative  4 роки тому +1

      @@rizwanmehmood2984 ultrasonic can be used (Measuring range 2 - 400 cm)

  • @nagamanihegde9609
    @nagamanihegde9609 3 роки тому +1

    can we do this using attiny85..?

  • @ZubairKhan-qy2yb
    @ZubairKhan-qy2yb 4 роки тому +1

    Amazing video Junaid bhai I like it

  • @ultraali453
    @ultraali453 2 роки тому +1

    Great Bhai!Thank you for making this video

  • @nispam16
    @nispam16 2 роки тому +1

    Sir ..my ultrasonic sensor give 1% water level in display if i full or clean the water of the tank.it does not change...how can solve this?

    • @JJInformative
      @JJInformative  2 роки тому

      Sensor problem or might be connection problem

  • @pks_prayash
    @pks_prayash 2 роки тому +1

    It's showing an error compiling for board Arduino una

  • @saieshpatil5158
    @saieshpatil5158 4 роки тому +1

    Buzzer add krna hoga tho konss pin pe add krenge an uska coding konse part pe likhege

    • @JJInformative
      @JJInformative  4 роки тому

      code main loop ma last ma ekk loop banana ho ga jis ma app buzzer ko on karo ga according to water level tank

  • @filmyzone6640
    @filmyzone6640 Рік тому +1

    Cant open the code. Pls help me

  • @mistrumer3375
    @mistrumer3375 2 роки тому +1

    Sir i want to buy this completely project....

    • @JJInformative
      @JJInformative  2 роки тому

      It is not in product form right now so do you need to install it some where ?

  • @aldrindurias9997
    @aldrindurias9997 4 роки тому +1

    Can 7segment be used instead of the LCD to output water level?

  • @irxlanmughal3179
    @irxlanmughal3179 4 роки тому +2

    Really a nice project brother....you rock..
    Brother please tell me one thing that in code where i can change the water level height..my water tank is 5 foot ..so where i can change the height of tank brother

    • @JJInformative
      @JJInformative  4 роки тому

      check the calculating distance section
      you have to work a little about it so i hope you can do it but if you still have any problem i will guide you good luck

    • @irxlanmughal3179
      @irxlanmughal3179 4 роки тому +1

      Brother tell me what i have done in calculating distance section I don't know brother please tell me..

    • @irxlanmughal3179
      @irxlanmughal3179 4 роки тому

      Brother please tell me what work i have to done in the calculation section..can you please write a code here please

    • @JJInformative
      @JJInformative  4 роки тому

      @@irxlanmughal3179 h = t / 58;

      h = h - 6 ; // offset correction
      ///////////////**** error setting
      h = 20 - h; // water height, 0 - 20 cm
      //////********* tank height in cm

      hp = 5 * h; // distance in %, 0-100 % ///////*****factor to make value in percentage
      ------------------------------------------------------------
      tank height in your case is 153cm which is equal 5 foot
      and factor will be 100/153 aprox 0.66
      so,
      h = h - 6 ; // offset correction
      ///////////////**** error setting
      h = 153 - h; // water height, 0 - 153 cm
      //////********* tank height in cm

      hp = 0.66 * h; // distance in %, 0-100 % ///////*****factor to make value in percentage
      after that if you still feel result is not perfect then change offset correction value 5.4.3.2....... until you feel its perfect

    • @irxlanmughal3179
      @irxlanmughal3179 4 роки тому +1

      Let me check..you are really very helpful brother...may Allah bless you..and give you more success

  • @siddhikakalokhe3317
    @siddhikakalokhe3317 2 роки тому +2

    Code is not available please make it available

  • @muhammadamanaslam0037
    @muhammadamanaslam0037 3 роки тому +1

    Sir meri oled ssd1306 par VIN ki jagah VCC likha hai toh kya VCC koh bhi 3V par lagao aur kya woh kaam karegi?

  • @pookoye
    @pookoye 2 роки тому +1

    How to add a push button to control manual & auto mode?

  • @varunaggarwal1510
    @varunaggarwal1510 2 роки тому +1

    Sensor pr rust lg rha hai tank mei lgane se.. fir glt reading dene lgta hai

  • @worldinformationanythingin6588
    @worldinformationanythingin6588 3 роки тому +1

    Sir price Kaya hy

  • @saieshpatil5158
    @saieshpatil5158 3 роки тому +1

    h =t/58 what is the logic for calculation part for this project

  • @arupmallik3070
    @arupmallik3070 3 роки тому +4

    How to scale the level (% full) for a bigger tank?

  • @x-6790
    @x-6790 4 роки тому +1

    Nice video.background music name pls.?

    • @JJInformative
      @JJInformative  4 роки тому +1

      Lioness (Instrumental) - DayFox [Vlog No Copyright Music]

  • @aravindeswar4089
    @aravindeswar4089 3 роки тому +2

    How to modify code for 16 *2 lcd ?

  • @saieshpatil5158
    @saieshpatil5158 3 роки тому +1

    Can u explain the calculation part

  • @supriyainkollu31
    @supriyainkollu31 3 роки тому +1

    Sir code is not visible

  • @umerkhan8297
    @umerkhan8297 4 роки тому +1

    how we will make connections for 16 2 lcd display?

  • @saieshpatil5158
    @saieshpatil5158 4 роки тому +1

    Do we need to add sensor module file also

  • @exit2703
    @exit2703 4 роки тому +1

    I use lcd 16*2 Where do I need to edit the code?

    • @JJInformative
      @JJInformative  4 роки тому

      yes you need to edit the code and replace the display coding with lcd16x2 coding

  • @irxlanmughal3179
    @irxlanmughal3179 4 роки тому +1

    Brother i was done the project but the issue is that when i enter the 5 foot tank distance all the leds start blinking

  • @umerkhan8297
    @umerkhan8297 4 роки тому +1

    Kindly ap coding samja sakta h?

  • @RAJSHARMA-wr6go
    @RAJSHARMA-wr6go 4 роки тому +1

    Aap ka no kya h sir

  • @filmyzone6640
    @filmyzone6640 Рік тому +1

    Cant open the code. Pls help me