Arduino Projects

How To Make A Self Solving Rubiks Cube Using Arduino

A Self Solving Rubiks Cube is a cube that can be programmed to solve itself. This can be done using an Arduino microcontroller. we built a robot to solve Rubik’s cubes, and it averages about 1.5 seconds per cube! The Rubik’s Cube is a 3x3x3 puzzle that has been around since the 1970s. It is one of the most popular puzzles of all time, with over 43 quintillions (4.3×10) possible permutations. The Arduino is a microcontroller that can be programmed to do nearly anything. In this project, we will use it to control the movement of the Rubik’s Cube so that it can solve itself.

So here’s a project I’ve been working on for a period…

This robot can solve a Rubik’s cube using Arduino Mega.

I learned how to solve a Rubiks cube a few months, and I was also into Arduino, so finally, I ended up with an idea to make my own Rubik’s cube solver.

Materials for Self Solving Rubiks Cube Bot

Electronics:

  1. – Arduino Mega
  2. – CNC Shield v3
  3. – Small Breadboard
  4. – Access to a 3D Printer
  5. – Six 17HS4401 Motors (NEMA 17)
  6. – Six DRV8825 Motor Drivers with heatsinks
  7. – A bunch of jumper wires, screws, and washers

Hardware:

  1. 3D Printer

Software:

  • Arduino IDE – (Algorithms in C++)

The first thing you will need to do is to get an Arduino board and all other components. You can buy one online or at a local electronics store.

An Arduino is a small, single-board computer that can be programmed to do various tasks. We will program the Arduino to solve a Rubik’s Cube in this case.

Step 1: Assemble the CNC Shield

First, place the CNC Shield correctly on the Arduino.
From here, insert four DRV8825 drivers into the elevated pins on the shield. If you hold the Arduino so the power terminal is on the right side, the heatsink for the driver should be towards the top of the shield (as pictured in the circuit diagram).
Now, take a short jumper, and jump the EN/GND pins together on the south-east end of the shield. Also directly north of the EN/GND pins, you’ll see a series of pins labelled “X, Y, Z, D12” or something similar. Jump together the two blue pins labelled “D12” and the two yellow pins directly next to them.
This will allow the fourth driver to operate independently of the other three, connected to pins D12 and D13 of the Arduino.
Finally, hook the shield’s power terminal up to a 12V power supply, and connect each motor’s wires to their own driver on the shield. The exact wiring depends on your motor, but my wiring diagram has the correct wiring for the Stepper motor. Also, see How to Interface Stepper Motor With Arduino Tutorial

Step 2: Wire the breadboard

First, take a jumper from the 5v pin on the south-east end of the shield, and jump it to the BOTTOM positive row on your breadboard. Also, jump the shield’s GND to the BOTTOM ground row on your breadboard. The top +/- rows will be for 12v power from the wall, not from the shield.
For powering the drivers, I used a 12V 4a power supply connected to the top power rail of the breadboard. Just make sure it has enough power to operate the drivers, but not enough to catch the breadboard on fire.
From here, the wiring is very difficult to explain, so refer to the circuit diagram. Make sure NOT TO MESS IT UP. Also, include a 100uF capacitor right after the wall power supply. This will help prevent damage due to voltage spikes.
The most important part is that you take note of which driver connects to which digital pins on the Arduino. You will need that information for interfacing the motors later.
Note- ** TRIPLE CHECK YOUR WORK, SINCE ACCIDENTALLY SHORTING 12V/5V TO GND WILL CAUSE YOUR ARDUINO TO CATCH ON FIRE AND FRY YOUR WHOLE SETUP! **

Step 3: The actual Self Solving Rubiks Cube robot

Rubiks Cube working scan Self Solving Rubiks Cube working scan

Design an enclosure to house the motors and cube. You can copy this project’s design or create your own. The important part is each motor needs to attach to its own side on the cube. This project’s enclosure is a series of panels, each 7mm thick, that have one motor screwed onto it.
The CAD for this project is still a work-in-progress, so contact @iBoot32 if you would like the SLDPRT files.
Now, you’ll need a way to connect each motor to a face on the cube. This project uses little adapters that fit snugly onto the motor shaft, and have a flat end superglued to a centre cap on the Rubik’s Cube.
NOTE: THE CONNECTION TO THE MOTOR SHAFT MUST BE EXTREMELY SECURE, OTHERWISE YOU WILL ENCOUNTER ISSUES IN TURNING ACCURACY. I RECOMMEND SUPERGLUING THE ADAPTER PIECE YOU DESIGN TO THE MOTOR SHAFT.

Step 4: Set the power limit on each driver

This is easily the most important step of the whole process. If you forget to set the power limit correctly, you will absolutely catch the breadboard on fire, since they can only support 1-1.5 amps AT MOST.
On each driver, there’s a little screw (current-limiting potentiometer) that controls the voltage limit.
Google your motor’s rated amperage, and use this formula to determine the correct voltage limit:
Voltage = Rated_current / 2
With the CNC shield, Arduino, and breadboard powered up, connect the red lead of a multimeter to the current-limiting potentiometer, and the GND lead to the GND pin on the driver (if the potentiometer is on the bottom-left, the GND pin is the top-right pin). Take note of the current-voltage, and use a screwdriver to adjust the potentiometer until the voltage limit matches your desired limit from the above formula.

With the CNC shield, Arduino, and breadboard powered up, connect the red lead of a multimeter to the current-limiting potentiometer, and the GND lead to the GND pin on the driver (if the potentiometer is on the bottom-left, the GND pin is the top-right pin). Take note of the current-voltage, and use a screwdriver to adjust the potentiometer until the voltage limit matches your desired limit from the above formula.

Step 5: Circuit diagram

Wiring up the Stepper motor to the Arduino is pretty straightforward

How To Make A Self Solving Rubiks Cube Using Arduino

Step 5: The Self Solving Rubiks Cube code

Take note of which digital pins on the Arduino are connected to the drivers on the breadboard.
As for which digital pins are connected to the CNC Shield:
  • – X.STEP is connected with the Arduino’s pin number 2.
  • – Y.STEP is connected with the Arduino’s pin number 3.
  • – Z.STEP is connected with the Arduino’s pin number 4.
  • – X.DIR is connected with the Arduino’s pin number 5
  • – Y.DIR is connected with the Arduino’s pin number 6
  • – Z.DIR is connected with the Arduino’s pin number 7
You may be wondering what STEP and DIR refer to. The DIR pin controls the direction the motor will spin. Setting it to HIGH results in a clockwise turn, and LOW results in counterclockwise. The STEP pin is where you will send your HIGH pulses to make the motor move forward.

The software:

I use kociemba’s optimal solver to generate resolutions to the cube (18-19 moves on average). I have the motors doing around 10.5 turns per second, resulting in about a 1.5-2 second average solve time.

I don’t use the AccelStepper library, however, being able to accelerate/decelerate would allow me to increase turning speed without compromising turning accuracy.

I will not provide the full code, as it’s dependent heavily on your setup. However, use this as a reference:
I don’t have the code on me right now, but it’s fundamentally as described here at the base.

Step 6: Self Solving Rubiks Cube Mechanism

You should now be able to interface all six drivers independently of each other.
How To Make A Self Solving Rubiks Cube
The next step is to choose a solving algorithm. The rest will be left mainly to the reader since there are hundreds of ways to implement a solving program.
One way is to use Kociemba’s Cube Explorer on a PC, then have a function to translate the solution from <R, L, U, D, F, B> form to moves on the motor and send them over serial. You could also use a command-line solver like solve. Both solutions are good.

Wrap-up

If all goes well, you should have a functioning cube-solving robot now. Congrats!
Here is a working video

 

Note – I have a prototype of automatic colour recognition, where I simply point a couple of cameras at the cube and it auto-scans each face.

However for this video, yes, I just input each sticker colour manually.

If you have any questions along the way, feel free to contact iBoot32 on Twitter and they’ll answer any questions you have.

Related Articles

One Comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Ad
Back to top button

Adblock Detected

Please consider supporting us by disabling your ad blocker