implement cpu temperature

This commit is contained in:
csehviktor
2025-07-22 19:55:59 +02:00
parent 00f7be0d25
commit 114b0ee55d
7 changed files with 46 additions and 9 deletions

View File

@@ -23,6 +23,7 @@ pub struct CPU {
pub usage: f32,
pub threads: usize,
pub breakdown: CpuBreakdown,
pub temperature: f32,
}
#[derive(Debug, Clone, Serialize, Deserialize, Default)]