Are you one of those stack-and-dump enthusiasts who accumulate their junk next to them and throw it all away at once, just to avoid walking back and forth to the trash can? The problem with that is sometimes this junk stack you're carrying gets so high that you can't even see where the foot pedal is to open the lid, let alone the trash lid itself. Even if you could see the lid, you wouldn't want to get your hands dirty right? [Of course, this is a pure exaggeration but you know what they say "Exaggeration (Necessity formerly) is the mother of invention"! ]
Well, you don't have to get your hands dirty, because the red, light-hearted Radar Shield2Go is here for you. Why light-hearted you may ask? Because The second you approach it, it opens up (the trash lid) for you.
Don't believe me? Keep reading to discover how this was achieved using a Hall Switch Shield2Go, XMC2Go, and a Servo Motor with the help of the Arduino IDE. See the magic in action for yourself!
3D Design, Print, and AssemblyNOTE: The trash can used for this project might not be exactly like the ones you have, but the concept is quite similar. Feel free to adjust the 3D models accordingly to match the dimensions of the trash can you have (with e.g. Tinkercad).
We started by examining the trash can to find a potential design to lift the lid. Inside the trash can, it looks like this:
As you can see there is a foot pedal attached to a rod (red circle) that pushes the lid when the pedal goes up (by pushing with your foot on the outer part of the pedal).
The idea is to place a servo motor somewhere in the blue-marked area and let it pull this pedal with the help of a winch add-on. When the pedal gets pulled, the lid gets pushed and opens up the trash lid.
Let's begin with the servo mounting. Here's what it looks like:
TIP: This model takes some time to print (approximately 4-5 hours), so you might want to check out the XMC for Arduino post, the Hall Switch post, and the Radar Shield2Go post in the meantime because you'll need them later on.
Done already?! Print out the second part (Servo Base) which gets attached to the Servo Tower to stabilize it on top of the blue marked plastic rails (shown earlier in the pic):
The next thing is to print out the RadarClip and the RadarHolder, they'll be used later:
In the meantime, you can start with the assembly of the Servo Tower:
NOTE: Assembly videos are also included with the 3D file in the attachments section.
After making sure the servo is in place, the winch add-on was also screwed to the servo motor (onto the rotor itself):
The winch rope is inserted through two dedicated holes in the servo add-on and is secured in place by an M3 screw (which comes with the add-on) that holds the add-on in place, ensuring that it stays firmly fixed.
Now, the Servo Tower is ready to be fastened to the Base printed earlier while aligning the plastic rails (the blue-marked area ) between them:
NOTE: All screws, except for the M3x8mm winch screw, are M2 screws (the ones that come with the MG995 Tower Pro Servo).
After putting everything in place the setup looks like this:
The winch rope was then tied around and through the pedal hole where one end of the metal rod rests. This is actually of benefit because the rod squeezes the rope and ensures that everything is fixed in place.
The Radar Shield2Go (preferably with female headers) is meant to be hot glued inside its parking spot in the Radar Holder. Then Both the clip and the holder are meant to be hot glued together:
and then clipped onto the edge of the trash can (red highlighted edge in the picture above).
HINT: The holes on the side of the holder are intended for the jumper cables to pass through them and into the trash can, between the can itself and the actual trash compartment. This guides the cables down to the Servo Tower, where the breadboard and XMC2Go are positioned. Quiteajourney, right?!
Hardware Setup: Wiring and ArrangementNow, the hard mechanical part is over so let's switch to the electrical part.
Theoretically, the idea is simple:
- Approach the Radar Shield2Go
- The Continuous Servo will turn as needed to open the trash can.
- Keep turning until the Hall Switch (TLE4964-3MS2GO Breakout) detects a magnet on the rod, which is precisely positioned or calibrated to indicate the "Lid is open" state
- Stop the motor and wait for a while or until no more motion is detected.
- Then, turn the motor in the opposite direction to close the lid.
Where the XMC2Go acts as the brain of the project.
To make a long story short, this is the Wiring diagram of the whole project:
Now, as far as the arrangement goes:
- Radar goes into its dedicated 3D part (see3D Printing and Assembly)
- The small Breadboard with the XMC2Go goes inside the trash (it can be attached to the side of the Servo Tower)
- A Power Bank to supply 5V to the XMC2Go also goes inside the trash can (it can be positioned on top of the Servo Tower next to the Servo)
- Servo motor into its dedicated spot (see 3D Printing and Assembly)
- 6V Power Supply somewhere near the Trash Can
- Hot glue the TLE4964-3M Breakout-board inside the Lid Cover that opens and closes the trash lid, with the metal rod passing through (indicated by the red-marked area):
The Radar Settings used were:
- Minimum sensitivity: about 0.2-0.4m detection range (QS2: left potentiometer at left-most position)
- Hold time: about 30s (QS3: right potentiometer about 90° CCW from its right-most position)
NOTE: Check out the Radar Shield2Go article to know how to adjust these settings.
CodeNow that everything is in place. All that is left to do, is to program the logic behind all of the Boards used above to communicate together and work correctly.
The code is located in the attachment section but to clarify some important aspects:
- The Servo used here is the continuous version of the MG995 Tower Pro Servo Motor, meaning it won't stop at a specific angle, it keeps spinning until it's told to stop. This is what the function
analogwrite_ms()
is here for:
/*
@brief ROTATES MOTOR CW OR CCW. TO ROTATE CW USE A PULSE BETWEEN 0.5 - 1.3 ms WITH 0.5 BEING THE FASTEST ROTATION POSSIBLE
TO ROTATE CCW USE A PULSE BETWEEN 1.5 - 2.5 ms WITH 2.5 BEING THE FASTEST ROTATION POSSIBLE
@param ms IS THE PULSE DURATION IN MILLISECONDS
@return TRUE IF EVERYTHING WENT ALRIGHT WITH THE analogWrite() FUNCTION (for error tracking purposes)
*/
analogwrite_ms(float ms);
NOTE: Maximum speeds were used in this project, and also recommended
- This program also uses a
StopWatch.h
library to determine the duration of the Lid closing and if something went wrong with the Hall Switch, the motor should stop after a specific time (EmergencyStop). - The Code is designed to track the previous state and the current state and act accordingly. Mostly any action taken is triggered by this
stateChanged()
function:
/*
@brief To track the state of the PD pin of the Radar S2Go
@param void
@return true if change in state,false if not.
*/
bool stateChanged()
Now the program works this way:
- You start off in the
NO_DIR
(No motion detected) state. As soon as you power on the Radar (because motion is detected) you enter theDEPARTING
state. - From
NO_DIR
toDEPARTING
the lid doesn't have to open, so nothing to do here. - Now from
DEPARTING
you can go toNO_DIR
or stay inDEPARTING
, which in both cases there is nothing to do.
Until here, the lid is closed.
- Or you could go to the
APPROACHING
state, in which the motor should spin to open up the trash lidtillOpen()
while also starting thestopwatch.
- From
APPROACHING
you go straight toDEPARTING
(no other option) and if the time option is not commented out (line 96-107 in the code) then it would wait<waitingTime>
ms for the motor to start spinning again but in the opposite direction (closing
the lid) for the same amount of time it took to open the lid. - If the time option is commented out then the lid will stay open until it enters the
NO_DIR
state (where no motion is detected) where it will close. - unless it's interrupted by something
APPROACHING
(well, technicallyDEPARTING
first thenAPPROACHING
) then the motor will stop spinning and spin in the opposite direction to open up again.
Keep in mind that as long that there is motion and nothing is APPROACHING
then the Radar is in the DEPARTING
state.
Before we say goodbye, first let's say goodbye to dirty hands because it's not gonna be a thing anymore.
As said before, the trash can used here is probably not gonna be the one everyone has but the concept is the same:
- Radar for motion/phase detection
- Servo for opening and closing
- Hall Switch for position detection
- XMC2Go (µC-Board) as the brains
Now the 3D files can also be adjusted or changed completely, but now you know the way.
There you have it! An auto trash can. I know it's fun and everything, but please do not abuse it and start throwing things away, especially plastic, just to see if it works.
DISCLAIMER: The video shown above is for demonstrational purposes. You don't need to actually wave your hand in front of it, you can just approach it by any means even from the side. This is a 60GHz Radar, it will sense when you're approaching!
Stay clean, stay safe, and Goodbye!
Comments
Please log in or sign up to comment.