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


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" を検索

インストール!

コンパイル!

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