Skip to content

N3rdix/vacuum_cleaner_garage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Building a smart vacuum robot garage

Table of contents

What you need

  • a vacuum robot of course :-)
  • Electronics
    • an Arduino board with 5V power supply
      • if communication via MQTT is required it should be a LAN/WIFI version
      • otherwise a simple Arduino Uno is sufficient
    • a Servo motor with enough torque (~20kg, depending on the weight of your panel). I used this one.
    • an IR sensor (measures the reflected light). I used a E18-D80NK, like this one.
    • low voltage wires
  • Housing material:
    • wood (i used a poplar plate 500x500x8mm)
    • aluminum T-profiles for hiding cutting edges (here: 20x15mm)
    • aluminum round bar profile (8mm)
    • 2 rawplugs which fit into the round bar profile
    • aluminum square profile (10mm)
    • 3mm threaded bar from servo to door
    • some screws
    • time

Building the garage

Housing

I used a routing machine to fix the base station on the ground, it cannot be moved by chance by the robot:

The sensor it fixed 2 plastic nuts. I wanted to be flexible when positioning the sensor so I made a wider whole:

Closing mechanism

Your kitchen panel can be fixed on the aluminum square profile with some screws. The round bar profile will be plugged into the square profile. Put the rawplugs into the round bar profile upfront, then it can be easily tightened with screws from the outside of the housing.

The servo needs a long enough threaded bar, otherwise it won't open the door wide enough:

Wiring

Unfortunately I don't have a schema for you, but I am sure you know how to connect the wires :-) My setup is the following:

  • IR sensor connected to digital pin 2, GND and 5V
  • servo motor connected to digital pin 9, GND and 5V

Fallback

You should consider to implement a fallback in case you can't move the robot to open the door. I use 2 things to be on the safe side:

  • a simple switch with 2 buttons to open/close the door. This overrules the sensor's state
  • open the door initially at power-on, e.g. after a power outage.

Programming the Arduino

Basic program flow:

  • Initially open the door (calibrate the servo)
  • check if the switch was pressed
  • if yes, open/close the door
  • if not, check the IR sensor
    • if the robot is docked close the door
    • otherwise open the door
see code folder

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published