mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
add S3 temperature #2077
This commit is contained in:
@@ -97,7 +97,8 @@ const HardwareStatus = () => {
|
||||
(data.cpu_cores === 1 ? 'single-core)' : 'dual-core)') +
|
||||
' @ ' +
|
||||
data.cpu_freq_mhz +
|
||||
' Mhz'
|
||||
' Mhz' +
|
||||
(data.temperature ? ', T: ' + data.temperature + ' °C' : '')
|
||||
}
|
||||
/>
|
||||
</ListItem>
|
||||
|
||||
@@ -41,6 +41,7 @@ export interface SystemStatus {
|
||||
has_loader: boolean;
|
||||
has_partition: boolean;
|
||||
status: string;
|
||||
temperature?: number;
|
||||
}
|
||||
|
||||
export enum LogLevel {
|
||||
|
||||
Reference in New Issue
Block a user