Open Source Computer Controlled Loom Weaves Pikachu For You

The origin story of software takes us back past punch card computers and Babbage’s Difference Engine to a French weaver called Joseph Marie Jacquard. Jacquard created a way to automate mechanical looms, giving weavers the ability to change a loom’s pattern by simply switching punch cards. This invention not only made it possible to produce detailed fabrics in a vastly simplified way, it was an extremely important conceptual step in the development of computer programming, influencing Babbage’s development of the Analytical Engine amongst many other things.

So, when [Kurt] saw his son’s enthusiasm for weaving on a simple loom, he started thinking about how he could pay homage to the roots of software by designing and building an open source computer controlled loom. He knew this was going to be difficult: looms are complex machines with hundreds of small parts. [Kurt] wrestled with wonky carriage movements, cam jams, hook size disasters and plenty of magic smoke from motor control boards. After a year and a half of loom hacking he succeeded in making a 60 thread computer controlled loom, driven by an iPhone app using Bluetooth.

As well as writing up the story of this build on his blog, linked above, [Kurt] has also has made all of his design files, PCB layouts, firmware and code available on GitLab.

We’ve featured a few weaving hacks over the years, including this cheap, simple 3D printable loom and a Jacquard inspired bitmap display.

Fun, informative build video after the cut.

Continue reading “Open Source Computer Controlled Loom Weaves Pikachu For You”

Surfing Diorama Makes For A Neat Desk Toy

In 1994, Weezer famously said that “you take your car to work, I’ll take my board”. Obviously, for the office-bound, surfing is simply out of the question during the working day.  That doesn’t mean you can’t have a little fun with a desk toy inspired by the waves.

The crux of the build is a watery diorama, which interacts with a faux-surfboard. The diorama consists of a tank constructed out of plexiglas, sealed together to be watertight. It’s then filled with blue-dyed water, and topped off with baby oil. The tank is then mounted on a cam controlled by a servo, which rocks the tank back and forth to create waves. This is controlled by the motion of the rider on the plywood surfboard, which can be rocked to and fro on the floor thanks to its curved bottom. An Arduino built into the board monitors a three-axis accelerometer, and sends this information to the Arduino controlling the tank.

By riding the board, the user can shake the tank. Get the motion just right, and smooth rolling waves are your reward. Jerk around with no real rhythm, and you’ll just get messy surf. We reckon it would be even better with a little surfer floating in the tank, too. It’s a fun build, and one that might help stave off the negative health effects of sitting at a desk all day. You might prefer a more shocking desk toy, however. Video after the break.

Continue reading “Surfing Diorama Makes For A Neat Desk Toy”

Augmented Arthropod Gets A Self-Balancing Ride

There are many people who find being around insects uncomfortable. This is understandable, and only likely to get worse as technology gives these multi-legged critters augmented bodies to roam around with. [tech_support], for one, welcomes our new arthropod overlords, and has even built them a sweet new ride to get around in.

The build follows the usual hallmarks of a self-balancing bot, with a couple of interesting twists. There’s twin brushed motors for drive, an an Arduino Uno running the show. Instead of the more usual pedestrian IMUs however, this rig employs the Bosch BNO055 Absolute Orientation Sensor. This combines a magnetometer, gyroscope, and accelerometer all on a single die, and handles all the complicated sensor fusion maths onboard. This allows it to output simpler and more readily usable orientation data.

The real party piece is even more interesting, however. Rather than radio control or a line following algorithm, this self-balancer instead gets its very own insect pilot. The insect is placed in a small chamber with ultrasonic sensors used to determine its position. The insect may then control the movement of the bot by moving around this chamber itself. The team have even developed a variety of codes to dial in the sensor system for different types of insect.

It’s not the first time we’ve seen insects augmented with robotic hardware, and we doubt it will be the last. If you’re working on a mad science project of your own, drop us a line. Video after the break.

Continue reading “Augmented Arthropod Gets A Self-Balancing Ride”

Well-Built Sentry Gun Addresses The Menace Of Indoor Micro-UAVs

What is this world coming to when you can’t even enjoy sitting in your living room without some jamoke flying a drone in through the window? Is nothing sacred? Won’t someone think of the children?

Apparently [Drew Pilcher] did, and the result is this anti-drone sentry gun.  It’s a sturdily built machine – one might even say it’s overbuilt. The gimbal is made from machined steel pieces, and the swivels are a pair of Sherline stepper-controlled rotary tables with 1/40 of a degree accuracy selling for $400 each. Riding atop that is a Nerf rifle, which is cocked by a stepper-actuated linear slide, as well as a Kinect for object tracking. The tracking app is a little rough – just OpenCV hacked onto the Kinect SDK – but good enough for testing. The gun tracks as smoothly as one would expect given the expensive hardware, and the auto-cocking feature works well if a bit slowly. Based as it is on Nerf technology, this sentry is only indicated for the control of the micro-drones seen in the snuff video below, but really, anyone afflicted by indoor infestations of Phantoms or Mavics has bigger problems to worry about.

Over-engineered? Perhaps, but it’s better than letting the menace of indoor drones go unanswered. And it’s far from the first sentry gun we’ve seen, targeting everything from cats to squirrels using lasers, paintballs, and even plain water.

Continue reading “Well-Built Sentry Gun Addresses The Menace Of Indoor Micro-UAVs”

An Exhaustive Guide To Building 18650 Packs

Most of us know the basics of building packs of lithium-ion batteries. We’re familiar with cell balancing and the need for protection circuitry, and we understand the intricacies of the various serial and parallel configurations. It’s still a process that can be daunting for the first-time pack-builder though, because the other thing that most of us know about lithium ion batteries is that getting things wrong can cause fires. Rule zero of hackerspaces is “Don’t be on fire”, so what’s to be done? Fortunately [Adam Bender] is on hand with an extremely comprehensive two-part guide to designing and building lithium-ion battery packs from cylindrical 18650 cells.

In one sense we think the two-parter is in the wrong order. Part two takes us through all the technical details and theory, from lithium-ion chemistry to battery management systems and spot-welding nickel busbars, while part one shows us the construction of his battery pack. There are also a couple of videos, which we’ve placed below the break. It’s still not a job for the faint-hearted, but we’d say he’s produced about as professional and safe a pack as possible.

If spot welding worries you then it might be possible to build a pack without it. But it’s always worth considering: would you be better served buying one?

Continue reading “An Exhaustive Guide To Building 18650 Packs”

Captivating ESP32 Camera Hack

You can never have enough DIY devices at home, so when you look at an ESP32 module that comes with the camera, you automatically start getting ideas. [Daniel Padilla] wanted a way to deploy DIY camera modules without the hassle of configuring them so he made one that looks like an access point and starts streaming as soon as you connect to it.[GitHub]

The code he provides allows the ESP32 to appear as an Open Access Point which you can connect to from a PC or smartphone. The awesome sauce here is that the ESP32 resolves all DNS requests to a redirect in a similar manner to what happens when someone connects to an open Wi-Fi access point in a mall, Instead of a captive portal page that asks the user to authenticate or accept terms and conditions, [Daniel Padilla]’s code instead redirects to the streaming page et voila! Instant camera stream, and it is that simple.

We love this project because it is an elegant way to solve a problem, and it also teaches newbies about captive portals and their implementation. We covered a cheap ESP32 Webcam in the past and this project also comes with code for you to get started. We would love to see what you come up with next.

Homebrew Laptop Makes A Statement With A Steampunk Theme

Some may argue, but your choice of computing hardware says exactly zero about you, at least when you buy off the shelf. Your laptop or PC is only one of millions, and the chances of seeing someone with the exact same machine are pretty good. If you want to be different, you really need to build something yourself.

This homebrew steampunk laptop does a great job at standing out from the crowd. [Starhawk]’s build is an homage to the Steampunk genre, in a wooden case with brass bits and bobs adorning. The guts are based on an Intel motherboard, a bit dated but serviceable enough for the job. There’s a touch-capable LCD in the lid, and we absolutely love the look of the keyboard with its retro-style chrome and phenolic keycaps. Exposed USB cables run to and fro, and the braided jackets contribute to the old-timey look. The copier roller as a lid hinge is a nice touch too.

[Starhawk]’s build log is long and detailed, and covers the entire build. We’ve seen interesting builds from him before, like this junk-bin PC build for a friend in need. Looks like this one is for personal use, though, and we can’t blame him.