ラズパイのCPU温度を取得する

2024/01/18

Raspbian11.5, Python3.9.2

def get_temp():
    t = open('/sys/class/thermal/thermal_zone0/temp')
    temp = int(t.read()) / 1000
    t.close()
    return temp

print(get_temp())


PythonでCPUの温度などを測定する【軽量版】
https://qiita.com/girlfellfromsky/items/90021d4fb65577e954c9