Author Topic: Re-purposing a photo frame. Looking to identify the LCD  (Read 8423 times)

0 Members and 1 Guest are viewing this topic.

Offline viperidaeTopic starter

  • Frequent Contributor
  • **
  • Posts: 306
  • Country: nz
Re-purposing a photo frame. Looking to identify the LCD
« on: July 05, 2015, 12:35:54 am »
I've got an old 7" LCD photo frame from ~2008
Thinking about attaching it to a raspberry pi, however I need to find a data sheet on the LCD panel

Haven't had much luck goolging the various numbers or the company website, www.b001.cn I don't speak Chinese but none of their LCM products have a 26 pin option.

"E203460" is apparently a type of LCD, but I can't find any with 26 pin flatflex's
I'm thinking it's a custom flat flex with a cut down interface size, like a standard 24bit LCD with only 18 bits used.
 

Offline marshallh

  • Supporter
  • ****
  • Posts: 1462
  • Country: us
    • retroactive
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #1 on: July 05, 2015, 04:03:18 am »
Could also have the RGB channels time interleaved.

Wire up a fpga/logic analyzer and watch while it runs.
Verilog tips
BGA soldering intro

11:37 <@ktemkin> c4757p: marshall has transcended communications media
11:37 <@ktemkin> He speaks protocols directly.
 

Offline bktemp

  • Super Contributor
  • ***
  • Posts: 1616
  • Country: de
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #2 on: July 05, 2015, 04:15:04 am »
More likely: It is an analogue TFT. They are widely used in photo frames, because they are cheap.
When you look at the display while it is running: Do you notice 30Hz line flicker?
If it is an analogue TFT, then it is quite difficult to drive, because you need so supply several analogue voltages including the image data gamma corrected and inverted every second line.
 

Offline ale500

  • Frequent Contributor
  • **
  • Posts: 415
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #3 on: July 05, 2015, 04:20:36 am »
And the RGB signals are sometimes also DC-Biased... ugly... get a /" from EBay with Digital interface, less problems :)

If you really want to drive that display, and you haven't found a datasheet,
then the driving board, if you still have it, is what you have to analyze.
With patience and an oscilloscope capture every waveform for every pin.
Some pins will have higher than 5 V voltages, maybe even all different
driving voltages (no charge pumps in the TFT itself).
Little story: I had a photo frame, something like 5" with a 480x243 TFT.
It had an analog interface. There where 3 pixel clocks, those were 3
sinusoids with a few MHz, three biased color signals and various bias,
sync, and some other alternating signals.
The display had RGB analog input but these signals had alternating polarity,
if I remember correctly. The display is as dumb as it gets, there is no driving
there at all just a DAC, so you have to provide all this information yourself.

From the German forum mikrocontrollernet, you can get a (maybe similar who knows)
pin out of a 7" with 26 pins interface analog TFT:

Quote
Das Display ist ein InnoLux AT070TN07 7".

Pinbelegung:

1 GND P Ground
2 VCC P Supply voltage for scan driver
3 VGL P Negative power for scan driver
4 VGH P Positive power for scan driver
5 STVD I/O Vertical start pulse Note 1
6 STVU I/O Vertical start pulse Note 1
7 CKV I Shift clock input for scan driver
8 U/D I UP/DOWN scan control input Note 1, 2
9 OEV I Output enable control for scan driver
10 VCOM I Common electrode driving signal
11 VCOM I Common electrode driving signal
12 L/R I LEFT/RIGHT scan control input Note 1, 2
13 MOD I
Sequential sampling and simultaneous
sampling setting
14 OEH I Output enable control for data driver
15 STHL I/O Start pulse for horizontal scan line Note 1
16 STHR I/O Start pulse for horizontal scan line Note 1
17 CPH3 I
Sampling and shifting clock pulse for data
driver
18 CPH2 I
Sampling and shifting clock pulse for data
driver
19 CPH1 I
Sampling and shifting clock pulse for data
driver
20 VCC P Supply voltage for scan driver
21 GND P Ground
22 VR I Alternated video signal (Red)
23 VG I Alternated video signal (Green)
24 VB I Alternated video signal (Blue)
25 AVDD P Supply voltage for analog circuit
26 AVSS P Ground for analog circuit
« Last Edit: July 05, 2015, 04:42:30 am by ale500 »
 

Offline poot36

  • Frequent Contributor
  • **
  • Posts: 678
  • Country: ca
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #4 on: July 05, 2015, 05:46:52 am »
I would start by traceing the tracks from the display connector to what ever chip they connect to on the main board.  You may be able to use the ADC or DAC on the photo frames original main board and just send the right signals to the chip instead of trying to directly drive the lcd.  My 3 experiences with this sort of thing 1. portable dvd player lcd had a 5 bit digital input on the lcd itself and used a decoder chip that could take analog composite or s-video or be switched to digital 8bit bt656 data as an input.  2. wireless car backup camera lcd unit lcd took digital bt656 data from a composite to bt656 converter chip made by analog devices.  3. old 2003 hp digital camera i think used analog of some format to the lcd but did have a analog devices drive chip that could take analog rgb and send it to the display as well as to a composite video out jack.
 

Offline amyk

  • Super Contributor
  • ***
  • Posts: 8326
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #5 on: July 05, 2015, 01:01:13 pm »
E203460 is the UL listing number, not the part number. Notice the UL logo ("RU") next to it.

It looks like there are plenty of 26-pin LCDs with the same pinout, and they're all analogue.

http://www.hiehachi.narod.ru/
http://www.beyondinfinite.com/lcd/Library/Hannstar/HSD070I651-C.pdf
http://www.distrib-informatique.com/lcd/Library/Pvi/PW062XS3_V1.2.pdf

Associated timing controller: http://www.icbank.com/icbank_data/semi_qna/ups015.pdf

The thought occurred to me that an analogue input LCD would be ideal for interfacing to VGA if it was the right resolution, since the signal path could be made all analogue from the video card's DAC to the LC driving electrodes. No converting back to digital and then to analogue again with reduced resolution, hence 18bpp/21bpp/24bpp panels etc.

There is a 26-pin digital pinout, but it's for smaller (240x320) modules - probably not applicable to yours:

http://datasheets.gpio.dk/dl/ST22TM28%20V02.pdf
 

Offline funkathustra

  • Regular Contributor
  • *
  • Posts: 150
  • Country: us
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #6 on: July 06, 2015, 06:44:10 am »
Eww, not worth it.

Just buy a new 7" LCD from China. I go through BuyDisplay.com quite often and have never had problems with their product quality.

You'll end up with a display that actually has a datasheet, a standard pin-out, and that uses standard parallel RGB signals to drive it.
 

Offline viperidaeTopic starter

  • Frequent Contributor
  • **
  • Posts: 306
  • Country: nz
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #7 on: July 20, 2015, 04:16:48 am »
Thanks guys.

Looks like it's probably analog. Not worth it.
 

Offline miguelvp

  • Super Contributor
  • ***
  • Posts: 5550
  • Country: us
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #8 on: July 20, 2015, 04:23:36 am »
Build yourself a simple R2R DAC, or use it as an 8 color display. Just because is analog you don't have to use the intermediate values.

Edit: for example, most TE displays don't seem to use more than the 8 color combinations from RGB

With a simple 2 levels per RGB component with a simple R2R DAC you could easily do 16 colors:



« Last Edit: July 20, 2015, 04:33:37 am by miguelvp »
 

Offline bktemp

  • Super Contributor
  • ***
  • Posts: 1616
  • Country: de
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #9 on: July 20, 2015, 05:00:54 am »
Build yourself a simple R2R DAC, or use it as an 8 color display. Just because is analog you don't have to use the intermediate values.
It is not enough, because the LCD needs an AC signal. So you need at least 3 levels (a lower voltage for on, a middle voltage for off and a higher voltage for on. High and low levels are alternated each line). You could do that after the dac using inverting opamps + muxes, but it is not worth it. It ends up with a board full of analogue power supplies, amplifiers and drivers. Using a digital tft all that stuff is already integrated. And the image quality of an analogue tft is not as good as digital ones in most cases.
 

Offline amyk

  • Super Contributor
  • ***
  • Posts: 8326
Re: Re-purposing a photo frame. Looking to identify the LCD
« Reply #10 on: July 20, 2015, 05:11:15 am »
If anything, it is an excuse to practice your mixed-signal design skills...
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf