update hardware.tsx

This commit is contained in:
MacRimi
2026-04-17 20:56:07 +02:00
parent 1d61442a49
commit 68ca68c6f1
3 changed files with 259 additions and 11 deletions
+8
View File
@@ -132,6 +132,14 @@ export interface CoralTPU {
edgetpu_runtime?: string
programmed?: boolean // USB only: runtime has interacted with the device
drivers_ready: boolean
// Thermal data — PCIe/M.2 only (apex driver). Always null for USB Coral.
temperature?: number | null // °C current die temperature
temperature_trips?: number[] | null // trip_point0/1/2_temp, ordered warn→critical
thermal_warnings?: Array<{
name: string // e.g. "hw_temp_warn1"
threshold_c: number | null
enabled: boolean
}> | null
}
export interface UsbDevice {