LED Matrix Failure

From eLinux.org
Revision as of 14:25, 3 September 2015 by Dbkinder (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Goal

This article documents the design of an easily portable "roll up" 70 x 30 RGB APA102 LED matrix display banner, driven from a MinnowBoard Turbot board. We'll talk about the issues encountered with its implementation, and the resulting redesign that addressed some unanticipated complications and critical failures.
LED-matric.jpg Rgb-test.jpg


Components

4pin-male-dotstar.jpg 4pin-female-dotstar.jpg

Layout

Base

The background base for the matrix display was made with some black upholstery fabric cut to 57" x 30" and the edges hemmed to prevent fraying. Then, a manual metal grommet press was used to add grommets to each of the four corners.
Grommet-1.jpg Grommet-2.jpg

Left→Right Left→Right

The DotStar LEDs were arranged in a chained sequence; each strip cut and aligned on the fabric in a "left to right - left to right", sequence similar to traditional LCD panels, also referred to as "Row Major" sequence. This sequence can be illustrated using a 5x5 pixel example:

 01 02 03 04 05
 06 07 08 09 10
 11 12 13 14 15
 16 17 18 19 20
 21 22 23 24 25

By arranging the LED strips like this, two wires (for the SPI clock and data lines) are needed to connect the end of one LED strip to the beginning of the next. (In the 5x5 pixel example above, two wires connect form the end at 05 to the beginning of the next line at 06). This creates a wiring nightmare on the back side of the design where long wires run the width of the matrix:

Backside-wiring-led.jpg Backside-closeup-led.jpg

The thought was, by designing it this way and working similar to existing display devices, software support would be easy and require little or no effort to implement. Projects such as FBTFT(https://github.com/notro/fbtft/wiki) could be used without modification. While this was true, the long wires created both signaling and logistical problems during implementation.

Sewing to Upholstery

The LED strips were sewn to the upholstery using a fine needle and thread. Alas, we quickly discovered the thread tension could easily damage the flex pads between each LED on the LED strips (where the strips can be cut). It was also hard to keep the spacing consistent between each row while sewing the strips directly to the upholstery. (Consistent spacing is important to a nice matrix display.)
Dotstar-spacing.jpg

Connections

Power Connections

One of the major time consuming tasks on the project was making the power connections. Each LED strip needed both power and ground, and these connections required even distribution across the LED strips and two power supplies were needed because of the number of LEDs used. Careful consideration had to made to ensure that the two supplies were not connected to each other. In the image below, the black wires are ground and the white wires are +5V. Two red wires are visible which are the separate +5V connections to the two power supplies.
Power-ledmatrix.jpg

Long Signal Wires

During initial testing with the MinnowBoard Turbot, we discovered that the SPI clock and data signals wires between the MinnowBoard Turbot and the first LED on the DotStar string had to be less than 24 inches or the signal strength would not work. However, we saw the signals between the end of one LED string and the beginning of the next were about 55 inches long and they did work. After closer inspection with an oscilloscope, it was clear that the APA102 RGB LEDs provided a much higher drive strength for the SPI signals, so as a quick fix, we connected two of the DotStar LEDs only a few inches from the MinnowBoard Turbot and then used a longer connection to the first set of LEDs on the matrix. These initial two LEDs can either be programmed as off (black) or used as status indicators. (For this project we added some code to indicate the status and timing of some of the signals.)

Short-dotstar-connection.jpg Short-dotstar-connection-part.jpg


Broken Flex Pads

As we mentioned earlier, the long wires on the back side of the matrix display fabric were proving problematic both in length and logistics. The long wires also created tension on the flex pads at the end of each LED strip, and caused many of the pads to rip off and forcing us to repair the display by soldering the wires directly to the LED.

Led-broken-flex.jpg

Redesign

Left→Right Right→Left

By rewiring the LED strips to use a "left to right - right to left" sequence, we can eliminate the use of the long wires on the back, also referred to as a "zigzag" sequence. In this design, we only need two short wires to connect the end of one row to the beginning of the next. Using our 5x5 pixel example, it would look like this:

 01 02 03 04 05
 10 09 08 07 06
 11 12 13 14 15
 20 19 18 17 16
 21 22 23 24 25

This matrix encoding can be easily handled in the software; the trade off here is between a little more difficult in software, and a LOT easier and more reliable in hardware.

Layout and Features

The new layout uses a custom PCB to connect the ends of the two adjacent rows of LED strips and routes the signals, instead of using individual wires in the previous design. This creates a solid connection and eliminates the flexing stress on the end flex pads. It also helps keep the row spacing consistent by keeping an even spacing on each side. The PCB has holes added, so it could be sewn to the base upholstery fabric without damaging the LED strips. Two solder points are available at the top and bottom edges of the PCB to provide power and ground and ensures that each strip gets power evenly.

Dotstar-adapter.png Dotstar-adapter.jpg


Design Files

Soldering


Dotstar-adapter-solder1.jpg

Dotstar-adapter-solder2.jpg

Dotstar-adapter-solder3.jpg