Fixing Broken Monitors By Shining A Flashlight

[dyril] over on the EEVblog has a broken LED TV. It’s a fairly standard Samsung TV from 2012 that unfortunately had a little bit of corrosion on the flexible circuit boards thanks to excessive humidity. One day, [dyril] turned on his TV and found about one-third of the screen was glitchy. After [dyril] took the TV apart, an extremely strange fix was found: shining a light on the corroded flexible circuit board fixed the TV.

The fix, obviously, was to solder a USB light to a power rail on the TV and hot glue the light so it shines on the offending circuit. Solving a problem is one thing, though, understanding why you’ve solved the problem is another thing entirely. [dyril] has no idea why this fix works, and it’s doubtful anyone can give him a complete explanation.

The TV is fixed, and although you can’t argue with results, there is a burning question: how on Earth does shining a light on a broken circuit board fix a TV? Speculation on the EEVblog thread seems to have settled on something similar to the photonic reset of the Raspberry Pi 2. In the Raspberry Pi 2, a small chip scale package (CSP) used in the power supply section would fail when exposed to light. This reset the Pi, and turned out to be a very educational introduction to photons and energy levels for thousands of people with a Pi.

The best guess from the EEVblog is that a chip on the offending board handles a differential signal going to the flex circuit. This chip is sensitive to light, and shutting it down with photons allows the other half of the differential signal to take over. It’s a hand-wavy explanation, but then again this is a very, very weird problem.

You can check out [dyril]’s video demonstration of the problem and solution below. Thanks [Rasz] for sending this one in.

Continue reading “Fixing Broken Monitors By Shining A Flashlight”

How To Use Lidar With The Raspberry Pi

The ability to inexpensively but accurately measure distance between an autonomous vehicle or robot and nearby objects is a challenging problem for hackers. Knowing the distance is key to obstacle avoidance. Running into something with a small robot may be a trivial problem but could be deadly with a big one like an autonomous vehicle.

My interest in distance measurement for obstacle avoidance stems from my entry in the 2013 NASA Sample Return Robot (SRR) Competition. I used a web camera for vision processing and attempted various visual techniques for making measurements, without a lot of success. At the competition, two entrants used scanning lidars which piqued my interest in them.

Continue reading “How To Use Lidar With The Raspberry Pi”

Link Trucker Is A Tiny Networking Giant

If you’re a networking professional, there are professional tools for verifying that everything’s as it should be on the business end of an Ethernet cable. These professional tools often come along with a professional pricetag. If you’re just trying to wire up a single office, the pro gear can be overkill. Unless you make it yourself on the cheap! And now you can.

[Kristopher Marciniak] designed and built an inexpensive device that verifies the basics:

  • Is the link up? Is this cable connected?
  • Can it get a DHCP address?
  • Can it perform a DNS lookup?
  • Can it open a webpage?

What’s going on under the hood? A Raspberry Pi, you’d think. A BeagleBoard? Our hearts were warmed to see a throwback to a more civilized age: an ENC28J60 breakout board and an Arduino Uno. That’s right, [Kristopher] replicated a couple-hundred dollar network tester for the price of a few lattes. And by using a pre-made housing, [Kristopher]’s version looks great too. Watch it work in the video just below the break.

Building an embedded network device used to be a lot more work, but it could be done. One of our favorites is still [Ian Lesnet’s] webserver on a business card from way back in 2008 which also used the ENC28J60 Ethernet chip.
Continue reading “Link Trucker Is A Tiny Networking Giant”

The Trouble With Intel’s Management Engine

Something is rotten in the state of Intel. Over the last decade or so, Intel has dedicated enormous efforts to the security of their microcontrollers. For Intel, this is the only logical thing to do; you really, really want to know if the firmware running on a device is the firmware you want to run on a device. Anything else, and the device is wide open to balaclava-wearing hackers.

Intel’s first efforts toward cryptographically signed firmware began in the early 2000s with embedded security subsystems using Trusted Platform Modules (TPM). These small crypto chips, along with the BIOS, form the root of trust for modern computers. If the TPM is secure, the rest of the computer can be secure, or so the theory goes.

The TPM model has been shown to be vulnerable to attack, though. Intel’s solution was to add another layer of security: the (Intel) Management Engine (ME). Extremely little is known about the ME, except for some of its capabilities. The ME has complete access to all of a computer’s memory, its network connections, and every peripheral connected to a computer. It runs when the computer is hibernating, and can intercept TCP/IP traffic. Own the ME and you own the computer.

There are no known vulnerabilities in the ME to exploit right now: we’re all locked out of the ME. But that is security through obscurity. Once the ME falls, everything with an Intel chip will fall. It is, by far, the scariest security threat today, and it’s one that’s made even worse by our own ignorance of how the ME works.

Continue reading “The Trouble With Intel’s Management Engine”

A Power Switch For The Chromecast

Chromecasts are fantastic little products, they’re basically little HDMI sticks you can plug into any monitor or TV, and then stream content using your phone or computer as the controller. They are powered by a micro USB port in the back, and if you’re lucky, your TV has a port you can suck the juice off. But what if you want to turn it off while you use a different input on your TV so that your monitor will auto-sleep? You might have to build a power switch.

Now in all honesty, the Chromecast gets hot but the amount of power it draws when not in use is still pretty negligible compared to the draw of your TV. Every watt counts, and [Ilias] took this as an opportunity to refine his skills and combine a system using an Arduino, Bluetooth, and Android to create a robust power switch solution for the Chromecast.

The setup is rather simple. An HC-05 Bluetooth module is connected to an Attiny85, with some transistors to control a 5V power output. The Arduino takes care of a bluetooth connection and uses a serial input to control the transistor output. Finally, this is all controlled by a Tasker plugin on the Android phone, which sends serial messages via Bluetooth.

All the information you’ll need to make one yourself is available at [Ilias’] GitHub repository. For more information on the Chromecast, why not check out our review from almost three years ago — it’s getting old!

Pack Your Plywood Cuts With Genetic Algortihms

Reading (or writing!) Hackaday, we find that people are often solving problems for us that we didn’t even know that we had. Take [Jack Qiao]’s SVGnest for instance. If you’ve ever used a laser cutter, for instance, you’ve probably thought for a second or two about how to best pack the objects into a sheet, given it your best shot, and then moved on. But if you had a lot of parts, and their shapes were irregular, and you wanted to minimize materials cost, you’d think up something better.

SVGnest, which runs in a browser, takes a bunch of SVG shapes and a bounding box as an input, and then tries to pack them all as well as possible. Actually optimizing the placement is a computationally expensive proposition, and that’s considering the placement order to be fixed and allowing only 90 degree rotations of each piece.

Once you consider all the possible orders in which you place the pieces, it becomes ridiculously computationally expensive, so SVGnest cheats and uses a genetic algorithm, which essentially swaps a few pieces and tests for an improvement many, many times over. Doing this randomly would be silly, so the routine packs the biggest pieces first, and then back-fills the small ones wherever they fit, possibly moving the big ones around to accommodate.

That’s a lot of computational work, but the end result is amazing. SVGnest packs shapes better than we could ever hope to, and as well as some commercial nesting software. Kudos. And now that the software is written, as soon as you stumble upon this problem yourself, you have a means to get to the solution. Thanks [Jack]!

Screen Printing Electroluminescent T-Shirts From Tron

Travel around to enough security conferences, faires, and festivals, and you’ll see some crazy wearable electronics. Most of them blink, and most of them use LEDs. Electroluminescent panels are used for wearables, but that’s a niche – the panels are a little expensive, and you have to deal with high frequency AC instead of the much simpler, ‘plug in a LiPo here’ circuit LED-based wearables have to contend with.

Still, electroluminescent panels are cool, and thanks to how EL panels are made, you can screen print EL displays. That’s what some of the guys at AMBRO Manufacturing did recently: screen printing electroluminescent lights directly onto garments. It’s t-shirts from Tron made real.

EL panels and EL wire are really only three separate parts: a conductor of some sort, a phosphor, and another conductor. Pass a high-frequency AC current through the conductors, and the phosphor lights up. With EL wire, it’s a thick copper wire clad in phosphor and wrapped in a very fine copper wire. EL displays are made with conductive ITO-coated glass or plastic. It’s a relatively simple construction, and one that is perfectly suited for screen printing. In fact, one of the first EL displays – the DSKY, the user interface for the Apollo Guidance Computer – used screen printed seven-segment EL displays.

The folks at AMBRO only have a proof of concept right now, but it is a completely screen printed electroluminescent design on fabric. To light it up, the t-shirt will need an inverter, but this is the beginnings of t-shirts from Tron.

Video below.

Continue reading “Screen Printing Electroluminescent T-Shirts From Tron”