Using Machinery To Make Factory-Fresh Industrial Music

Many machines make music as a side effect, as anyone who owns a 3D printer can confirm. [工場音楽レーベルINDUSTRIAL JP] is working on a project to meld music and machinery in new ways. They are building a record label and a playlist based on the sights and sounds of small factories in Japan. Their videos combine the hypnotizing, rhythmic beauty of precision manufacturing process with music from local artists, and the result is like r/SoundsLikeMusic met up with How It’s Made and created a series of un-narrated industrial fever dreams.

While the focus is on high-tech factories, the content of these moodily-lit videos is pretty diverse. Never before have we been so mesmerized by the folds of an air filter or the pressing of vinyl records. Our favorite might be GOKO BANE, which takes a bumpin’ look around the Goko Spring factory. It makes us want to throw on some rags and dance like they do down in Zion.

Once in a while they will play around with the video speed of the factory process for effect, and it works nicely. If there’s any downside, it’s that no one process is shown from start to finish. But that’s not the point, anyway.

Don’t have access to a factory? Us either. But if you can get stepper motors, it’s pretty easy to make music by driving them forward, or even backward.

Thanks for the tip, [KILLERGEEK].

Lambdas For C — Sort Of

A lot of programming languages these days feature lambda functions, or what I would be just as happy to call anonymous functions. Some people make a big deal out of these but the core idea is very simple. Sometimes you need a little snippet of code that you only need in one place — most commonly, as a callback function to pass another function — so why bother giving it a name? Depending on the language, there can be more to it that, especially if you get into closures and currying.

For example, in Python, the map function takes a function as an argument. Suppose you have a list and you want to capitalize each word in the list. A Python string has a capitalize method and you could write a loop to apply it to each element in the list. However, map and a lambda can do it more concisely:

map(lambda x: x.capitalize(), ['madam','im','adam'])

The anonymous function here takes an argument x and calls the capitalize method on it. The map call ensures that the anonymous function is called once for each item.

Modern C++ has lambda expressions. However, in C you have to define a function by name and pass a pointer — not a huge problem, but it can get messy if you have a lot of callback functions that you use only one time. It’s just hard to think up that many disposable function names. However, if you use gcc, there are some nonstandard C features you can use to get most of what you want out of lambda expressions.

Continue reading “Lambdas For C — Sort Of”

Pan And Tilt To A New 3D Printed Business Model

When shooting video, an easy way to get buttery smooth panning and tracking is to use a mechanical device like a rail to literally slide the camera side to side. These range from what is essentially a skateboard to incredible programmable multi-axis industrial robots, a wide variety of which have been visible in the backgrounds of Youtuber’s sets for years. But even the “low end” devices can run hundreds of dollars (all that anodized aluminum doesn’t come cheap!). Edelkrone has been building lust worthy professional (read, pricey) motion setups for a decade. But in the last year they’ve started something pretty unusual; lowering prices with their Ortak series of 3D printed equipment. But this time, you do the printing.

In the FlexTILT Head 3D, everything in red is printed at home

Since the RepRap we’ve been excited about the future of democratized at home manufacturing, but to a large extent that dream hasn’t materialized. Printers are much more useful now than in the early days but you can’t buy a new mug from Starbucks and print it at home. But maybe that’s changing with Edelkrone’s offering.

When you buy an Ortak product you get one thing: all the fasteners and hardware. So the final product is more durable and appears more finished than what would pop out of your Prusa unaided. What about the rest of the device? That’s free. Seriously. Edelkrone freely provides STLs (including print setting recommendations) with detailed step-by-step assembly instructions and videos (sample after the break). Nice hack to avoid piracy, isn’t it?

Why choose the do-it-at-home style product? A significant price reduction of course! The Ortak line currently includes two products, the FlexTILT head you see above, and a skateboard-style slide called the SKATER 3D. Both of these were sold fully finished before making it to the DIY scene. The FlexTILT Head 2 comes in at $149 when you buy it whole. And when the PocketSKATER 2 was for sale, it included a FlexTILT Head and came to $249. Now? Each hardware kit is just $29.

So is this it? Have we hit the artisanal DIY micro-manufactured utopian dream? Not yet, but maybe we’re a little closer. Edelkrone is a real company which is really selling these as products, right there on their website along with everything else. They refer to it as “co-manufacturing” which we think is a clever name, and talk about expanding the program to include electronics. We can’t wait to see how the experiment goes!

Continue reading “Pan And Tilt To A New 3D Printed Business Model”

Does Your Home Assistant Know When You Are Sleeping?

It always gives us a sense of wonder when we realize that what would be a simple task for a human child is a big deal for a computer. For example, if you asked someone if you or someone else was in bed, that’s a pretty simple thing to check. For you, that is. For a computer, it requires some sort of sensor. [Lewis] used load cells to tell if someone is in a particular bed or not. He uses Home Assistant and has a great post about how he created and interfaced the sensors. Of course, the sensors really only tell you if something heavy is in the bed. It doesn’t know who it is or even that it isn’t an overstuffed suitcase.

Load cells aren’t exactly high tech. There are several different types that use hydraulic pressure or pneumatics to measure force. However, the most common that we encounter use strain gauges. A strain gauge is a resistor that changes value when it deformed and a load cell usually has several strain gauges wired in a bridge configuration so that small forces create larger output changes.

Continue reading “Does Your Home Assistant Know When You Are Sleeping?”

Warwalking For Radiation

Can’t find a recently updated survey of radioactivity in your neighborhood? Try [Hunter Long]’s DIY scintillation counter warwalking rig. (Video also embedded below.) What looks like a paint can with a BNC cable leading to an unassuming grey box is actually a complete kit for radiation surveying.

Inside the metal paint can is a scintillation counter, which works by attaching something that produces light when struck by ionizing radiation on the end of a photomultiplier tube, to make even the faintest hits “visible”. And the BNC cable leads to a Raspberry Pi, touch screen, GPS, and the high-voltage converters needed to make the photomultiplier do its thing.

The result is a sensitive radiation detector that logs GPS coordinates and counts per second as [Hunter] takes it out for a stroll. Spoilers: he discovers that some local blacktop is a little bit radioactive, and even finds a real “hot spot”. Who knows what else is out there? With a rig like this, making a radiation map of your local environment is a literal walk in the park.

[Hunter] got his inspiration for the paint-can detector from this old build by [David Prutchi], which used a civil-defense Geiger counter as its source of high voltage. If you don’t have a CD Geiger detector lying around, [Alex Lungu]’s entry into the Hackaday Prize builds a scintillation detector from scratch.
Continue reading “Warwalking For Radiation”

Learn Morse Code, Clockwork Orange Style

You might have to provide your own wrist straps and eye clamps, but if you want to learn Morse code, [Seth] has a web site for you. You can get code practice using the Farnsworth method and each letter is flashed before you as it is sent, which we assume will burn it into your brain.

Why learn Morse code now? Just about all countries now have at least some no code ham licenses and many have taken code off the tests completely. However, there are still many hams that use the code even today. Why? The personal challenge is part of it and perhaps nostalgia. However, it is also true that Morse code transmitters and receivers are dead simple to build and can get through where other simple radios can’t.

Continue reading “Learn Morse Code, Clockwork Orange Style”

DIY Watertight Junction Box For Serious Outdoor Sealing

Thingiverse user [The-Mechanic] shared a design for 3D printed enclosures that are made to house wire and cable junctions, which can then be rendered weatherproof by injecting them with a suitable caulking compound and allowing it to cure. It’s a cross between an enclosure and potted electronics. It’s also a one-way trip, because the result is sealed up like a pharaoh’s tomb. On the upside, it’s cheap, accessible, and easily customized.

The way it works is this: wires go through end caps which snap onto the main body, holding the junction inside. Sealant is then pumped in via the hole on the side, then the hole is plugged. Afterwards, all there is to do is wait until the sealant cures. [The-Mechanic] has a couple of companion designs, as well. For tubes of sealant that have threaded tops, one can more effectively save the contents of the tube for later with this design for screw-on caps. There are also 3D printed nozzles in a variety of designs.

One thing to keep in mind about silicone-based sealants is that thick gobs of it can take a really, really long time to cure fully. A thick gob of the stuff will tend to firm up on the outside but leave the inside gooey. If that will be a problem, maybe take a cue from Oogoo and mix in a bit of corn starch with the silicone sealant. The resulting mixture will be thicker, but it’ll cure throughout with no problems.