我需要帮助,因为我的 arduino IDE 有问题。我想使用 RFID 模块,所以我安装了库,但是当我单击 Arduino 终端上的“验证”时,我得到了:
Warning: platform.txt from the 'Arduino AVR Boards' core contains compiler.path={runtime.tools.avr-gcc.path}/bin/ exceeded, automatically converted to compiler.path=/usr/bin/. It is advisable to upgrade this heart.
/media/netherr591/elegoo/Français/code/Lesson 21 RC522 RFID Module/MF-RC522_RFID/MF-RC522_RFID.ino:29:17: fatal error: SPI. h: No file or folder of this type
compilation completed.
exit status 1
Build error for Arduino Mega or Mega 2560 board
答案1
我在使用 HX711 库测量重量的简单程序时也遇到了同样的问题。如果我的解决方案不适合您,我建议您从文件/首选项中启用“详细输出”选项“已选中”。因此,您将脚本的全部说明复制到剪贴板。
就我而言,我是在尝试从命令行编译程序时找到它的。首先
gcc-avr 和 avr-libc 都不在 arduino 的依赖项中。因此,安装它们后,我就可以运行它了。
希望能帮助到你 !