Question about datasheet and 7 segment display

I'm trying to get used to reading data sheets. I have a 7 segment single digit display (Ledtech LC 8031-11). Are the segments usually labeled clockwise from the top ABCDEF with G being the middle horizontal segment? I'm not seeing anything on the data sheet that tells me anything.

A

F | | B

E | | C

D

I'm trying to get used to reading data sheets. I have a 7 segment single digit display (Ledtech LC 8031-11). Are the segments usually labeled clockwise from the top ABCDEF with G being the middle horizontal segment?

Correct.

The datasheet alway assume you know what is a , b , c ... The datasheet will tell yopu what pin is for which segments and it is a coomun anode or a commun cathode. And also the current and voltage of the segments. example : 1.8 V @ 10mA. And DONT forget the limiting resistors !!!

I'm going to assume that I will need a resistor for each segment. Correct?

Yes. a resister per segment.

I have a 7 segment single digit display (Ledtech LC 8031-11).

I try to locate on the web the datasheet with no sucess. This display is a CA <-- Commun Anode or CC <-- Commun Cathode
If CA, the CA goes to +5, if CC the CC goes to GND. To display them using the code digitalWrite( pin, LOW or HIGH ) is : use LOW with CA, or use HIGH with CC.

I imagine you will find the part is very similar to 8041-11, different color perhaps.
http://www.datasheetdir.com/LC8041-11+download

Here you go, ledtech website a little difficult to follow
http://www.ledtech.com.tw/newweb/newweb/img/images_product/LA(C)8031-11B%20EWRN.pdf

Summerman:
I have a 7 segment single digit display (Ledtech LC 8031-11)

That model number is for a 17-segment alphanumeric display, not 7-segment.

The datasheet shows the face of the display and what each of the 17 segments are called. Then it shows which pin goes to each segment.

@CrossRoads

I will use those sites for futures use. Thanks. :wink:

@johnwasser

I notice the LC is a CC - Commun Cathode Alphanumeric display. So how can we help the PO Summerman ? I guess he is wondering how to connect the display. 17 pins... usage of shift registers.

I finally got it figured out and have it up and running. The Data sheet I pulled off the web is for a Ledtech single digit display with four models. I found a couple of different data sheets that had this one listed and the easiest one to use is a single page. There are several models on the page and the one I used to get what I needed was for the LC80X1-11 which I figured was the one I have. It took me a couple of nights putting the circuit together and taking it apart several times to finally get it figured out and working. This has given me some good learning on how use data sheets.

Another question I have is concerning the difference between a common cathode (LC80X1-11) and the common anode (LA80X1-11) type. I have a grab bag of these single digit displays of both types. I tried hooking one of the common anode types up but it isn't working. There must be a different way to hook those up than the common cathode types.

Thanks everyone for the input to this discussion. I sure appreciate the help.

Summerman:
Another question I have is concerning the difference between a common cathode (LC80X1-11) and the common anode (LA80X1-11) type. I have a grab bag of these single digit displays of both types. I tried hooking one of the common anode types up but it isn't working. There must be a different way to hook those up than the common cathode types.

The difference is the direction the current flows through the LEDs. Each segment still connects through a resistor to a data pin. The Common is either tied to Ground (Common Cathode) and the segment lights when the output pin is HIGH or connected to +5 (Common Anode) and the segment lights when the output pin is LOW.

This should answer your anode/cathode question. The logic part can be the arduino output, a shift register, etc.

Thanks. That works. I just need to play around with circuit and sketch to make sure I understand what is going on. Thanks for that explanation.

CrossRoads,

Thanks for the diagram.

Is that a shift register in the diagram?

Yes, just happened to be on the diagram I started from.

The prior diagram would work with a 'normal' '595 ike 74HC595.
The TPIC6B595 is open drain tho, so the outputs need pullup resisters.
It would actually be hooked like this. Current to drive the segments comes from +5, not from the device.