9
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Raspberry Pi 4 Model B で Sense HAT は動きます

Last updated at Posted at 2020-08-12

Raspberry Pi 4 Model B で Sense HAT は動きます。
Raspberry Pi 3 と変わることはありません。

論よりコード

a.gif

$ python3 -c '__import__("sense_hat").SenseHat().show_message("Hello SenseHat!")'

動作確認環境

  • Rasbperry Pi 4 Model 4GB (Element14 製)
    • Raspberry Pi OS / 2020-05-27
  • Sense HAT (Element14 製)

セットアップ

$ sudo apt install -y sense-hat
$ sudo systemctl reboot

もちろん、ほかのセンサーも動きます

from sense_hat import SenseHat
sense = SenseHat()

if __name__ == '__main__':
	# Get Sensor data from Sense HAT
	v = {
		'tmpr_degC': sense.get_temperature(),
		'humd_pct':  sense.get_humidity(),
		'pres_hPa':  sense.get_pressure()
	}
	print(v)

あとがき

当然動くと思ってましたよ。

EoT

9
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?