This is a working 5-story elevator. It is 3 feet tall. We put a lot of work into this.
Let’s cut to the chase … here’s how it works!
Quick links:
- Code
- Wiring diagram (coming soon)
We’ve been playing with Arduino and embedded processing/IoT for a couple of years now, but most projects we have done (and most we have seen) are pretty simple. We’ve been looking for something “real” to do for a long time.
This summer, I went to an awesome summer camp, Project Ember. It is in the San Francisco Bay Area and it is awesome! Kids design and build large wood structures with power tools. Once I knew I could do that, I wanted to combine the physical building with Arduino and this is the outcome!
ApproachThe hardest part of figuring this out was the motor and floor detection technique. A real elevator probably uses a huge A/C motor with sensors at each floor location. We certainly could use this approach with a smaller-scale but putting sensors at each floor is a lot of wiring, and we would have concerns about sensitivity and alignment, etc. On the other hand, a stepper motor can be positioned precisely … but we would have to know exactly where we are and how far we have to go to do that.
Fortunately, we have done something similar, in our earlier “fancy calendar” project. There, we had figured out how to use stepper motors and more interestingly, to save their positions in non-volatile memory (EEPROM on the Arduino). So we’ll use the same approach here. This way we don’t need any position sensors at all, we’ll just count on our ability to count the number of steps that we move our stepper motor.
The other design concern was with the elevator call buttons. They need to be lit momentary contact switches, but the lights need to be controllable independently from the button. We found some suitable ones on eBay.
MaterialsButtons with separate lights (We bought from eBay, they should look like:
- An Arduino Mega2560 – we chose this because it had more GPIO pins for all the bells and whistles in the project. Buy Official – you may be able to get an imitation/compatible cheaper.
- An 8×8 LED matrix to show arrows Buy (Amazon)
- A seven-segment display to show the floor numbers Buy (SparkFun)
- A stepper motor and driver board to move the car Buy 5-pack (Elegoo) Note: you only use one, but you may need more. And you can reuse the box they come in. 🙂
- A Mega2560 protoboard, to connect our wires Buy (BangGood) We desoldered the header on top, you don’t have to.
- Screw terminals (10×2) Buy (frys.com)You will need 4
- Thread spool
You can find all of the materials below at your local Home Depot or other home improvement store:
- Fiberboard and 3/4 sq in moulding for the elevator and car.
- Aluminum angle bracket to hold the motor
- Assorted screws
- Hose to act as bushing inside spool
- String (we used heavy-duty nylon kite string)
We made the shaft and car out of fiberboard and moulding to reinforce the corners.
We started with the elevator shaft. We cut 3 pieces of fiberboard to 36″x8″ for the sides and rear (the front is open). Then using 4 pieces of 3/4″ square moulding, 36″ long, we screwed the fiberboard together to make a vertical shaft. Square pieces of fiberboard on the top and bottom holds everything square.
The elevator car is next. It uses the same sort of construction, with fiberboard walls, ceiling, and floors, and pine moulding supports. It is almost the full width of the shaft, but rides between the pine front and back (so it’s wider than it is deep). We attached an eye hook to the top of the car, so that it hangs from a string.
Make sure not to put a bottom on your shaft too early, because you need to be able to get the car in and out! Once testing is complete, you can add the bottom.
The motor sits on top of the elevator. We attached a regular wood spool (from sewing thread) to the shaft on the motor. This is a bit tricky. The motor shaft has a flat edge but of course the hole in the spool is round. So we drilled and tapped out a hole in the spool, and put a screw though to hold against the flat edge of the motor shaft. Also, the hole in the spool is larger than the motor shaft. To act as a bushing to take up the space, we used a very short piece of appropriately sized rubber hose.
Then we mounted the motor to a piece of angle aluminum and screwed that to the top of the shaft. To support the other side of the spool, we put a screw through a second piece of angle aluminum. This makes it so that the weight of the elevator won’t pull the spool off of the motor shaft, it will stay level.
We used more fiberboard to make the button panels. On the left, we used a board the height of the shaft for the call buttons. We used alternating red and green buttons. Red for down, green for up. The top floor has only a red and the bottom has only a green. Our ”in elevator” panel is on the right. We cut holes for the LED matrix and seven-segment display in addition to the 5 holes for the buttons.
We mounted 4 screwboxes. Two on the call panel, and two on the side next to the “inside-“elevator panel.
WiringThe wiring is tricky because there is a lot of it! We chose to use an Arduino Mega prototyping shield, partly because we already had one :-). But the real motivation was that with so many wires, we were concerned that something would inevitably become disconnected if we just used the standard Arduino pin connections. With the prototyping shield, we could solder wires directly and avoid that risk. In addition, it gave us a convenient place to put things like resistors, which are necessary for our 7-segment display.
That said, we didn’t want all of these different panels hardwired together, because if we made a mistake, it would be very hard to fix. So every wire has some sort of removable end on it. We used screw blocks between the switch panels and the Arduino, and for the 7-segment and LED matrix, one end of the wire are still quick-disconnect pins.
For the button panels, we made our own wiring harnesses, using crimp-on female spade connectors which fit perfectly onto the button terminals. Because each button needed two grounds (one for the button and a separate one for the light), there would have been a LOT of ground wires if we ran them all to the Arduino. So instead we daisy-chained them all together with a nice custom wiring harness. The signal pins (one for the switch and one for the light on each button) are all separate, running to the screw blocks.
Finally, the screw blocks gave us another advantage — we used solid-core wire to solder to the prototyping shield, but we used stranded wire for the crimp-on connectors to the backs of the buttons. The screw blocks gave us a place to switch from one to the other without soldering.
ProgrammingWe had many revisions of code, but here is the current version. The most complicated part of the software is the logic to figure out where the elevator car should go. If it’s on floor 2, someone inside wants to go to 3, someone wants to go down from 4 and up from 1 … where do you go first?
The other complicated part is that the way that the stepper motor library normally works is that during the time that the motor is moving, nothing is calling the Arduino “loop()” function. Yet, it should work for someone to press a button while the elevator is in transit. So you can’t go all the way to the destination in a single step — you need to move a bit at a time, checking for button presses (and possibly changes in destination) along the way.
You can download our Arduino sketch here.
To upload the code:
You will need to download these libraries:
Upload the code:
- Choose the right board: See this image
- Choose the port: Similar, but you go to “Port”. On MacOS, it will be something like /dev/cu.usbmodem1411, while on Windows, it will be something like COM2.
- Upload your code.
If it did, congratulations! Move on to testing. If it didn’t, go back to step 5. If that didn’t work again, double-check your wiring. If that didn’t work, contact us using the link at the top.
- Download the Arduino IDE. arduino.cc
- Open the code.
- To install libraries, see this tutorial.
- The elevator should go through its self-test. All the call buttons should light in sequence, then the five in-elevator buttons, then the seven segment display should cycle, then the matrix should show up and down arrows. Once complete, the 7-segment display will show the last known floor number of the elevator car.
Because the stepper motor needs to know exactly where to stop for each floor, you need to manually tell it – once. It will remember this in non-volatile memory (meaning that it will save it even when power is disconnected).
To calibrate:
- Press and hold the top and bottom buttons on the right panel. The matrix should show a C (for calibrate).
- Use those top and bottom buttons to manually move the car to the floor shown on the seven segment. When it is in the right place, press the middle button.
- Repeat step 2 for all five floors. When you are done, the matrix should turn off.
Projects like this are never truly done! We would like to rebuild the structure of the elevator and shaft with laser-cut parts. We used a handheld jigsaw to do this and so our cuts are not really all that straight … that is partially what is causing our “friction problem”. At the same time, we would design a better motor mount and get a better, faster motor.
Electronically, we have had a request to add a bell or chime for each time the elevator door is opening, as many real elevators do. We’ll do that too.
Any thoughts or suggestions on this project, please let us know in the comments!
Version HistoryNote: The Google Drive link will automatically update with each version.
Version 2: We fixed the bug where calling the elevator from outside on the current floor may cause the software to hang, requiring you to push the reset button.
Comments