is there any integrated circuit HEX to 7 segment decoder for a common anode 7 SEG display that generates codes to display hex digits from 0 to F as shown in the photo. Thanks
Asked
Active
Viewed 4,468 times
0

Samir Fassak
- 1
- 1
- 1
-
Yes. You should be able to find it by searching. – user57037 May 08 '18 at 03:18
-
1I may have spoken too soon. There used to be such, but I believe they are now all discontinued. – user57037 May 08 '18 at 03:24
-
Do you need this for board repair? ...new design? ...just because you have these LED displays? The answers may be different for each. – Jack Creasey May 08 '18 at 04:44
-
There used to be a TIL311 which displayed hex format, but it has long been deprecated from the market. If you find any they cost ten times the original cost. – May 08 '18 at 04:54
-
use microcontroller. Demux the pins to drive all displays together. – Mitu Raj May 08 '18 at 06:15
2 Answers
3
Not aware of any standard 74xx chip solution. My recommendation is to use a low-end microcontroller that has at least 11 GPIO pins. The hex to 7-segment conversion can be done with a lookup table (array) and a few lines of code.

AlmostDone
- 1,749
- 7
- 11
-
I'am using PIC16F84A which contains 13 pins and i have a 6 digit multiplexed 7 SEG display which need 6 pins to select digits, so it remains just 7 pins. I tried 74xx series but their problem they display digits 6 and 9 in a different format not like i want as mentioned in the photo . – Samir Fassak May 08 '18 at 14:58
-
If your display is LCD, you could AY0438 segment drivers. Their input is serial (SPI) which would free up i/o pins on the MCU. – AlmostDone May 08 '18 at 18:07
2
besides the microcontroller suggested by AlmostDone you can use a small EEPROM with (at least) 4 address pins and 7 data pins.
You can tie any unused address pins to ground.

ratchet freak
- 2,803
- 14
- 12
-
I'am using PIC16F84A which contains 13 pins and i have a 6 digit multiplexed 7 SEG display which need 6 pins to select digits, so it remains just 7 pins. I tried 74xx series but their problem they display digits 6 and 9 in a different format not like i want as mentioned in the photo – Samir Fassak May 08 '18 at 14:59