Video: Modding a consumer TV to use RGB input

You can talk about almost anything that you want to on this board.

Moderator: Moderators

User avatar
Drew Sebastino
Formerly Espozo
Posts: 3496
Joined: Mon Sep 15, 2014 4:35 pm
Location: Richmond, Virginia

Video: Modding a consumer TV to use RGB input

Post by Drew Sebastino »

I thought this was pretty fascinating:

https://youtu.be/DLz6pgvsZ_I
https://youtu.be/NkpSBK3g-gA (Followup video)

I'm really shocked at how well the picture turned out; it looks just like an arcade monitor. Really, if you wanted to build a custom arcade cabinet, you could save yourself from having to buy an expensive monitor and save an old CRT in the process. All of my CRTs are newer models with component though, so it isn't worth the effort (not that I'm knowledgeable enough anyway, and you really need to be when working with high voltages...).

The one advantage would be for consoles like the SNES that natively output RGB, you wouldn't need an adapter for component. Of course, you would still need to either make a plug adapter for SCART, or just make your own cable.

Something unfortunate I noticed though with how this mod is implemented, is that the onscreen display gets knocked out when using RGB. I wonder if you could make something on some perfboard a stick it in the TV; it would just have to look for if the microcontroller is outputting the blanking signal and use the microcontroller RGB output if so and the RGB input if not. I have no idea how you would actually implement this though.

The one thing I didn't understand were the extra resistors 6 minutes into the video; they were never really explained.
lidnariq
Posts: 11429
Joined: Sun Apr 13, 2008 11:12 am

Re: Video: Modding a consumer TV to use RGB input

Post by lidnariq »

Drew Sebastino wrote:Something unfortunate I noticed though with how this mod is implemented, is that the onscreen display gets knocked out when using RGB.
What do you mean by "knocked out"? When both the video overlay and external source are driving at the same time, the voltage received by the 'jungle' IC is even higher. Look at https://youtu.be/DLz6pgvsZ_I?t=906 where he's got the service menu overlaid on top of the Tandy 1000's DOS.
The one thing I didn't understand were the extra resistors 6 minutes into the video; they were never really explained.
What extra resistors? The circuit after modification looks like this:

Code: Select all

redOSD --R1--+--- "jungle" IC
             |
             R2
             |
redEXT ------+
             |
             R3
             |
            gnd
R2+R3 has to be equal in resistance to the original pulldown before it was removed; otherwise the OSD will get brighter or dimmer. The exact value of all three together are either chosen for impedance matching, and/or are chosen to reduce the voltage from the external source to the range expected by the "jungle" IC.
User avatar
Drew Sebastino
Formerly Espozo
Posts: 3496
Joined: Mon Sep 15, 2014 4:35 pm
Location: Richmond, Virginia

Re: Video: Modding a consumer TV to use RGB input

Post by Drew Sebastino »

lidnariq wrote:
Drew Sebastino wrote:Something unfortunate I noticed though with how this mod is implemented, is that the onscreen display gets knocked out when using RGB.
What do you mean by "knocked out"? When both the video overlay and external source are driving at the same time, the voltage received by the 'jungle' IC is even higher. Look at https://youtu.be/DLz6pgvsZ_I?t=906 where he's got the service menu overlaid on top of the Tandy 1000's DOS.
You're right; I was confusing this for a similar video I watched later where enabling the RGB input completely disabled the onscreen display. It is a minor shame that it is only still being blended together somewhat rather than overlayed; it's probably not worth the effort though.
What extra resistors? The circuit after modification looks like this:
That's what I was referring to; I guess I didn't think too hard about it...
User avatar
tokumaru
Posts: 12427
Joined: Sat Feb 12, 2005 9:43 pm
Location: Rio de Janeiro - Brazil

Re: Video: Modding a consumer TV to use RGB input

Post by tokumaru »

At first I thought this was a really cool and simple mod, but it doesn't solve the biggest problem with retro consoles which is the fact that CRT TVs won't be around for long and modern TVs have really poor support for them. If I attempt something like this I might end up ruining a CRT TV and I'll be worse off than I was before!
Drag
Posts: 1615
Joined: Mon Sep 27, 2004 2:57 pm
Contact:

Re: Video: Modding a consumer TV to use RGB input

Post by Drag »

It's probably just meant to be a cool and simple mod, not an end-all be-all solution to declining technology. :P

Also, I believe the actual cathode-ray-tubes are still manufactured, just that nobody's using them in TVs anymore.
lidnariq
Posts: 11429
Joined: Sun Apr 13, 2008 11:12 am

Re: Video: Modding a consumer TV to use RGB input

Post by lidnariq »

If they're not using them in TVs, what are they using them in?
User avatar
koitsu
Posts: 4201
Joined: Sun Sep 19, 2004 9:28 pm
Location: A world gone mad

Re: Video: Modding a consumer TV to use RGB input

Post by koitsu »

Space ships.
User avatar
tokumaru
Posts: 12427
Joined: Sat Feb 12, 2005 9:43 pm
Location: Rio de Janeiro - Brazil

Re: Video: Modding a consumer TV to use RGB input

Post by tokumaru »

And since they aren't widely used anymore, manufacturing costs have likely gone way up, right?
User avatar
rainwarrior
Posts: 8731
Joined: Sun Jan 22, 2012 12:03 pm
Location: Canada
Contact:

Re: Video: Modding a consumer TV to use RGB input

Post by rainwarrior »

Drag wrote:Also, I believe the actual cathode-ray-tubes are still manufactured, just that nobody's using them in TVs anymore.
There actually seems to be a sizeable market for new low-end CRTs in Asia. (Not quite sure why, though.)

From what I understand the quality is pretty low. Not sure if it's something you'd really want to use. Here's a search on Alibaba. You might notice that most of these require you to buy 100 at a time:
https://www.alibaba.com/trade/search?SearchText=crt+tv
User avatar
pubby
Posts: 583
Joined: Thu Mar 31, 2016 11:15 am

Re: Video: Modding a consumer TV to use RGB input

Post by pubby »

tokumaru wrote:the biggest problem with retro consoles which is the fact that CRT TVs won't be around for long
But surely CRTs will be around longer than the game systems. I bet there exist 1000 CRTs for every NES.
User avatar
tokumaru
Posts: 12427
Joined: Sat Feb 12, 2005 9:43 pm
Location: Rio de Janeiro - Brazil

Re: Video: Modding a consumer TV to use RGB input

Post by tokumaru »

pubby wrote:But surely CRTs will be around longer than the game systems. I bet there exist 1000 CRTs for every NES.
Based on quantities, I guess you're right, but I believe TVs have a higher failure rate than old game consoles (how many TVs from the 80's are still in working order?), and for a particular individual it can be a hassle to go hunting for a "new" CRT. The fact that they exist SOMEWHERE doesn't necessarily mean they're easily accessible to any retro gamer.
User avatar
Drew Sebastino
Formerly Espozo
Posts: 3496
Joined: Mon Sep 15, 2014 4:35 pm
Location: Richmond, Virginia

Re: Video: Modding a consumer TV to use RGB input

Post by Drew Sebastino »

I'm curious, what is typically first to fail on a CRT TV anyway, if you can narrow it down like that?
User avatar
TmEE
Posts: 960
Joined: Wed Feb 13, 2008 9:10 am
Location: Norway (50 and 60Hz compatible :P)
Contact:

Re: Video: Modding a consumer TV to use RGB input

Post by TmEE »

Cathodes wear out, leading to discoloration, particularly in dark areas. On better things that use cathode calibration this process won't be visible until end of line for the tube (10...40k hours, depending on tube).
In electronics side there's the usual electrolythic capacitors issue and to lesser extent HV transformer going out. There aren't a whole lot of things that go out in them. Modern tubes (high end stuff in eraly 90s and most rest since 2000s) use impregnated cathodes which last much longer than things in 80s and earlier, several tens of thousands of working hours before image gets unacceptable.
On a tube that shows discoloration laready you can probably boost filament voltage and you can a bit more life out the thing. A really beefy video amp that can drive even the most worn cathode into cutoff would also help but such things were never pursued and nowdays it would be quite hard to get that going as high voltage and high bandwidth transistors are no longer made. Computer monitors fail earlier simply because their video amps cannot drive the tube as hard as TV amps can, they usually have 50...80V swing while TV amps got up to 180V, much more playroom. TV amps can afford it though as their bandwidth is much smaller and slew rate limits don't really enter the picture :P
User avatar
Memblers
Site Admin
Posts: 4044
Joined: Mon Sep 20, 2004 6:04 am
Location: Indianapolis
Contact:

Re: Video: Modding a consumer TV to use RGB input

Post by Memblers »

lidnariq wrote: If they're not using them in TVs, what are they using them in?
X-Ray machines? :P For actual display use, I'd imagine there's a niche market for replacement parts for expensive long service-life stuff, like military equipment. There may be some kind of reasons to prefer it in some situations that I can't think of. For example, I work with cryogenic equipment, we build some nice vacuum fluorescent displays. Our older stuff, and competitors' stuff, uses LCD displays. But when you take a rack out of the freezer, and that cold air hits the LCD, it becomes useless. VFDs don't have that problem. They also don't have any issues with viewing angle or contrast. VFDs seem to be heading in the same direction as CRTs.
lidnariq
Posts: 11429
Joined: Sun Apr 13, 2008 11:12 am

Re: Video: Modding a consumer TV to use RGB input

Post by lidnariq »

I picked up a Planar EL320.256-F6 from a ham swapfest more than a decade ago. Gorgeous display, similarly suitable to extreme conditions. Never figured out anything to do with it, though.

I occasionally longed for their 640x480x9color (3 levels each red and green) display that used the VESA internal Feature Connector. Waaaay to expensive for me to justify.
Post Reply