2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

スマホの気圧センサーと台風

Last updated at Posted at 2024-08-16

はじめに

以前スマホのセンサーをPythonで操作するアプリをPlyerで作ってみたが、気圧センサーが本当に動作しているのか?がわからなかったが、ちょうど、今日台風7号がきていたので試してみた。

気圧センサーのデータ取得

PythonでAndroidスマホの各種センサー情報を取得する。

barometer.pressureで取得。

Barometer
from plyer import barometer
#有効
barometer.enable()
#取得
output+=f'Barometer\n{barometer.pressure:0.2f} hPa\n\n'

結果

台風が近づくとどんどん気圧が下がっていく事がわかる。あらためて数値で見てみると面白い。

image.png

以上

2
0
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?