Add GPU fan control, live telemetry, and per-profile fan curves in HyperSwap dashboard

This commit is contained in:
drjones
2026-08-23 08:56:06 -07:00
parent 850e1aa565
commit 1f198ae10e
9 changed files with 1237 additions and 6 deletions

View File

@@ -26,3 +26,13 @@
.glow-card {
animation: pulseGlow 4s infinite ease-in-out;
}
@keyframes spinFan {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.fan-spinning {
display: inline-block;
animation: spinFan 1s linear infinite;
}