Amazing Analysis Of A 350,000 LED Airport Art Project

Before you zip to the comments to scream “not a hack,” watch a few minutes of this teardown video. This 48 minute detailed walkthrough of a one-off art piece shows every aspect of the project: every requirement, design decision, implementation challenge, and mistake. Some notable details:

  • PCBs that are 1 meter wide (all one piece!)
  • 350,000 white LEDs
  • Carbon fiber enclosures
  • 1-wire serial bus (like the WS2812 only not quite) with 12 bit resolution (TLC5973)
  • Customized cable test jigs, PCB test jigs, and test modes
  • An exploration on ESD issues in production

It’s not often that one sees teardowns of professional projects like this, and there’s quite a bit to learn from in here, besides it being a beautiful piece of art. See more about the Caviar House “Emergence” project at the Heathrow Airport, along with stunning pictures and video of the display in action.

If you’re thinking about how you’d control 350,000 individual LEDs with 12 bit grayscale and have it look smooth, check out the processor requirements behind the megascroller, which only handles 98,000 LEDs. More recently, we asked how many LEDs are too many, and the answer was quite a bit lower than 350k.

Continue reading “Amazing Analysis Of A 350,000 LED Airport Art Project”

Which Wireless Tech Is Right For You?

It seems these days all the electronics projects are wireless in some form. Whether you choose WiFi, Bluetooth Classic, Bluetooth Low Energy, ZigBee, Z-Wave, Thread, NFC, RFID, Cell, IR, or even semaphore or carrier pigeon depends a lot on the constraints of your project. There are a lot of variables to consider, so here is a guide to help you navigate the choices and come to a conclusion about which to use in your project.

We can really quickly reduce options down to the appropriate tech with just a few questions.

Continue reading “Which Wireless Tech Is Right For You?”

Designing Flat Flexible PCBs

You can find flex PCBs in just about every single piece of consumer electronics. These traces of copper laminated in sheets of Kapton are everywhere, and designing these cables, let alone manufacturing them, is a dark art for the garage electronics wizard. Having these flat flex cables and PCBs manufactured still requires some Google-fu or a contact at a fab house, but at least now designing these cables is a solved problem.

[Oli] needed a way to connect two PCBs together over a moving part. Usually this means some sort of connector or cable, but he’s developed an even better solution – flexible PCB connections. To generate these copper traces sandwiched between a few layers of Kapton, [Oli] wrote a Python script to take a set of parameters, and produces an design for Eagle that includes all the relevant bits.

Of course, with a flexible PCB layout, the question of how to get these manufactured comes up. we’ve seen a few creative people make flexible PCBs with a 3D printer and there’s been more than one Hackaday Prize project using these flex PCBs. [Oli] says any manufacturer of flexible circuits should be able to reproduce everything generated from his script without much thinking at all. All we need now is for OSH Park to invent purple Kapton.

You can grab [Oli]’s script on his GitHub.

Can You Hear SamSat-218D?

Students of the Samara State Aerospace University are having trouble getting a signal from their satellite, SamSat-218D. They are now reaching out to the radio amateur community, inviting everybody with sufficiently sensitive UHF VHF band (144 MHz) equipment to help by listening to SamSat-218D. The satellite was entirely built by students and went into space on board of a Soyuz-2 rocket on April 26, 2016. This is their call (translated by Google):

Continue reading “Can You Hear SamSat-218D?”

Analog To Digital Converter (ADC): A True Understanding

Back in the day where the microprocessor was our standard building block, we tended to concentrate on computation and processing of data and not so much on I/O. Simply put there were a lot of things we had to get working just so we could then read the state of an I/O port or a counter.

Nowadays the microcontroller has taken care of most of the system level needs with the luxury of built in RAM memory and the ability to upload our code. That leaves us able to concentrate on the major role of a microcontroller: to interpret something about the environment, make decisions, and often output the result to energize a motor, LED, or some other twiddly bits.

Often the usefulness of a small microcontroller project depends on being able to interpret external signals in the form of voltage or less often, current. For example the output of a photocell, or a temperature sensor may use an analog voltage to indicate brightness or the temperature. Enter the Analog to Digital Converter (ADC) with the ability to convert an external signal to a processor readable value.

Continue reading “Analog To Digital Converter (ADC): A True Understanding”

Screw Drive Tractor Is About To Conquer Canada

The incredible screw drive tractor is back. We’ve covered the previous test ride, which ended with a bearing pillow block ripping in half, but since then, again, a lot of repair work has been done. [REDNIC79] reinforced the load-bearing parts and put on a fresh pair of “tires”. The result is still as unbelievable as the previous versions, but it now propels itself forward at a blazing 3 mph (this time without tearing itself apart).

screw_drive_tractor_welding_screw_pods[REDNIC79] walks us through all the details of the improvements he made since the first version. After the last failure, he figured, that a larger screw pod diameter would give the vehicle a better floatation while smaller thread profile would prevent the screws from digging too deep into the ground, thus reducing the force required to move the vehicle forward.

[REDNIC79] found four identical 100 pounds, 16 inch diameter propane tanks to build the new pods from. The tanks were a bit too short for the tractor, so he cut open two of the tanks and used them to extend the other two before welding a double thread screw onto each. He also tapered the front ends of the tanks to make the ride even smoother. After mounting the new pods to the speedster, a pair of custom steel chain guards were added to prevent rocks from getting into the chain. And then, it was time for another test ride. Enjoy the video:

Continue reading “Screw Drive Tractor Is About To Conquer Canada”

35 MPH NERF Darts!

Did you know the muzzle velocity of a NERF dart out of a toy gun? Neither did [MJHanagan] until he did all sorts of measurement. And now we all know: between 35 and 40 miles per hour (around 60 km/h).

foo_thumbnailFirst, he prototyped a single beam-break detector (shown above) and then expanded his build to two in order to get velocity info. A Propeller microcontroller took care of measuring the timing. Then came the gratuitous statistics. He took six different darts and shot them each 21 times, recording the timings. Dart #3 was the winner, but they all had similar average speeds. You’re not going to win the office NERF war by cherry-picking darts.

Anyway, [MJ] and his son had a good time testing them out, and he thinks this might make a good kids’ intro to science and statistics. We think that’s a great idea. You won’t be surprised that we’ve covered NERF chronographs before, but this implementation is definitely the scienciest!

Thanks [drudrudru] for the tip!