Giant-Scale Physical Pong

At first, we thought we were having deja vu, but then we saw this video embedded below. [Thijs Eerens] is a creative technologist (dare we say, a “hacker”?) who builds giant-scale games for a living. For the Lowlands festival in the Netherlands, he contributed to the build of a huge Pong game that looks as big as a cinema screen.

The paddles appear to be controlled by pulling ropes, and the “ball” is driven around on a system of wires and stepper motors. Code running in the background tracks the player paddles, drives the ball, and keeps score. From the video, there seem to be sound effects involved. It looks like a lot of fun.

Continue reading “Giant-Scale Physical Pong”

Overhauling The ESP8266’s Flash Memory Handling

If you’ve ever corrupted a flash memory on a power failure, you’ll be glad to hear that the ESP8266 SDK implements a very secure and almost infallible read/write management for its flash memory. The catch: It’s also very wasteful. For a single memory block of stored data, three memory blocks of physical flash memory are occupied. [Peter Scargill] enlightens us with a better solution.

Continue reading “Overhauling The ESP8266’s Flash Memory Handling”

Cityscape Infinity Table

Redditor [ squishy0eye] lacked a coffee table and wanted an infinity mirror. So, in a keen combination of the two, she built an infinity mirror table the resembles a nighttime cityscape.

Skimming over many of table’s build details, [squishy0eye] paused to inform the reader that an MDF base was used underneath the mirrors, with a hole drilled for the future power cable. For the top pane, she overlaid privacy screen mirror film onto tempered glass, turning it into a one-way mirror. The bottom pane is acrylic plastic due to the need to drill holes to hide the cables for each ‘building’ — the same mirror film was applied here as well. Wood was cut into rectangles for the building shapes and super glued around the holes and in the corresponding spots underneath to prevent any bowing in the acrylic. A small gap was left in each ‘building’ to run the 5050 non-waterproof LED strips around and back into the hole for power.

Continue reading “Cityscape Infinity Table”

Ducklings Raised By Remote

We’re not sure that it’s absolutely necessary to raise ducks using a remote-control animatronic duck decoy, but people have stranger hobbies.

This YouTube video (embedded below) from [Imaginative Guy] chronicles an impressive feat of RC animatronics, sparing no effort to make the RC duck “parents” realistic. There’s a ton of detail in the videos, from the machining of small necessary bits to the liberal application of hot glue where necessary. Continue reading “Ducklings Raised By Remote”

Portable Battery Bank Only Looks Like A Bomb

If one of the design goals of [wsw4jr]’s portable solar battery bank build was to make something that the local bomb squad would not hesitate to detonate with a water cannon if he leaves it unattended, then mission accomplished.

We kid, but really, the whole thing has a sort of “Spy vs. Spy” vibe that belies its simple purpose. A battery bank is just an array of batteries, some kind of charge controller, and an inverter. The batteries are charged by any means possible – in this case by a small array of solar panels. The mains output of the inverter is used to power whatever doodads you have.

[wsw4jr] didn’t mention of the inverter specs, but from the size of the batteries and the wiring – both of which he admits are not yet up to snuff in his prototype – it’s a safe guess that the intended loads are pretty small.  Tipping the scale at 60 pounds, the unit tends toward the luggable end of the portability scale. Still, this could be a great tool for working out in the field, or maybe even tailgating.

We’ve seen expedient battery banks and emergency power from cordless drill batteries before, but this build is quite a bit more sophisticated. We’ll be watching for updates on this one.

Russian Hacker Multiplies Value Of Boost Converter

We have a love/hate relationship with LiIon batteries. They pack all this power in such a small and light package. But for running 3.3 V devices, they’re cumbersome. They need to be stepped down a little bit when they’re fully charged at 4.2 V, but then they need to be stepped up at the end of their charge around 3.0 V.

A simple boost or buck converter can’t do both jobs, although you’d be tempted because they can be purchased for peanuts online. So [Kirich] hacked cheap boost converters into the more capable SEPIC topology, which sell for nearly 10x as much. (Google translated version here.) The bottom line? With a little desoldering, a cut trace here and an extra inductor there, and [Kirich] had a very capable circuit that would maintain a constant 3.3 V output when the input swung between 1 V and 5 V.

95aa17If SEPIC power converters are foreign to you, have a read through Maxim’s white paper on the subject. Basically, it’s a boost converter with a capacitor in the middle that lets the output voltage drop below the input voltage. An extra inductor keeps the output side of this capacitor at ground potential (on average).

If you want more detail, [Kirich] doesn’t disappoint. He tested his modifications in multiple configurations on two different models of boost converter. As you’d expect with power circuitry, layout and trace length matters, and [Kirich] took good notes. This is a great read for the frugal hacker, or anyone who’s interested in boost/buck converters.

Speaking of boost/buck circuits, we’ve got some more links for you. This video from Sparkfun’s [Pete Dokter] is worth fifteen minutes, and if you want to get your hands really dirty in the construction of such circuits, this ATtiny-based boost converter circuit is fun to play with.

Thanks [kirillre4] for the great tip!

Tour De Force Battery Hacking

Lithium-Ion batteries are finicky little beasts. They can’t be overcharged, overdischarged, overheated, or even looked at funny without bursting into flames. Inside any laptop battery pack, a battery charge controller keeps watch over all the little cells, and prevents them from getting damaged.

Of course, any “smart” device will sometimes make the wrong choices, and then it’s up to us to dig inside its brains and fix it. When [Viktor] got a perfectly good battery pack with a controller that refused to charge the batteries, he started off on what would become an epic journey into battery controllers, and the result is not just a fixed battery, but a controller-reprogramming tool, software, and three reversed controller chips so far.

devbBattery controller chips speak SMBus, and [Viktor] started out by building a USB-SMBus tool. It’s a clever use of a cheap eBay development board for a Cypress CY7C68013A USB microcontroller. Flashed with [Viktor]’s firmware and running his software on the host computer, a SMBus scan is child’s play.

The rest of the story is good old-fashioned hacking: looking for datasheets, reading industry powerpoints, taking wild guesses, googling for passwords, and toggling the no-connect pins while booting the controllers up. We’re not going to argue with results: the bq8030, R2J240, and M37512 controllers have all given up their secrets, and tools to program them have been integrated into [Viktor]’s SMBusb tool.

In short, this is one of the nicest hard-core hacks we’ve seen in a while. Kudos [Viktor]! And thanks for the SMBus tool.