Hackaday Links Column Banner

Hackaday Links: August 2, 2020

If you somehow manage to mentally separate yourself from the human tragedy of the COVID-19 pandemic, it really has provided a fascinating glimpse into how our planet operates, and how much impact seven billion people have on it. Latest among these revelations is that the shutdowns had a salubrious effect in at least one unexpected area: solar power. Researchers found that after the Indian government instituted mandatory lockdowns in March, output from solar power installations in Delhi increased by more than eight percent. The cause: the much-diminished smog, which let more sunlight reach solar panels. We’ve seen similar shutdown-related Earth-impact stories, from decreased anthropogenic seismicity to actually being able to see Los Angeles, and find them all delightfully revealing.

Remember Google Glass? It’s hard to forget, what with all the hype leading up to launch and the bitter disappointment of realizing that actually wearing the device wouldn’t go over well in, say, a locker room. That said, the idea of smart glasses had promise, and several startups tried to make a go of combining functionality with less out-there styling that wouldn’t instantly be seen as probable cause for being a creep. One such outfit was North, who made the more-or-less regular looking (if a bit hipsterish) Focals smart glasses. But alas, North was bought out by Google back in June, and as with so many things Google acquires, Focals smart glasses are being turned off. Anyone who bought the $600 specs will reportedly get their money back, but the features of the smart glasses will no longer function. Except, you know, you’ll still be able to look through them.

It looks like someone has finally come up with a pretty good use case for the adorably terrifying robot mini-dogs from Boston Dynamics. Ford Motors has put two of the yellow robots to work in their sprawling Van Dyke Transmission Plant in Michigan. Dubbed Fluffy and Spot (aww), the dogs wander around the plant with a suite of cameras and sensors, digitally mapping the space to prepare for possible future modifications and expansions. The robots can cover a lot of ground during the two hours that their batteries last, and are even said to be able to hitch a ride on the backs of other robots when they’re tuckered out. Scanning projects like these can keep highly trained — and expensive — engineers busy for weeks, so the investment in robots makes sense. And we’re sure there’s totally no way that Ford is using the disarmingly cute robo-pets to keep track of its employees.

We all know that the Linux kernel has some interesting cruft in it, but did you know that it can actually alert you to the fact that your printer is aflame? We didn’t either untilĀ  Editor-in-Chief Mike Szczys shared this reddit post that details the kernel function lp_check_status and how it assumes the worst if it detects the printer is online but also in “check mode.” The Wikipedia entry on the “lp0 on fire” error message has some interesting history that details how it’s not as implausible as it might seem for a printer, especially one in the early 1970s, to burst into flames under the right conditions. A toner fuser bar running amok on a modern laser printer is one thing, but imagine a printer with a fusing oven running out of control.

And finally, because 2020 is apparently the gift that can’t stop giving, at least in the weirdness department, the US Department of Defense let it slip that the office charged with investigating unidentified aerial phenomena is not quite as disbanded as they once said it was. Reported to have been defunded in 2017, the Advanced Aerospace Threat Identification Program actually appears to live on, as the Unidentified Aerial Phenomena Task Force, operating out of the Office of Naval Intelligence. Their purpose is ostensibly to study things like the Navy videos of high-speed craft out-maneuvering fighter jets, but there are whispers from former members of the task force that “objects of undetermined origin have crashed on earth with materials retrieved for study.” All this could just be a strategic misdirection, of course, but given everything else that has happened this year, we’re prepared to believe just about anything.

VK-01 Is A Bartender You Don’t Need To Tip

[Donald Bell’s] robotic bartender entry into the 2020 Cocktail Robotics Grand Challenge is one of those things that sounds easy until you start getting into the details. After all, how hard is it to dispense some liquids into a glass? Harder than you might think. Sure there are pumps — [Donald] uses peristaltic pumps — but there’s also two Raspberry Pis, an ESP8622, and at least one more microcontroller lurking underneath. You can see a video about the device below.

Even if you don’t want a refreshing libation, you’ll probably like the VK-01’s Bladerunner cyberpunk styling. What we really enjoyed about the post was that it took you through the concept sketches, some of the design trades, and even a cardboard prototype.

Continue reading “VK-01 Is A Bartender You Don’t Need To Tip”

Robot, Sudo Fold My Laundry

[Ty Palowski] doesn’t like folding his many shirts. He saw one of those boards on TV that supposedly simplifies folding, but it does require you to manually move the board. That just won’t do, so [Ty] motorized it to create a shirt folding robot.

The board idea is nothing new, and probably many people wouldn’t mind the simple operation required, but what else are you going to do with your 3D printer but make motor mounts for a shirt folding machine? The folding board is, of course, too big for 3D printing so he made that part out of cardboard at first and then what looks like foam board.

Continue reading “Robot, Sudo Fold My Laundry”

A Robotic Stylist For Your Lockdown Lengthened Locks

It’s perhaps easy to think that despite the rapid acceleration of technology that there are certain jobs that will never be automated out of existence. Generally the job said to be robot-proof is the one held by the person making the proclamation, we notice. But certainly the job of cutting and styling people’s hair could never be done by a robot, right?

We wouldn’t bet the farm on it, although judging by [Shane Wighton]’s quarantine haircut robot, it’ll be a while before the stylists of the world will be on the dole. Said to have sprung from the need to trim his boyishly long hair, the contraption is an object lesson recreating the subtle manual skills a stylist brings to every head they work on — there’s a reason it takes 1,500 hours or more of training to get a license, after all. [Shane] discovered this early, and realized that exactly replicating the manual dexterity of human hands was a non-starter. His cutting head uses a vacuum to stand the hair upright, 3D-printed fingers to grip a small bundle of hair, and servo-driven scissors to cut it to length. The angle of attack of the scissors can be adjusted through multiple axes, and the entire thing rotates on a hell-no-I’m-not-putting-my-head-in-that-thing mechanism.

To his great credit, [Shane] braved the machine as customer zero, after only a few non-conclusive life-safety tests with a dummy head and wig. We won’t spoil the ending, but suffice it to say that the thing actually worked with no bloodshed and only minimal damage to [Shane]’s style. The long-suffering [Mrs. Wighton], however, was not convinced to take a test drive.

In all seriousness, kudos to [Shane] for attacking such a complex problem. We love what he’s doing with his builds, like his basketball catcher and his robo-golf club, and we’re looking forward to more.

Continue reading “A Robotic Stylist For Your Lockdown Lengthened Locks”

Gaming In Different Languages

One of the perks of using older hardware is its comparative simplicity and extensive documentation. After years or decades of users programming on a platform, the amount of knowledge available for it can become extensive. This is certainly the case with the 6502 microprocessor, used in old Apple computers and some video game systems from the ’80s. The extensive amount of resources available make it a prime candidate in exploring various programming languages, and their advantages and disadvantage.

This project looks into those differences using a robot game, which has been programmed four different ways in three languages. [Joey] created the game in Python first and then began to port it to the 65C02, a CMOS variant of the 6502. The first iteration is its assembly language, and then a second iteration with optimized assembly code. From there, he ports it to C and then finally to Forth. Each version of the game is available to play in a browser using an emulator to run the 6502 hardware.

Since the games run in the browser, other tools are available to examine the way the game runs in each language. Registers can be viewed in real time, as well as the values stored in the memory. It’s an interesting look at an old piece of hardware and of its inner workings. For an even deeper dive into the 6502, it’s possible to build a working computer on breadboards using one.

Tracked Robot Makes Sand Drawings

[Ivan] seems to enjoy making 3D printed vehicles with tracks. His latest one uses 50 servo motors to draw patterns in the sand at the beach. You can see it work in the video below. Well, more accurately you can see it not work and then work as the first iteration didn’t go exactly as planned.

An Arduino Mega 2560 provides the brains and the whole unit weighs in at almost 31 pounds, including the batteries. We didn’t see Ivan’s design files, although it wouldn’t be hard to do your own take on the robot.

Continue reading “Tracked Robot Makes Sand Drawings”

Switch Tester Servo-Slaps Them ’til They Fail

[James] is designing an open-source 3D printed keyboard switch, with the end goal of building a keyboard with as many printed parts as possible. Since keyswitches are meant to be pressed quite often, the DIY switches ought to be tested just as rigorously as their commercial counterparts are at the factory. Maybe even more so.

The broken spring after 13,000+ automated boings.

Rather than wear out his fingers with millions of actuations, [James] built a robot to test switches until they fail. All he has to do is plug a switch in, and the servo-driven finger slowly presses the slider down until the contacts close, which lights the LED.

The system waits 100ms for the contacts to stop any tiny vibrations before releasing the slider. That Arduino on the side tracks the contact and release points and sends them to the PC to be graphed. If the switch fails to actuate or release, the tester stops altogether.

We love that this auto-tester works just fine for commercial switches, too — the bit that holds the switch is separate and attaches with screws, so you could have one for every footprint variant. [James] recently did his first test of a printed switch and it survived an astonishing 13,907 presses before the printed coil spring snapped.

One could argue that this doubles as a servo tester. If you want a dedicated device for that, this one can test up to sixteen at a time.

Continue reading “Switch Tester Servo-Slaps Them ’til They Fail”