Author Topic: Dedicated driver for 7x11 LED matrixes?  (Read 833 times)

0 Members and 1 Guest are viewing this topic.

Offline LinuxHataTopic starter

  • Frequent Contributor
  • **
  • Posts: 356
  • Country: us
Dedicated driver for 7x11 LED matrixes?
« on: May 13, 2023, 09:40:51 pm »
Hello.
There are a lot of 7X11 LED matrixes on the market. I bought couple of them, they have cathodes from 7x side and anodes from the 11x side. The question is, since such matrixes are made, there should be some dedicated circuitry to drive it?
I know the mutliplexing options with transistors, I know about generic LED drivers like MAX7219, HT1632, TM1629A and so on. But all these are designed to drive LED matrixes in mutiple of 8 - like 8x8, 16x8, 32x16 and so on. Of course, these drivers can be also used for driving such LED matrixes, but a lot of outputs would be wasted. So maybe there is some dedicated chip for multiple 7x11 matrixes, about which I don't know?
 

Online temperance

  • Frequent Contributor
  • **
  • Posts: 490
  • Country: 00
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #1 on: May 13, 2023, 09:47:13 pm »
You can have a look at https://www.lumissil.com/home
 

Offline Benta

  • Super Contributor
  • ***
  • Posts: 5914
  • Country: de
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #2 on: May 13, 2023, 09:51:45 pm »
What exactly do you mean by "matrix"?
Are we talking 7-segment, 11 digits here, or real 7 x 11 dot-matrix?
 

Offline LinuxHataTopic starter

  • Frequent Contributor
  • **
  • Posts: 356
  • Country: us
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #3 on: May 14, 2023, 05:25:27 am »
yes, 7 by 11 pixels led matrix.
Mostly used in elevators in China.
 

Offline JustMeHere

  • Frequent Contributor
  • **
  • Posts: 763
  • Country: us
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #4 on: May 14, 2023, 06:24:30 am »
yes, 7 by 11 pixels led matrix.
Mostly used in elevators in China.

Totally depends on how the device is driven.  You need to read the datasheet, or at least post a link to your product.
 

Offline LinuxHataTopic starter

  • Frequent Contributor
  • **
  • Posts: 356
  • Country: us
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #5 on: May 14, 2023, 06:34:54 am »
It is matrix of 7x11 LEDs.  They arranged in grid, cathodes go to 7 side, anodes go to 11 side.
Have you seen 8x8 LED matrix? Exactly the same construction and arrangement, just instead of 8x8 grid, here is 7x11 grid. How can I explain any simpler?

Here's quick example with pinout from google:

https://lightkeyled.en.made-in-china.com/product/KCwEVfIrLMhs/China-RoHS-Compliant-2-2-Inch-7X11-Square-DOT-Matrix-Display-with-Pitch-5-7mm.html
 

Offline mariush

  • Super Contributor
  • ***
  • Posts: 5071
  • Country: ro
  • .
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #6 on: May 14, 2023, 06:53:55 am »
Yeah, Lumissil has a bunch of drivers that can n anodes , m cathodes  and some drivers that do matrixes, like 144 leds in a dot matrix.

ex

IS31FL3746B : https://www.digikey.com/en/products/detail/lumissil-microsystems/IS31FL3746B-QFLS4-TR/12675543
18 current sinks
Support 18×n (n=1~4) LED matrix configurations

IS31FL3728 : https://www.digikey.com/en/products/detail/lumissil-microsystems/IS31FL3728-QFLS2-TR/5319755

5~8 current source outputs for row control
8~11 outputs for column scan control
Programmable 8×8, 7×9, 6×10, 5×11 matrix

IS31FL3729 : https://www.digikey.com/en/products/detail/lumissil-microsystems/IS31FL3729-QFLS4-TR/12675527
16 current sinks
Support 16×n (n=1~8), 15×9 LED matrix configurations

and so on ...

Even if there's no exact one that does  7x11, you could still treat it as two separate 5x11 matrixes or 2 4x18 for example, and just not use the extra anodes.
« Last Edit: May 14, 2023, 06:56:55 am by mariush »
 

Offline LinuxHataTopic starter

  • Frequent Contributor
  • **
  • Posts: 356
  • Country: us
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #7 on: May 14, 2023, 06:46:44 pm »
Yes I know all that, in fact, drivers I've mentioned are far more cheap than these.
But the question is in another thing - how to find best matching driver.
Best matching means less orphan pins and more leds driven with single chip.

Say I want to drive as much of such modules as possible with a single chip. The best combo appears to be to wire chips in 22x14 matrix, which with 24x16 capable chip, such as HT1632C or similar, will leave 'only" unused 76 outputs, which I don't want to waste.

So this is why I asked, maybe there is a dedicated solution for that specific arrangement.
 

Offline spostma

  • Regular Contributor
  • *
  • Posts: 119
  • Country: nl
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #8 on: May 15, 2023, 04:59:50 pm »
The low-cost drivers often cannot supply enough current to drive a display
with many segments when you need to read the display in sunlight.

if you have a 5V microcontroller with 11 tri-state spare outputs, then you could make a charlieplexing driver
using 11 low-cost MMDT4413 NPN+PNP driver transistors and 11x 47R resistors on the common anodes or cathodes
to get a cheap 100-150mA segment current driven at 1/11 duty cycle using a 1kHz timer interrupt.
 

Offline edavid

  • Super Contributor
  • ***
  • Posts: 3387
  • Country: us
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #9 on: May 15, 2023, 07:26:29 pm »
If you look on LCSC and filter on "13 segment by 7 bit", it comes up with 2 parts, AiP1612 and SM1628C.  Maybe worth a look?
 

Offline mariush

  • Super Contributor
  • ***
  • Posts: 5071
  • Country: ro
  • .
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #10 on: May 15, 2023, 07:37:05 pm »
For the 11 anode, 7 cathode version you could probably use an ULN2003A  (7 darlingtons) on the cathodes.
As for anodes, you could have mosfet or transistor arrays or shift registers to enable only particular anodes and cathodes (of course also current limiting resistors on each cathode) ... no led drivers involved
 

Offline LinuxHataTopic starter

  • Frequent Contributor
  • **
  • Posts: 356
  • Country: us
Re: Dedicated driver for 7x11 LED matrixes?
« Reply #11 on: June 18, 2023, 03:06:38 pm »
I finally found one - TM1623 and it's clones like AIP1623 and others :)
Had a chance to look at elevator control board, so quickly "scanned" it for LED driver :D
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf