1
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?

More than 3 years have passed since last update.

M5Stack / M5Core2 + AMG8833 (サーマルカメラ) を試してみた。

Last updated at Posted at 2021-12-21

オリジナル

参考記事

参考コード

作成記事

https://macsbug.wordpress.com/2018/06/08/m5stack-thermal-camera-with-amg8833/
https://macsbug.wordpress.com/2018/09/08/m5stack-thermal-camera-part-2/

購入したセンサー

AliexpressでAMG8833を購入。
AMG8833.png

動作確認

Arduino UNOで動作確認。I2Cアドレスは0x69だった。

ソースコードはこちら。

ビルドエラーが発生

fork/exec /Users/kitazaki/Library/Arduino15/packages/m5stack/tools/esptool_py/3.0.0/esptool.py: no such file or directory
ボードM5Stack-Core2に対するコンパイル時にエラーが発生しました。

解決方法
エディタで ~/Library/Arduino15/packages/m5stack/hardware/esp32/1.0.9/platform.txt を開いて esptool のコマンド名を変更する。

- tools.esptool_py.cmd=esptool.py
- tools.esptool_py.cmd.linux=esptool.py
- tools.esptool_py.cmd.windows=esptool.exe
+ tools.esptool_py.cmd=esptool
+ tools.esptool_py.cmd.linux=esptool
+ tools.esptool_py.cmd.windows=esptool

Arduino IDEを再起動。

参考記事

http://blog.livedoor.jp/nandemoke/archives/52246327.html
http://blog.livedoor.jp/nandemoke/archives/52246610.html

実際に動かしたコード

M5Stack_AMG8833_02

M5Stack GreyとAMG8833で動作確認。(8x8マス表示)

AMG8833_01.jpg

ソースコードはこちら。

M5Stack_AMG8833_03

M5Stack GreyとAMG8833で動作確認。(8x8マスをバイリニアで画素補完表示)

AMG8833.jpg

ソースコードはこちら。

M5Core2_AMG8833_02

M5Core2とAMG8833で動作確認。(8x8マス表示)

M5Core2_AMG8833_02.jpg

ソースコードはこちら。

M5Core2_AMG8833_03

M5Core2とAMG8833で動作確認。(8x8マスをバイリニアで画素補完表示)

M5Core2_AMG8833_03.jpg

ソースコードはこちら。

1
0
1

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
1
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?