Reverse engineering LED display help needed. Where to look?

I'm interested in seeing if anyone has knowledge/experience with the pinouts on this 6" 7 segment LED display board. I could use it for a project if I could figure out whether it used a standardized library that might be available. These are out of some sort of lotto machines used in a gas station. On ebay at the moment and would be perfect for a project I have.

Link to LED auction

Do you have possession of one?

One is shipping, but I haven't received it yet.

The printing on the three chips is important. That is very likely the key to your success. Try to get the vendor to provide a high resolution picture of them.

Or be patient.

Looks like the seller has caught the connector with a soldering iron or something on the one in the photo.

At least the pins are clearly labeled.

It looks as though you need a 5V logic supply, and a 12V supply to light the LEDS.

Large displays often have multiple LEDs in series for each segment, so the higher supply voltage is required.

The first thing I would do is ask for a schematic for the display board. The next thing is find out what displays are being used and get a data sheet for them. Then find out what other parts are on the board and get data sheets for them. Armed with this you can proceed to reverse engineer the module.

Probably tpic6b595 drivers, one per digit.

Very easy to control, you won't need a library.

As soon as it arrives, may I pick your brain on how?

Who's brain? Not clear who you were responding to! If you quote a few words of the person you are responding to, that really helps.

Potting/RTV/whitesilicon - keeps the connector from shaking loose.

Ah, yes I see that now.

I'd have removed it before taking the photo though.

Sorry for the confusion. This forum works a little differently than I am accustomed to. I thought clicking "Reply" on the actual thread comment would respond specifically to that comment.

I was referring to Picking PaulRB's brain since he seemed to indicate some familiarity with the most likely chipset being used and how to control.

Actually, I think you are spot on. The datasheet on the tpic6b595 chip shows the same inputs as the board connector shown in a screenshot above with the exception of the 12v pins added on this unit.

I'm really very new to programming for Arduino and have only used the LCDI2C for displaying information on my project. Can you, or anyone here, post an example project that utilizes a seven digit led display like this? I will continue to research myself, but appreciate the assist if anyone can save me time. Thanks!

It does. Unfortunately, there is no visual indicator.

(I have strong personal opinions on that choice. The opinion includes inappropriate language and "bug".)

Me too, but still only an educated guess. When the item arrives, hopefully you can confirm by reading the markings on the chips.

If we are correct, to control those chips, we can use standard Arduino shiftOut() function, sending 1 byte per digit/chip. The bits in each byte will control which of the segments (A-F) get lit.

Something like

const byte SERpin = 2;
const byte SRCKpin = 3;
const byte RCKpin = 4;
const byte Gpin = 9;

void setup() {
  pinMode(SERpin, OUTPUT);
  pinMode(SRCKpin, OUTPUT);
  pinMode(RCKpin, OUTPUT);
  pinMode(Gpin, OUTPUT);

  analogWrite(Gpin, 255);

  digitalWrite(RCKpin, LOW);
  shiftOut(SERpin, SRCKpin, MSBFIRST, 0b11111111);
  shiftOut(SERpin, SRCKpin, MSBFIRST, 0b11111111);
  shiftOut(SERpin, SRCKpin, MSBFIRST, 0b11111111);
  digitalWrite(RCKpin, HIGH);
}

void loop() {
}

TI Chip

You were correct.

I tried your code but it didn't do anything. I searched and found an old thread Troubleshooting TPIC6B595N that had code I loaded and now can verify that all segments light up (it lights everything and then turns off and repeats). To know I have a working display is fantastic news, but I am still only at the beginning of learning how to make this function as a simple countdown timer.

I am still looking for any links to tutorials or reading material on using shift registers that might help me along the way.

Thanks for your spot on advice so far.

The shift register part on WOKWI has some working examples you can examine.

I'd really like to know why.

Should I have put

analogWrite(Gpin, 0);

?

The Arduino already has a built-in count-up timer. It's the millis() function. It starts at zero when the arduino is powered up or reset and increases by 1 each millisecond.

To make a countdown timer, you just need to select the time when you want your countdown timer to hit zero. Subtract millis() from that time and you have a countdown timer, the remaining time in milliseconds before that zero time.

The next step is to turn that remaining time in milliseconds into seconds, assuming that's what you want.

After that, turn that remaining seconds time into hundreds, tens and units of seconds digits, using / and %.

Then, for each of those digits, turn the digit value into the pattern of segments A-F for display on a 7-segment display.

Finally, shift out those segment patterns to the driver chips.

One second later, repeat the process.

Yes! 255 everything was off, now all segments are on.

Now I am on to the next step of implementing what I've learned to make a countdown timer. I'm just relieved to see life coming out, with at least the promise of it doing my bidding!