I was told by a professor that using C code one could heat a single pixel on an old monitor to the point that the monitor would overheat and smoke. Have any of you come across anything that would support this? I am having a debate in my office on whether this is possible or not.
-
There was a way with some old monitors you could increase the cycle time and smoke the monitor. – Lance Roberts Nov 06 '08 at 21:44
5 Answers
With old PC monochrome monitors, you could programmatically turn off the horizontal sync signal which would cause internal bits in the monitor to overheat and physically fail.

- 951,095
- 183
- 1,149
- 1,285
Well, the old multi-sync CRTs were a bit flaky. Get them in a state (resolution) where the vertical and horizontal deflection coils would stop moving the electron beam around (and not turn the beam off), it would burn a nice pinhole in the phosphor coating. Messing with the signals sent to the CRT wasn't hard, you could reprogram the CRT controller with some simple OUT instructions. Smoke? Nah, it was on the inside. It was a problem for a year or two, I was just a pup back then.
Never actually smoked one myself, but great urban professor myth.

- 922,412
- 146
- 1,693
- 2,536
Ah the killer poke. This clearly was possible on certain very early computer models. The Commodore PET is the one that springs to mind.

- 1,281
- 1
- 14
- 19
-
I wonder what happens if you try this on a c64 emulator like vice...don't look at me, I'm not gonna try it... – leeand00 Dec 10 '09 at 22:38
This myth is probably popping up because monitors have an effect where pixels that don't change become "burnt" but the term is slang, not literally burn.
On a CRT or Plasma, you can "burn" a pixel by using it excessively, causing the pixel to get stuck. LCD will appear to do this to, but if you simply leave the monitor off for a few hours, the burnt image will go away, CRTs and Plasmas on the other hand, are damaged forever.

- 9,406
- 4
- 36
- 44
You could definitely burn out old (< 1990 monitors) by writing bad data to the crt controller, on the old PC's. they would smoke and cease to work. I did it when I was a BIOS writer.
Ed