极客工坊

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 10972|回复: 3

Arduino pro mini下载程序不成功

[复制链接]
发表于 2015-1-28 23:26:40 | 显示全部楼层 |阅读模式
确保连线正确,而且版型和串口号都已选择好,下载完后显示如图片所示,显示成功,但是好像根本就没下载到板子里面,请教高手这是什么原因?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
回复

使用道具 举报

发表于 2015-1-29 03:06:20 | 显示全部楼层
你可以先试一下自带的Blink程序。
  1. /*
  2.   Blink
  3.   Turns on an LED on for one second, then off for one second, repeatedly.

  4.   This example code is in the public domain.
  5. */

  6. // Pin 13 has an LED connected on most Arduino boards.
  7. // give it a name:
  8. int led = 13;

  9. // the setup routine runs once when you press reset:
  10. void setup() {               
  11.   // initialize the digital pin as an output.
  12.   pinMode(led, OUTPUT);     
  13. }

  14. // the loop routine runs over and over again forever:
  15. void loop() {
  16.   digitalWrite(led, HIGH);   // turn the LED on (HIGH is the voltage level)
  17.   delay(1000);               // wait for a second
  18.   digitalWrite(led, LOW);    // turn the LED off by making the voltage LOW
  19.   delay(1000);               // wait for a second
  20. }
复制代码
回复 支持 反对

使用道具 举报

发表于 2015-1-29 10:42:01 | 显示全部楼层
如果你手头有UNO,可以用UNO来接它写入程序,又方便又安全
回复 支持 反对

使用道具 举报

 楼主| 发表于 2015-2-3 20:01:51 | 显示全部楼层
谢谢大家的指点。现在已经确定,这样也是下载成功的,就是不知道为什么这样显示
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|联系我们|极客工坊

GMT+8, 2026-6-8 11:19 , Processed in 0.036483 second(s), 20 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表