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

fatal error Adafruit_TCS34725.h: No such file or directory の解決方法

Last updated at Posted at 2020-10-27

M5Stackにカラーセンサーユニットをつけて、スケッチ例をコンパイルしたら、

スケッチ例の場所: 
ファイル >> スケッチ例 >> M5Stack >> Unit >> Color

こんなエラーが出た。

fatal error: Adafruit_TCS34725.h: No such file or directory
「SD.h」に対して複数のライブラリが見つかりました
compilation terminated.
使用済:C:\Users\tatsu\OneDrive\ドキュメント\ArduinoData\packages\esp32\hardware\esp32\1.0.4\libraries\SD
未使用:C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.42.0_x86__mdqgnx93n4wtt\libraries\SD
exit status 1
Adafruit_TCS34725.h: No such file or directory

エラーメッセージ ”Adafruit_TCS34725.h: No such file or directory” をそのままググると、このサイトで誰かが同じ悩みを投稿してた。

それに対する誰かの回答

It looks like you're trying to get the Adafruit TCS34725 color sensor going.
The official source of the library is in the Adafruit's GitHub repository for the TCS34725 and there is a link at the bottom of the README for how to install a library.


つまり、ただライブラリをインストールすればいいだけのことらしい。

この回答のリンクをたどっていくと、ライブラリの名前はAdafruit TCS34725と書かれている。

To install, use the Arduino Library Manager and search for 'Adafruit TCS34725'
and install the library


早速、このとおり、Arduino IDEで、 ツール >> ライブラリの管理 >> "Adafruit TCS34725" を検索

Image from Gyazo

インストール!

コンパイル!

エラーは出なくなった。
他のエラーも消えた。


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