在OSX上获取温度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在OSX上获取温度相关的知识,希望对你有一定的参考价值。
ioreg -n IOHWSensor | awk '/location/ || /current-value/ || /"type"/' | sed -e 's/[^"]*"//' -e 's/" =//' -e 's/location//' -e 's/type//' -e 's/"//g' | awk '{ d=($2/65536); if ($1=="current-value") print substr(d,1,7) " " ; if ($1!="current-value") print $0 }' | sed -e 's/temperature/Celsius/' -e 's/voltage/volts/' -e 's/fanspeed/fan RPM/' -e 's/current/Amps/' -e 's/^temp$//' -e 's/ //' | awk '{ if ((NR % 3) == 0) print $0; else printf $0 " " }'
以上是关于在OSX上获取温度的主要内容,如果未能解决你的问题,请参考以下文章
在 OSX 上使用 python 通过蓝牙获取 GPS 坐标