SparkLabz
SparkLabz
  • 3
  • 66 914
How to make a Smart Rubbish Bin with Arduino
In this video I demonstrate how to make a motion activated smart rubbish bin / trashcan / dustbin with an Arduino uno, HC-SR04 ultrasonic sensor and a servo motor.
#diy #arduino #project #smartgadgets #smart #electronics #robotics #tutorial #servo #sensor #ultrasonic
How to make arduino controlled bin? How to use servo or ultrasonic sensor with arduino? Arduino controlled bin tutorial? This video has you covered.
มุมมอง: 9 798

วีดีโอ

How to make a Power Bank the EASY way!
มุมมอง 4.3Kปีที่แล้ว
In this tutorial I demonstrate how to make your own power bank using a $5 PCB from Aliexpress and some 18650 batteries. The perks of this DIY project include: - QC3.0 fast charging - USB C charging with power delivery - Capacity can be customised - By recycling old 18650s you can save money and help the environment! Aliexpress PCB link (IP5328P): tinyurl.com/aeip5328p 3D Enclosure link (thanks ...
How to Repair Ryobi 18V Battery With New or Salvaged 18650 Cells!
มุมมอง 53K2 ปีที่แล้ว
Is your Ryobi battery not charging? In this video I demonstrate the process of repairing a faulty 18V Ryobi battery pack with salvaged 18650 cells. You can follow the steps shown in the video to replace the cells within your faulty battery pack. This can save you a lot of money if you can source the 18650 batteries at a decent price. Moreover, you can increase the capacity of your Ryobi 18V bat...

ความคิดเห็น

  • @VX3800
    @VX3800 4 วันที่ผ่านมา

    That’s funny, I’ve just decided a few hours ago I was going to fix a battery of mine which is the exact same battery. Must be a common thing with the 1.5ah batts, because the 4ah batt of the same age is still good. They’re about 12 years old. I just ordered Sony xtc-6 cells for 10 bucks each.

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

    I'd like to know how you repaired the leads attaching them back to the batteries once in place. Why did you not show that part? They were spot welded before. Did you just solder them back on?

    • @jbmotorsportsusa
      @jbmotorsportsusa 9 วันที่ผ่านมา

      Since no one replied yet I will. What he used, and really the only way, is a spot welder. You can find them inexpensive around 50 bucks and then you have to cut and bend the strips out of a roll. I tried to reuse mine but the metal is too thick for my hobby level spot welder. I did try to solder before getting this tool but it just doesn't work. The amount of heat needed feels.....unsafe lol. This is so much easier to do and once I had the tool I find myself repairing all types of battery powered things. Even making my own packs for things

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

    Hello friend, congratulations on the video, I think you are a very knowledgeable person. I have a 1.5 amp Ryobi battery. I already changed the new cells and reset the card but it still gives meñ The LEDs do not stop flashing when you press the battery button and the charger does not recognize the battery, it indicates an error and on the terminals that make contact with the drill there is no power but the package

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

    Brilliant! I love that your daughter helped too : ) I watched another video of a bin done , but they had the stuff wired inside the bin- this is much better : )

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

    Can you not just add the new cells in parallel ?? I am planning to just add the extra cells to the existing cells in parallel. Can't find a video, is it possible ?? I would be keeping the same BMS.

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

    How to make a Power Bank the expensive way! £135 for solder iron! £158 for spot welder! ...when I can buy a 27000Ah power bank for £18 on Amazon. Also who pays £135 for a solder iron when you can get really good ones for £60.

  • @andradedanangeloc.145
    @andradedanangeloc.145 4 หลายเดือนก่อน

    fygfl

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

    I have replaced all the cells (10 of them) and it is charging as it should and i get all 4Ah out of it, but if i don't use it, it will discharge itself after two weeks. Does anyone know what could be wrong with my Ryobi battery? If i use a thermal camera i can see a double diode get warm and one resistor and i believe this is discharging the battery, but why? Any tips?

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

    This is rubbish. AHA

  • @Mondaypraice-wm8ox
    @Mondaypraice-wm8ox 6 หลายเดือนก่อน

    Which IC can I use

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

    why is the servo motors red wire and ultrasonic sensor vcc conected to the same place in the arduino 5v??how am i supposed to connect ?,also can u please show the wiring part more clearly?,ty

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

    What size and kind of torx screw did you use? I can't find the right torx for it. I'm referring to the screws inside the battery holder

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

    Hello!, can you list the materials needed for this project?, like what type of wires do I need?

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

    Step one of the EASY way: pull out your desktop spot welding rig...

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

      😂. you’ll have it done in a jiffy. lol

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

    Can you help me in programming.....can you send me the program of this video

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

      /********* SparkLabz - Motion activated bin *********/ #include <Servo.h> #define TRIG 10 #define ECHO 9 #define SERVO A1 // Ultrasonic sensor variables long duration; float distance; // Servo variables Servo myServo; void setup() { Serial.begin(115200); // Start serial communication pinMode(TRIG, OUTPUT); // Set trigger pin as an Output pinMode(ECHO, INPUT); // Set echo pin as an Input myServo.attach(SERVO); // Attach servo pin } void loop() { // Clear trigger pin digitalWrite(TRIG, LOW); delayMicroseconds(5); // Set triggerPin to HIGH for 10uS digitalWrite(TRIG, HIGH); delayMicroseconds(10); digitalWrite(TRIG, LOW); // Read echoPin and get sound wave travel time in microseconds duration = pulseIn(ECHO, HIGH); // Calculate distance distance = (duration/2.0)/29.0; // Prints distance to Serial Monitor Serial.print("Distance (cm): "); Serial.println(distance); if (distance < 50) { // If something is closer than 50cm, open the bin myServo.write(180); delay(5000); } else { myServo.write(0); delay(15); } delay(100); }

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

    I eish u spoke slower and do a closer view and keep your fingers out of the way so i can copy down the details of the batteries u showed. Thanks 4 video I'm a Novice to doing this.

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

    Could you use 21700 cells in the old case will there be slight gaps in the case?

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

      I don’t think they’d fit. If you did find a way to fit them, the other thing to check would be if the 21700s are lithium ion or LiFePO4 as different chemistries have different nominal voltages. The Ryobi ONE+ BMS is designed for lithium ion cells.

    • @user-wp6lh7rp2v
      @user-wp6lh7rp2v หลายเดือนก่อน

      No to thick

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

    finally!!! found one! thank you for this!

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

      Thanks for watching!

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

    I have Panasonic CGR18650CG as replacements. Have you used these before?

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

      Hi there, I had a look at the datasheet, looks like the Panasonic CGR18650CG can only discharge at about 4A, which is not high enough for power tools. I highly recommend using 18650 batteries with atleast 15A discharge rate.

  • @GlenDoer-gq1rs
    @GlenDoer-gq1rs 10 หลายเดือนก่อน

    Any one know who sells BMS?

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

      You can find Ryobi ONE+ compatible BMS board on ebay or aliexpress and they will get the job done but are not original. If the cells are faulty and BMS is working in a Ryobi battery pack, you can use that.

    • @GlenDoer-gq1rs
      @GlenDoer-gq1rs 10 หลายเดือนก่อน

      Thanks seem more are getting in to repairs..trying to find a working spot welder..

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

    Hi, your video mentions that you'll pin the code in the comments, but I can see it. Are you able to provide a link?

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

      /********* SparkLabz - Motion activated bin *********/ #include <Servo.h> #define TRIG 10 #define ECHO 9 #define SERVO A1 // Ultrasonic sensor variables long duration; float distance; // Servo variables Servo myServo; void setup() { Serial.begin(115200); // Start serial communication pinMode(TRIG, OUTPUT); // Set trigger pin as an Output pinMode(ECHO, INPUT); // Set echo pin as an Input myServo.attach(SERVO); // Attach servo pin } void loop() { // Clear trigger pin digitalWrite(TRIG, LOW); delayMicroseconds(5); // Set triggerPin to HIGH for 10uS digitalWrite(TRIG, HIGH); delayMicroseconds(10); digitalWrite(TRIG, LOW); // Read echoPin and get sound wave travel time in microseconds duration = pulseIn(ECHO, HIGH); // Calculate distance distance = (duration/2.0)/29.0; // Prints distance to Serial Monitor Serial.print("Distance (cm): "); Serial.println(distance); if (distance < 50) { // If something is closer than 50cm, open the bin myServo.write(180); delay(5000); } else { myServo.write(0); delay(15); } delay(100); }

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

      @@SparkLabz Ta very much.

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

      @@SparkLabz

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

    you forgot to mention the part where you throw the dead batteries into a lake

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

    Not worth fixing, replacement batteries are too expensive.

    • @gd.ritter
      @gd.ritter 4 หลายเดือนก่อน

      18650s are only a few dollars each for quality ones. Way cheaper to rebuild like this than buying all new

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

      eve25 cells go one sale at the 18650 battery store for $2 a cell.

  • @GlenDoer-gq1rs
    @GlenDoer-gq1rs 11 หลายเดือนก่อน

    Now Ryboi some come with 4 screws on bottom and you can remover the side..if you are buy check it has screws,

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

    What if i use muRata Vtc4 30A 2100mAh? Will the amps be too much?

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

      Ha. That's is what I'm wondering too.. Hookup--no?

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

      that will work great, 30A is plenty of discharge current!

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

    Great video, thanks

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

      Glad you liked it! Thanks for watching!

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

    Doesn’t have to be a spot welder or will a regular welder work? A spot welder is just as expensive as a new battery at over $40 even for a cheap one.

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

      No, it has to be a spot welder as regular welder would overheat the battery and probably cause fire!

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

    You don't have to match capacity when its just a 1S pack

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

      Because the board steps up the voltage as required by device (5V, 9V or 12V), 1S is sufficient. For capacity, you add more cells in parallel.

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

      @@SparkLabz no, you don't have to match cell capacity when putting cells in parallel. Especially when you're not drawing many amps.

  • @charlesr.beasley6222
    @charlesr.beasley6222 ปีที่แล้ว

    Those aren't the old ryobi batteries. The old ones have a black body

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

      Wrong. May depend on the model of the battery pack. I have this model and the cells are green, exactly the same as in this video.

    • @charlesr.beasley6222
      @charlesr.beasley6222 11 หลายเดือนก่อน

      @rogerwilco5187 the original batteries were all, black! The tool bodies were originally black and blue "before" they changed to the green color they are now. I have several tools of that era.

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

      @@charlesr.beasley6222 Oh, I misunderstood. I thought that you meant the cells that were already in there weren't the originals, but you were referring to his remark about it being an old battery. It didn't occur to me that you'd be referring to what are long obsolete batteries when the video is obviously about the ONE+ batteries.

    • @charlesr.beasley6222
      @charlesr.beasley6222 11 หลายเดือนก่อน

      @rogerwilco5187 the black batteries were referred and labeled ONE+ before they were green, yellow labeling.

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

      Depending on the age of the battery pack, you will find different cells within. But as long as it uses 18650 batteries inside, you can follow my method.

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

    How many battery i can connect in this board Please reply

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

      Hi there, you can put as many cells as you like. Make sure they’re in parallel configuration as showed in the video. Towards the end of the video you can see the 3D print design. I believe you can do 6 batteries using the template. Or you can edit the template to fit more batteries. Thanks for watching!

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

    Looks great… wondering about the model/capacity of the spot welder …

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

      Thanks for watching! Here's a link to the spot welder (affiliated) amzn.to/46mPUQe

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

    Thanks for the video, but you should really use the safety glasses your spoke about . 😄

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

      Thanks for watching and well spotted!

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

    What brand and model cells were in there before you replaced them?

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

      Thanks for watching! In this case, Samsung INR18650-15M. But the table in this reddit post might be helpful for your particular 18V battery Ah rating/year and place of manufacture: www.reddit.com/r/ryobi/comments/oxn53g/psa_ryobi_is_using_chinese_18650_cells_in_most_of/

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

    Great project and i'm all about being green and re-using. But just a head's up- right now is Ryobi Days and you can get 4 4ah batteries for $100. $25 each. I believe the newer batteries all have Chinese cells now but I've also heard they are still of decent quality.

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

      Thanks for watching, sounds like a good deal for $25 per 4Ah battery. Are these original Ryobi batteries?

    • @VX3800
      @VX3800 4 วันที่ผ่านมา

      Was that USD?

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

    Does anyone else see a pattern with which cells fail in these batteries? I see certain cells in a particular position failing. The cells in my batteries are Samsung, which are considered good cells, by many.

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

      Interesting, I didn't take note of this before. Perhaps those cells go out of balance over time, which happens across many cycles but could also happen early if the BMS is faulty.

    • @test-193
      @test-193 ปีที่แล้ว

      I've rebuilt many of these Ryobi batteries. I haven't seen any particular pattern of failure. What did you observe???

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

      @@test-193 someone over on another forum said that Ryobi's design with their BMS had it burning out/failing much sooner than other big tool companies. They seemed to be saying that the BMS fails before the batteries ever run out in a lot of cases. Have you seen this?

  • @ПавелИзмайлов-э7н
    @ПавелИзмайлов-э7н ปีที่แล้ว

    Greetings friend. Please tell me. The third LED on the accumulator blinks.What's the breakdown?

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

      Haven't encountered this before. Potentially a faulty BMS. Have you measured the individual cell voltages?

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

    Thx. As a novice this helped me determine my pack wasn't worth fixing.

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

      Thanks for watching. Yeah, it's a matter of finding suitable 18650s at a good price.

  • @test-193
    @test-193 ปีที่แล้ว

    I’ve done 16 of these batteries. I agree that the Samsung 25R is the best way to go. The end result is better than 100%. It’s 166% of a new Ryobi battery. (About 46 Watthours instead of 27Wh) Don’t be tempted to use higher capacity cells (mAh) unless they are specifically designed for high current applications. For example : a 3200mAh cell seems great until you discover its max current delivery is only 5 Amps. Find cells that can deliver 20Amps continuously!

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

      Thanks for watching! Yes, getting batteries rated for high discharge is essential! From not only performance but also safety. Thanks for sharing your thoughts.

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

      What cells are originally in this battery before upgrading them?

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

      What size and kind of torx screw did you use? I can't find the right torx for it. I'm referring to the screws inside the battery holder

    • @VX3800
      @VX3800 4 วันที่ผ่านมา

      I just went with Sony xtc6. 3Ah, 30A discharge

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

    I might be doing the very same soon. I'll be sure to link this video when I do.

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

      All the best and thanks for watching!

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

    Do you know if there's any difference in the BMS for the 1P and the 2P batteries? Also do they manage the output?

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

      Hi there, thanks for watching! The main difference I would expect is that the charge time would be doubled if you go from 1P to 2P. The BMS should still balance the voltages all the same. Output wise, it would cutoff once the pack voltage gets too low (not sure what the cutoff voltage is). Were you hoping to increase the runtime of the battery pack by adding extra set of cells in parallel? That should work, but you'll need an enclosure that fits the extra cells. If you do have say a 4Ah enclosure but a BMS from a 1.5Ah pack, it should be fine to use the 1.5Ah BMS for a 2P configuration to be housed in the 4Ah enclosure. Hope that helps!

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

    Excellent tutorial

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

      Thanks for watching!

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

    Link to spot welder?

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

      Hey there, thanks for watching! The spot welder is the Sequre SQ-SW2 - here's a link to the spot welder (affiliated) amzn.to/46mPUQe

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

    Simple, short and straight to the point. Thanks for sharing. Hope to see more! :)

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

      Thanks for watching!

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

    Simple explanation thank you...

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

      Glad it was helpful! Thanks for watching :)