Seven-segment display

Seven-segment display
A typical 7-segment LED display component, with decimal point.

A seven-segment display (SSD), or seven-segment indicator, is a form of electronic display device for displaying decimal numerals that is an alternative to the more complex dot-matrix displays. Seven-segment displays are widely used in digital clocks, electronic meters, and other electronic devices for displaying numerical information.[1]

The idea of the seven-segment display is quite old. In 1910, for example, a seven-segment display illuminated by incandescent bulbs was used on a power-plant boiler room signal panel.[2]

Contents

Concept and visual structure

The individual segments of a seven-segment display.

A seven segment display, as its name indicates, is composed of seven elements. Individually on or off, they can be combined to produce simplified representations of the arabic numerals. Often the seven segments are arranged in an oblique (slanted) arrangement, which aids readability. In most applications, the seven segments are of nearly uniform shape and size (usually elongated hexagons, though trapezoids and rectangles can also be used), though in the case of adding machines, the vertical segments are longer and more oddly shaped at the ends in an effort to further enhance readability.

Each of the numbers 0, 6, 7 and 9 may be represented by two or more different glyphs on seven-segment displays.

LED-based 7-segment display showing the 16 hex digits.

The seven segments are arranged as a rectangle of two vertical segments on each side with one horizontal segment on the top, middle, and bottom. Additionally, the seventh segment bisects the rectangle horizontally. There are also fourteen-segment displays and sixteen-segment displays (for full alphanumerics); however, these have mostly been replaced by dot-matrix displays.

The segments of a 7-segment display are referred to by the letters A to G, as shown to the right, where the optional DP decimal point (an "eighth segment") is used for the display of non-integer numbers.

The animation to the left cycles through the common glyphs of the ten decimal numerals and the six hexadecimal "letter digits" (A–F). It is an image sequence of a "LED" display, which is described technology-wise in the following section. Notice the variation between uppercase and lowercase letters for A–F; this is done to obtain a unique, unambiguous shape for each letter (otherwise, a capital D would look identical to an 0 (or less likely O) and a capital B would look identical to an 8).

Implementations

An incandescent light type early seven-segment display.
A mechanical seven-segment display for displaying automotive fuel prices.

Seven-segment displays may use a liquid crystal display (LCD), arrays of light-emitting diodes (LEDs), or other light-generating or controlling techniques such as cold cathode gas discharge, vacuum fluorescent, incandescent filaments, and others. For gasoline price totems and other large signs, vane displays made up of electromagnetically flipped light-reflecting segments (or "vanes") are still commonly used. An alternative to the 7-segment display in the 1950s through the 1970s was the cold-cathode, neon-lamp-like nixie tube. Starting in 1970, RCA sold a display device known as the Numitron that used incandescent filaments arranged into a seven-segment display.[3]

In a simple LED package, typically all of the cathodes (negative terminals) or all of the anodes (positive terminals) of the segment LEDs are connected together and brought out to a common pin; this is referred to as a "common cathode" or "common anode" device. Hence a 7 segment plus decimal point package will only require nine pins (though commercial products typically contain more pins, and/or spaces where pins would go, in order to match industry standard pinouts).

Integrated displays also exist, with single or multiple digits. Some of these integrated displays incorporate their own internal decoder, though most do not – each individual LED is brought out to a connecting pin as described. Multiple-digit LED displays as used in pocket calculators and similar devices used multiplexed displays to reduce the number of IC pins required to control the display. For example, all the anodes of the A segments of each digit position would be connected together and to a driver pin, while the cathodes of all segments for each digit would be connected. To operate any particular segment of any digit, the controlling integrated circuit would turn on the cathode driver for the selected digit, and the anode drivers for the desired segments; then after a short blanking interval the next digit would be selected and new segments lit, in a sequential fashion. In this manner an eight digit display with seven segments and a decimal point would require only 8 cathode drivers and 8 anode drivers, instead of sixty-four drivers and IC pins. Often in pocket calculators the digit drive lines would be used to scan the keyboard as well, providing further savings; however, pressing multiple keys at once would produce odd results on the multiplexed display.

Seven segment displays can be found in patents as early as 1908 (in U.S. Patent 974,943, F W Wood invented an 8-segment display, which displayed the number 4 using a diagonal bar), but did not achieve widespread use until the advent of LEDs in the 1970s. They are sometimes even used in unsophisticated displays like cardboard "For sale" signs, where the user either applies color to pre-printed segments, or (spray)paints color through a seven-segment digit template, to compose figures such as product prices or telephone numbers.

For many applications, dot-matrix LCDs have largely superseded LED displays, though even in LCDs 7-segment displays are very common. Unlike LEDs, the shapes of elements in an LCD panel are arbitrary since they are formed on the display by a kind of printing process. In contrast, the shapes of LED segments tend to be simple rectangles, reflecting the fact that they have to be physically moulded to shape, which makes it difficult to form more complex shapes than the segments of 7-segment displays. However, the high common recognition factor of 7-segment displays, and the comparatively high visual contrast obtained by such displays relative to dot-matrix digits, makes seven-segment multiple-digit LCD screens very common on basic calculators.

Alphabetic display

In addition to the ten numerals, seven segment displays can be used to show letters of the latin, cyrillic and greek alphabets including punctuation, but few representations are unambiguous and intuitive at the same time. It is possible to represent hexadecimal unambiguously by using a mixture of letter cases (AbCdEF is typical) and using a representation of 6 that has the top segment illuminated. This is frequently used to output hexadecimal codes for troubleshooting purposes. Short messages giving status information (e.g. "no disc" on a CD player) are also commonly represented on 7-segment displays. In the case of such messages it is not necessary for every letter to be unambiguous, merely for the words as a whole to be readable.

Similar displays with fourteen or sixteen segments are available allowing decent representations of the alphabet.

Using a restricted range of letters that look like (upside-down) digits, seven-segment displays are commonly used by school children to form words and phrases using a technique known as "calculator spelling".

Numbers to 7-segment-code

A single byte can encode the full state of a 7-segment-display. The most popular bit encodings are gfedcba and abcdefg - both usually assume 0 is off and 1 is on.

This table gives the hexadecimal encodings for displaying the digits 0 to F:

Digit gfedcba abcdefg a b c d e f g
0 0x3F 0x7E on on on on on on off
1 0x06 0x30 off on on off off off off
2 0x5B 0x6D on on off on on off on
3 0x4F 0x79 on on on on off off on
4 0x66 0x33 off on on off off on on
5 0x6D 0x5B on off on on off on on
6 0x7D 0x5F on off on on on on on
7 0x07 0x70 on on on off off off off
8 0x7F 0x7F on on on on on on on
9 0x6F 0x7B on on on on off on on
A 0x77 0x77 on on on off on on on
b 0x7C 0x1F off off on on on on on
C 0x39 0x4E on off off on on on off
d 0x5E 0x3D off on on on on off on
E 0x79 0x4F on off off on on on on
F 0x71 0x47 on off off off on on on

See also

References

  1. ^ "Seven Segment Displays". https://sharedserver.rsd17.org/teacherwebpages/ryankish/Shared%20Documents/2.3%20Date%20of%20Birth%20machine/Seven-segment%20displays.ppt. 
  2. ^ Warren O. Rogers, Power Plant Signalling System, Power and the Engineer, Vol. 32, No. 5 (Feb. 1, 1910); pages 204-206.
  3. ^ Numitron Readout

External links


Wikimedia Foundation. 2010.

Игры ⚽ Нужно сделать НИР?

Look at other dictionaries:

  • Seven-segment display character representations — The topic of seven segment display character representations revolves around the various shapes of numerical digits, letters, and punctuation devisable on seven segment displays. Such representation of characters is not standardized by any… …   Wikipedia

  • Sixteen-segment display — A sixteen segment display, sometimes called a Union Jack display or a British Flag display, is a type of display based on 16 segments that can be turned on or off according to the graphic pattern to be produced. It is an extension of the more… …   Wikipedia

  • Nine-segment display — Run through of numeric digits on a nine segment display. A nine segment display is a type of display based on 9 segments that can be turned on or off according to the graphic pattern to be produced. It is an extension of the more common seven… …   Wikipedia

  • Fourteen-segment display — A fourteen segment display (sometimes referred to as a starburst display or a Union Jack display) is a type of display based on 14 segments that can be turned on or off according to the graphic pattern to be produced. It is an extension of the… …   Wikipedia

  • Display device — Nixie tubes, LED display and VF display, top to bottom. A display device is an output device for presentation of information in visual or tactile form (the latter used for example in tactile electronic displays for blind people). When the input… …   Wikipedia

  • Dot-matrix display — Example of an animated dot matrix display. Note unlit dots. A dot matrix display is a display device used to display information on machines, clocks, railway departure indicators and many other devices requiring a simple display device of limited …   Wikipedia

  • Dot matrix display — A dot matrix display is a display device used to display information on machines, clocks, railway departure indicators and many and other devices requiring a simple display device of limited resolution. The display consists of a matrix of lights… …   Wikipedia

  • Eggcrate display — An eggcrate display is a display technology that consists of a matrix of lightbulbs. Behind the matrix lies a foam backing with a series of indentations to accommodate the bulbs, which resembles the indentations in an eggcrate.Most eggcrate… …   Wikipedia

  • Display Data Channel — The Display Data Channel or DDC is a collection of digital communication protocols between a computer display and a graphics adapter that enables the display to communicate its supported display modes to the adapter and to enable the computer… …   Wikipedia

  • Multiplexed display — An entirely typical multiplexed vacuum fluorescent display used in a videocassette recorder Multiplexed displays are electronic displays where the entire display is not driven at one time. Instead, sub units of the display (typically, rows or… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”