arduino IDE编译错误
Arduino:1.6.6 (Windows 10), 开发板:"Arduino/Genuino Uno"
exec: "E:\\1.6.6\\Arduino\\hardware\\tools\\avr/bin/avr-g++": file does not exist
编译有误。
我是几乎没有任何基础的新手,照着教程做,可是arduino IDE给的示例运行也会出错。百度上找的也没看懂(而且好像跟我的问题不一样),求各位大神指点。
补充:从同学那边把IDE整个文件夹拷贝过来也没用,换了几个版本也米用。。。。。。。。。。。。。。。后来我关了杀毒软件(应该没关系吧=-=)从同学那里拷了一个avr-g++过来,然后错误信息变成这样了(用的是blink示例) 展开
没有安装LiquidCrystal_I2C这个库,找不到LiquidCrystal_I2C.h头文件。
Arduino是一款便捷灵活、方便上手的开源电子原型平台。包含硬件(各种型号的Arduino板)和软件(Arduino IDE)。由一个欧洲开发团队于2005年冬季开发。其成员包括Massimo Banzi、David Cuartielles、Tom Igoe、Gianluca Martino、David Mellis和Nicholas Zambetti等。
它构建于开放原始码simple I/O介面版,并且具有使用类似Java、C语言的Processing/Wiring开发环境。主要包含两个主要的部分:硬件部分是可以用来做电路连接的Arduino电路板;另外一个则是Arduino IDE,你的计算机中的程序开发环境。你只要在IDE中编写程序代码,将程序上传到Arduino电路板后,程序便会告诉Arduino电路板要做些什么了。
Arduino能通过各种各样的传感器来感知环境,通过控制灯光、马达和其他的装置来反馈、影响环境。板子上的微控制器可以通过Arduino的编程语言来编写程序,编译成二进制文件,烧录进微控制器。对Arduino的编程是通过 Arduino编程语言 (基于 Wiring)和Arduino开发环境(基于 Processing)来实现的。基于Arduino的项目,可以只包含Arduino,也可以包含Arduino和其他一些在PC上运行的软件,他们之间进行通信 (比如 Flash, Processing, MaxMSP)来实现。
2023-06-12 广告
重装好几次了,官网下的,同学那边直接拷过来也米用
你打开 debug 看一下具体什么错误
The error is caused by using Arduino AVR Boards 1.6.10 with Arduino IDE 1.6.6, they are incompatible. The solution is to either:
Use Arduino IDE 1.6.9 or 1.6.5-r5 instead
If you want to stick with 1.6.6 for some reason you can install Arduino AVR Boards 1.6.9 using Boards Manager(Tools > Board > Boards Manager... > Arduino AVR Boards(click on it) > Select version > 1.6.9 > Install) - I've had problems reinstalling the previous Arduino AVR Boards version with Boards Manager so you may have to reinstall the Arduino IDE if you can't compile after going back to Arduino AVR Boards 1.6.9.