2
2

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.

M5Stack用センサーで大気圧を測る

Last updated at Posted at 2021-05-01

M5Stack用大気圧センサーユニットを M5Stack Gray に接続して、サンプルプログラムをPlatformIOでビルドして動かしてみました。
BPS Example.png

準備

プロジェクトの作成

プロジェクトを作ります。
Project Wizard.png

platformio.ini の編集

platformio.ini を以下のように編集します。upload_port と monitor_port には、 M5Stack Gray を接続したシリアルポートを指定します。

platformio.ini
[env:m5stack-grey]
platform = espressif32
board = m5stack-grey
framework = arduino

; M5Stack ライブラリを使うための指定
lib_deps =
    m5stack/M5Stack @ ^0.3.1

; 書き込みとモニターのための指定
upload_port = /dev/cu.SLAB_USBtoUART
monitor_speed = 115200
monitor_port = /dev/cu.SLAB_USBtoUART

サンプルプログラムのコピー

https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/BPS_Unit/Arduino/BPS_Unit の3つのファイル:

  • BPS_Unit.ino
  • bmp280.cpp
  • bmp280.h

をダウンロードして、bmp280.cpp と bmp280.h を lib/bmp280 にコピーします。bmp280 フォルダは先に作っておきます。そして、BPS_Unit.inoの中身を main.cpp に上書きします。すると、フォルダ構成は以下のようになります。
フォルダ構成.png

ビルド

PROJECT TASKS から Build をクリックして、ビルドします。
ビルド.png
ターミナルに次のように出たら、ビルド完了。

〜
Compiling .pio/build/m5stack-grey/FrameworkArduino/wiring_pulse.c.o
Compiling .pio/build/m5stack-grey/FrameworkArduino/wiring_shift.c.o
Archiving .pio/build/m5stack-grey/libFrameworkArduino.a
Indexing .pio/build/m5stack-grey/libFrameworkArduino.a
Linking .pio/build/m5stack-grey/firmware.elf
Retrieving maximum program size .pio/build/m5stack-grey/firmware.elf
Checking size .pio/build/m5stack-grey/firmware.elf
Advanced Memory Usage is available via "PlatformIO Home > Project Inspect"
RAM:   [          ]   2.9% (used 15444 bytes from 532480 bytes)
Flash: [===       ]  27.6% (used 361275 bytes from 1310720 bytes)
Building .pio/build/m5stack-grey/firmware.bin
esptool.py v3.0
=================== [SUCCESS] Took 31.08 seconds ===================

Terminal will be reused by tasks, press any key to close it.

書き込みとモニタ

続いて、M5 Stack Gray をコンピュータと接続して、Upload and Monitor をクリックして書き込みます。書き込みが終わると、シリアルモニタからの出力を確認することができます。

〜
Writing at 0x00034000... (90 %)
Writing at 0x00038000... (100 %)
Wrote 361392 bytes (169294 compressed) at 0x00010000 in 4.3 seconds (effective 669.2 kbit/s)...
Hash of data verified.

Leaving...
Hard resetting via RTS pin...
================================ [SUCCESS] Took 10.89 seconds ================================
--- Available filters and text transformations: colorize, debug, default, direct, esp32_exception_decoder, hexlify, lo![BPS Example.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/1226137/64a443a0-e022-fa05-57d2-32af4b940977.png)
g2file, nocontrol, printable, send_on_enter, time
--- More details at http://bit.ly/pio-monitor-filters
--- Miniterm on /dev/cu.SLAB_USBtoUART  115200,8,N,1 ---
--- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
M5Stack initializing...[E][sd_diskio.cpp:194] sdCommand(): Card Failed! cmd: 0x00
[E][sd_diskio.cpp:775] sdcard_mount(): f_mount failed: (3) The physical drive cannot work
[E][sd_diskio.cpp:194] sdCommand(): Card Failed! cmd: 0x00
OK
BMP init success!
T =     24.35 degC      P =     1002.63 mBar    A =     88.80 m
T =     24.35 degC      P =     1002.64 mBar    A =     88.72 m

M5Stack Gray のディスプレイには、冒頭の写真のように出力されます。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?