Monoprice Monitor Internals: Round 2 (10734)
Leveraging Bitluni's work, I was able to convert one of my ESP32 into a VGA signal generator that outputs full-screen white. This gave me a low-impact way to convert a malfunctioning monitor into a lighting fixture. But the low-impact way is definitely not the optimal way, because it meant I would need a VGA cable dangling outside of the screen, connected to an ESP32, which needs its own power supply. What are my other options? The first time I opened up this monitor, I didn't understand very much of what I had looked at. A few years of tinkering lessons have been added to my brain, so I'll open it up again for another look.
This display was spared from the Great Backlight Liberation because it could still be powered on, but once I had it open, I wanted to examine its backlight in light (ha ha) of new knowledge. I found the likely wire harness for this panel's backlight, a respectable bundle of twelve wires. Flipping over the circuit board, I see those wires were labeled with:
- G_LED1-
- G_LED2-
- G_LED+
- B_LED+
- B_LED1-
- B_LED2-
- B_LED3-
- B_LED4-
- B_LED+
- G_LED1
- G_LED3-
- G_LED4-
Based on these labels, we can infer there are four "G" LED strings and four "B" LED strings, each with their own "-" wire. There are two wires for "B_LED+", but the "G" LEDs have separate "G_LED+" and "G_LED1". I don't know why they were labelled differently, but my multimeter found electrical continuity between "G_LED+" and "G_LED1" so they are wired in parallel, as are those two "B_LED+" wires. Leading me to believe that "G" and "B" LEDs each have two "+" wires corresponding to four "-" wires. So far, so good. I then turned on the monitor to probe voltage levels of these wires. I had expected something in the neighborhood of the 24V DC power supply that feeds this monitor, but my meter said the voltage level is actually in the neighborhood of 64V to 68V DC. Yikes! That's well above maximum voltage of any boost converter I have on hand, so driving the backlight without this board wouldn't be my top choice.

I see inductors and capacitors that are likely the boost conversion circuit for this backlight, but I didn't see a promising chip that might be a standalone LED driver like I see in some laptop panel teardowns. I think it is all controlled by that central main chip sitting under a heatsink. I couldn't make it drive the backlight with a PWM signal like I could the laptop panel, so I have to stay with the ESP32 VGA signal generator.

The next question is then: could I use this board to drive just the backlight? To test this possibility, I unplugged these two cables connecting to the LCD array. Some of these wires carry power, the rest carry LVDS pixel data. When fed with VGA data from my ESP32, this control board happily powered up the backlight even when it couldn't communicate with the LCD array. This is a very promising find, but I'm not ready to commit to a destructive separation just yet.
By itself, without an incoming video signal, this monitor quickly goes to sleep mode. I know that my ESP32 VGA signal can keep it awake past that initial sleep mode, but I'm not yet confident everything else will continue running for the long term. The only diagnostic channel I have for this system is the on-screen display, and if I should separate the LCD from its backlight, I would no longer be able to read the on-screen display.

It's very tempting to separate them now, because I know a lot of light is trapped back there. Look at the brightness difference when I compared a bare backlight with the same non-broken (and non-separated) Chromebook panel. I expect there to be a very bright backlight behind this LCD. But for the sake of doing things incrementally, I'll leave the LG display module intact for now and focus on integrating my ESP32 VGA signal generator.