Check Psu [new] Jun 2026
Random shutdowns, restarts, or "Blue Screen of Death" (BSOD) errors.
async function runDiagnostic() const btn = document.querySelector('.btn'); btn.disabled = true; btn.innerText = "Polling Hardware..."; check psu
<div class="grid"> <div class="card" style="border-color: #007bff;"> <h3>+12V Rail</h3> <div class="value" id="val-12v">-- V</div> </div> <div class="card" style="border-color: #28a745;"> <h3>+5V Rail</h3> <div class="value" id="val-5v">-- V</div> </div> <div class="card" style="border-color: #ffc107;"> <h3>+3.3V Rail</h3> <div class="value" id="val-3v">-- V</div> </div> </div> Random shutdowns, restarts, or "Blue Screen of Death"
According to ATX specifications, voltages should stay within ±5%. +12V Rail: Should be between 11.4V and 12.6V. +5V Rail: Should be between 4.75V and 5.25V. +3.3V Rail: Should be between 3.14V and 3.47V. +5V Rail: Should be between 4
<div style="display: flex; justify-content: space-between; align-items: center;"> <div> Status: <span id="main-status" class="status-badge HEALTHY">IDLE</span> </div> <button class="btn" onclick="runDiagnostic()">Check PSU</button> </div>
The Power Supply Unit (PSU) is the heart of any desktop computer, converting AC power from your wall outlet into DC power that your components can use. When a PC fails to start, shuts down randomly, or exhibits strange behavior, a faulty PSU is often the culprit. This guide covers multiple methods to check if your PSU is working correctly.
return "timestamp": time.strftime("%H:%M:%S"), "status": status.value, "readings": readings, "load_percent": random.randint(20, 80), # Simulated load "alerts": alerts