add S3 temperature #2077

This commit is contained in:
MichaelDvP
2024-10-10 13:19:12 +02:00
parent c4e9f3c328
commit e78b54dc23
5 changed files with 62 additions and 1 deletions

View File

@@ -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>