2020年8月13日木曜日

Raspberry PiにJupyterにpsutilをインストールして、CPU温度を取得する

Raspberry Piで、psutilを使用してCPU温度を取得するには、以下のコードを実行します。

〇CPU温度を取得した画面

サンプルコード

以下のコードをノートブックに張り付け、実行します。
import psutil

#print(psutil.sensors_temperatures())
print("CPU temp: {}".format(psutil.sensors_temperatures()['cpu-thermal'][0].current))

psutilのインストール手順

以下のコマンドを実行します(pipenvの場合)。
pipenv install psutil

関連情報

Raspberry Pi(Raspbian Buster)にJupyter Labをインストールする

0 件のコメント:

コメントを投稿