Connect-Program Raspberry Pi and a MM5451 LED Display Driver

The subject here is connecting the Raspberry Pi to a MM5451 LED display driver. This is written in Python to demonstrate bitwise programming and shift register operation.

Using only two input pins (clock and data) for serial date input produces 35 open drain outputs. The 35 outputs are 15mA sink. The MM5451 comes in a 40 pin DIP package as used here.

Internal current generator eliminates need for external resistors and has continuous brightness control. Wide supply voltage up to 13.2V – inputs TTL level.

Connect-Program Raspberry Pi and a MM5451 LED Display DriverA single pin controls the LED display brightness by setting a reference current through a variable resistor connected to VDD or to a separate supply of 13.2V maximum.

The M5451 are specially designed to operate 4 or 5-digit alphanumeric displays with minimal interface with the display and the data source. Serial data transfer from the data source to the display driver is accomplished with 2 signals, serial data and clock.

Using a format of a leading β€œ1” followed by the 35 data bits allows data transfer without an additional load signal. The 35 data bits are latched after the 36th bit is complete, thus providing non-multiplexed, direct drive to the display(s).

Note: these are open drain outputs that switch to ground when the associated bit is HIGH. Outputs change only if the serial data bits differ from the previous time.

Display brightness is determined by control of the output current LED displays. A 0.001uF capacitor should be connected to brightness control, pin 19, to prevent possible oscillations.

Connecting to Raspberry Pi

Fig. 1 shows the two connections to Raspberry Pi. MM5451 pins 11-18 (Bits 0-7) are connected to a LN516YA common-anode display (schematic). Bit 1 is segment a. 8-LEDs are connected to pins 3-10 – all anodes go to Vcc of 5V. Note no current limiting resistors are required.

Segment code for the LN516YA is stored in array segCode where segCode[0] displays 0, etc. There are two serial shift routines ssrWriteMSB(value) and ssrWriteLSB(value) used based on the viewing angle of the LEDs. Note routines zeroWrite() and pulseCLK().

Connect-Program Raspberry Pi and a MM5451 LED Display Driver SchematicWithin the β€œfor” loop the sequence starts by placing a HIGH (1) in the data pin then sending a clock pulse. Next myCount using a modulus function with 10 is shifted out to the MM5551 then the binary count itself is shift out.

That is only 16-bits but we must have 36 clock cycles before the data will be latched to the 35 output pins. (Bit 36 is not output!) Routine zeroWrite(21) takes care the remaining bits need (I set this to 0s) to enable the internal latch function.

The value of 21 used here is based on 36 – 16 bits used which is 20: the Python for loop counts from zero so it's 20 + 1. This value changes based on bits shifted in.

As the program runs we get a binary count on the LEDs and 0-9 on the display.

 

For more detail: Connect-Program Raspberry Pi and a MM5451 LED Display Driver


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top