A Simple 3D Printed Rover Design

There are plenty of RC cars and robot platforms out there that you can buy. However, there’s an understanding that’s gained from building your own rover from the ground up. Which is precisely what [Alex] got from developing this compact 3D printed rover design.

The design is by no means fast; it’s intended more for crawling around “at a slow deliberate pace” as [Alex] puts it. Off-the-shelf 12 V gear motors are used to provide plenty of torque to get around. The modular design means that it can be built with just wheels, or set up with tracks fitted for additional performance in softer terrain. Skid steering is used to turn the platform.

Fitted with a Raspberry Pi Zero 2W, the rover can be controlled remotely over WiFi. A separate FPV camera and transmitter is then used to stream video remotely to pilot the bot. However, if you’re so inclined, you can probably use the Raspberry Pi to stream the video, too.

It’s a fun build and a great way to learn about building rovers and robots that move. We’ve seen some other interesting tracked rovers before, too. Video after the break.

Continue reading “A Simple 3D Printed Rover Design”

PCB Stepper Motor Micro Robots

[Kevin Lynagh] is interested in tiny PCB stepper motors, and after reviewing the various projects and patents to-date, decided to give it a try himself. These are basically a stepper motor that’s been unrolled and made flat — traces on the PCB act as the coils and tiny magnetic “robots” act as the rotor.

If you want to try this concept yourself, [Kevin]’s post contains an excellent survey of prior art and projects, as well as exploring the theory behind how these things work. He has taken a deep dive in to the theory, deep enough to grasp what’s going on and to build some preliminary prototypes with a bit of confidence. First off was just a hand-wound flat coil as a proof-of-concept. Next was a PCB version that worked almost exactly as planned, although he confesses to burning out a motor driver circuit before stepping back and making some calculations.

We covered one such project back in 2014 and wrote about a Hackaday.io magnetic robot project from reader [bobricius] in 2018. Have you ever used this technology for anything besides a demonstration? Let us know in the comments below.

Thanks to [Adrian] for sending us the tip.

Forget Sudoku, Build Yourself A Minimalist Rubik’s Solver Robot

Some people like crossword puzzles, some are serious sudoku ninjas, but [Andrea Favero] likes to keep himself sharp, by learning coding and solving control problems, and that is something we can definitely relate to. When learning a new platform, it’s a very good idea to have a substantial project or goal in mind, and learn what is needed on the way there. [Andrea] chose to build an autonomous Rubik’s cube solver, and was kind enough to document exactly how how to do it, and we’re glad of it!

The result of the openCV processing chain

Working in python with OpenCV, [Andrea] uses the methodology by [Oussama Barkouki] to process each face image and convert it into a table of the colours of individual facelets. The basics of that, are first to convert the image to grayscale, then use a gaussian blur to denoise the image. Edges are identified using the canny algorithm, the result of which is then dilated and passed into a contour detector. The contours are sent into a cunning filter that identifies square contours, and those the wrong size are filtered off. What you’re left with are the outlines of the actual coloured facelets. Once you have a list of squares, these can be used to form image masks, and thence select the average colour from each square. The colour is then quantised and stored as a labelled colour from the standard Western Rubik’s cube colour scheme. Finally, once all face images are captured and facelets colours identified, the data are passed into a Rubik’s cube solving algorithm developed by [Hegbert Kociemba,] a guide to which is available on the speedsolving site. The result of the solving step is a sequence of descrambling moves, in the move notation developed by [David Singmaster]. Fascinating stuff, if you ask us! Continue reading “Forget Sudoku, Build Yourself A Minimalist Rubik’s Solver Robot”

T-shirt folding robot

Laundry Bot Tackles The Tedium Of T-Shirt Folding

Roomba aside, domestic robots are still in search of the killer app they need to really take off. For the other kind of home automation to succeed, designers are going to have to find the most odious domestic task and make it go away at the push of the button. A T-shirt folding robot is probably a good first step.

First and foremost, hats off to [] for his copious documentation on this project. Not only are complete instructions for building the laundry bot listed, but there’s also a full use-case analysis and even a complete exploration of prior art in the space. [Stefano]’s exhaustive analysis led to a set of stepper-actuated panels, laser-cut from thin plywood, and arranged to make the series of folds needed to take a T-shirt from flat to folded in just a few seconds.

The video below shows the folder in action, and while it’s not especially fast right now, we’ll chalk that up to still being under development. We can see a few areas for improvement; making the panels from acrylic might make the folded shirt slide off the bot better, and pneumatic actuators might make for quicker movements and sharper folds. The challenges to real-world laundry folding are real, but this is a great start, and we’ll be on the lookout for improvements.

Continue reading “Laundry Bot Tackles The Tedium Of T-Shirt Folding”

Shelf Actualization

If you are old enough, you may remember that, for a time, almost every year was the year that home video was going to take off. Except it never was, until VHS tape machines appeared. We saw something similar with personal computers. Nowadays, we keep hearing about the home robot, but it never seems to fully materialize or catch on. If you think about it, it could be a problem of expectations.

What we all want is C3PO or Rosie the Robot that can do all the things we don’t want to do. What we usually get is something far less than that. You either get something hideously expensive that does a few tasks or something cheap that is little more than a toy.

Labrador Systems is trying to hit the middle ground. While no one would confuse their Caddie and Retriever robots with C3PO, they are useful but also simple, presumably to keep the cost down which are expected to cost about $1,500. The robots have been described as “self-driving shelves.” You can watch a video about the devices below.

Continue reading “Shelf Actualization”

That’s No Moon… It’s An Algae Robot

When you think of a robot, you probably don’t think of a ball of underwater algae. But a team of university researchers used a 3D-printed exoskeleton and a ball of marimo algae to produce a moving underwater sensor platform. It is really at a proof-of-concept stage, but it seems as though it would be possible to make practical use of the technology.

Marimo are relatively rare balls of algae that occur in some parts of the world. A robot powered by algae runs on sunlight and could be electromagnetically quiet.

Continue reading “That’s No Moon… It’s An Algae Robot”

A wooden xylophone with electronic contraptions for robotic playback

Robotic Xylophone Makes Music With MIDI Magic

The MIDI format has long been used to create some banging electronic music, so it’s refreshing to see how [John P. Miller] applied the standard in his decidedly analog self-playing robotic xylophone.

Framed inside a fetching Red Oak enclosure, the 25-key instrument uses individual solenoids for each key, meaning that it has no problem striking multiple bars simultaneously. This extra fidelity really helps in reproducing the familiar melodies via the MIDI format. The tracks themselves can be loaded onto the device via SD card, and selected for playback with character LCD and rotary knob.

The software transposes the full MIDI music spectrum of a particular track into a 25-note version compatible with the xylophone. Considering that a piano typically has 88 keys, some musical concessions are needed to produce a recognizable playback, but overall it’s an enjoyable musical experience.

Perhaps most remarkable about this project is the documentation. If you want to build your own, everything you need to know is available online, and the no-solder approach makes this project very accessible. Most of the write-up happened some years ago, and we’re really interested to see what improvements have been made since.

The robotic xylophone is reminiscent of these automatic tubular bells from some time ago. These musical hacks can be particularly inspiring, and we can’t wait to see more.

Continue reading “Robotic Xylophone Makes Music With MIDI Magic”