Electronic – this type of digits-only LCD called

avrdisplayinterfacelcdmicrocontroller

I've seen this type of LCD many times in weigh scales, calculators, gauges, micrometers, etc. I know it's a fairly traditional display but I really like its compactness, simplicity, and maybe it even costs less, versus TFTs or smartphone-type touch displays.

Digits-only LCD

[What is it called? Answered by @kevlar1818 and @stevenvh: "Seven-segment display"]

I would like to work with this type of LCD, for example, I just found this 8-digit one called VIM-878 from the Digikey catalog; here is its datasheet.

How do I interface with it? I would like to know what would be a good/common way of interfacing with it from a simple AVR microcontroller like an Atmega8 — preferably with interfacing circuitry/parts that aren't too physically large.

  • I presume some sort of driver or multiplexer would be necessary? I guess I'm looking for some beginning perspective from others who may have better experience interfacing with this type of LCD.

Best Answer

It's a 7-segments display. Unlike the dot-matrix character displays kevlar refers to these are most often not intelligent module. Most dot matrix displays have an HD44780-compatible controller which you simply can write ASCII codes to, but a 7-segment LCD will often be just the glass, with connections for segments and a number of backplanes (often up to 4).

enter image description here

Driving LCDs can be awkward since they don't use just two levels, so you can't drive them with common digital logic.

enter image description here

The best thing you can do is select a microcontroller with integrated LCD controller, which you can connect the display directly to, like the TI MSP430x4xx. Like most controllers this one also knows just segments; it isn't aware of digits or anything. (Great, first we had a dumb display, now we have a dumb driver as well!) There's reason for this. These LCD drivers are often used to drive custom LCDs which may be a mix of a numeric part, bar graphs and custom symbols. Such a symbol is also a single segment, so it makes no sense to talk about digits.

enter image description here

This display has symbols like "battery" and "alarm clock", but also all text fields, like "AM", "PM" and "SNOOZE" are symbols consisting of a single segment (i.e. controlled by a single bit).

Further reading
MSP430x4xx Family User's Guide. LCD controller is covered on p.709 ff.

Related Topic