|
Fireduino下载后无法运行
发表于 2017-4-13 10:11:21
浏览:5732
|
回复:1
打印
只看该作者
[复制链接]
楼主
收到板子后,我按照下面步骤操作
1安装驱动程序,由于是Win10,重启禁用驱动程序强制签名,成功安装驱动
2以管理员身份运行Arduino
3下载程序
int ledPin = 3; // LED connected to digital pin 13
void setup()
{
pinMode(ledPin, OUTPUT); // sets the digital pin as output
}
void loop()
{
digitalWrite(ledPin, HIGH); // sets the LED on
delay(1000); // waits for a second
}
提示:
------------
Packaging...
------------
done
------------
Uploading...
------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
done
下载程序后L灯和3灯交替闪烁,连接串口后提示如下:
Welcome to Use Fireduino
But now an error is detected
Thank you for using Fireduino and thank you for your support!
Copyright (c) 2016 T-CHIP INTELLIGENCE TECHNOLOGY CO.,LTD.
For more information, please visit website <http://www.t-firefly.com/>,
or email to <service@t-firefly.com>.
下载任意程序也都是这样
ArduinoIDE版本1.8.0
OS Win10x64
各位有没有遇到这样的情况?怎么解决? |
|