Prove a backlight is alive with a torch, and map what runs through a hinge
Task
Run the torch test on a live display, and document the four systems that share a laptop hinge so that a post-repair fault can be attributed correctly.
Steps
- With the laptop running and the screen at its normal brightness, record the brightness setting in
lab/lid/baseline.txt. - Set brightness to minimum and shine a torch at the screen at a steep angle. Record in
lab/lid/torch.txtwhether the desktop is faintly visible, and write one line explaining what a YES would prove on a machine whose screen appeared dead. - Write
lab/lid/hinge.csvwith headersystem,runs_through_hinge,symptom_if_pinched,symptom_if_disconnectedcovering the video cable, the camera and microphone module, the Wi-Fi antennas and, where fitted, the cellular antennas. - Open the system's own device list and record in
lab/lid/devices.txtthe exact names of the camera, the microphone and the wireless adapter as the operating system reports them. - Write
lab/lid/attribution.md: given 'the technician replaced the screen and Wi-Fi is now weak in some lid positions', state the most likely cause and the one observation that would confirm it.
Verify
grep -c . lab/lid/baseline.txt
grep -Eic 'yes|no' lab/lid/torch.txt
awk -F, 'NR>1 && NF>=4 {n++} END {print n" system(s) mapped"}' lab/lid/hinge.csv
grep -c . lab/lid/devices.txt
grep -Eic 'lid|angle|hinge|position' lab/lid/attribution.md
Four or more systems mapped, three or more device names recorded, and the attribution note mentioning lid position -- because the position-dependence is the observation that distinguishes a pinched lead from a failed card.
Notes
The torch test is the single cheapest diagnostic in this whole domain. It separates 'the display is dead' from 'the backlight is dead' in two seconds and needs nothing but a light.
This is an independent study companion for CompTIA A+ Core 1 220-1201 and is not produced by or endorsed by CompTIA.