[LINUX] HDD Temp (Hard Disk Drive Temperature) Support?
#1
is there no way to display HDD temps in XBMC. i have search the source code and the only referance to hddtemp is in "GUIInfoManager.cpp" but it does not seem to linked anywhere like CPUTEMP that is these files:

AdvancedSettings.cpp
AdvancedSettings.h
CPUInfo.cpp
GUIInfoManager.cpp
GUIInfoManager.h
xbmcmodule.cpp

could info be supported ? for use in advancesettings like cputemp is

current code in advacedsettings.xml for cpu.
Code:
<cputempcommand>echo "$(sensors -u | tail -n4 | grep temp1_input | awk '{print $2 }' |awk '{printf("%d\n",$1 + 0.5);}') C"</cputempcommand>
so maybe we could use:
Code:
<hddtempcommand>echo "$(hddtemp -n /dev/sda) C"</hddtempcommand>
Reply

Logout Mark Read Team Forum Stats Members Help
[LINUX] HDD Temp (Hard Disk Drive Temperature) Support?0