arduino ide给esp8266-01上传程序失败-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 16742|回复: 16

arduino ide给esp8266-01上传程序失败

[复制链接]
发表于 2019-10-29 22:37 | 显示全部楼层 |阅读模式
arduino ide给esp8266-01上传示例程序失败
  1. /*
  2.   ESP8266 Blink by Simon Peter
  3.   Blink the blue LED on the ESP-01 module
  4.   This example code is in the public domain

  5.   The blue LED on the ESP-01 module is connected to GPIO1
  6.   (which is also the TXD pin; so we cannot use Serial.print() at the same time)

  7.   Note that this sketch uses LED_BUILTIN to find the pin with the internal LED
  8. */

  9. void setup() {
  10.   pinMode(LED_BUILTIN, OUTPUT);     // Initialize the LED_BUILTIN pin as an output
  11. }

  12. // the loop function runs over and over again forever
  13. void loop() {
  14.   digitalWrite(LED_BUILTIN, LOW);   // Turn the LED on (Note that LOW is the voltage level
  15.   // but actually the LED is on; this is because
  16.   // it is active low on the ESP-01)
  17.   delay(1000);                      // Wait for a second
  18.   digitalWrite(LED_BUILTIN, HIGH);  // Turn the LED off by making the voltage HIGH
  19.   delay(2000);                      // Wait for two seconds (to demonstrate the active low LED)
  20. }
复制代码


微信图片_20191029222559.jpg 微信图片_20191029222600.jpg

我忘了是esp8266-01还是esp8266-01s,用这个底座来连接电脑上传程序
用com串口调试工具可以连接,但是用arduino ide给esp8266-01上传示例程序却失败,如下图
123.jpg
图片有点小,我还是把 报错信息粘上来吧(下面红色字)

----------------------------------------------------------------------------------------------------------------------------------------------------------
Arduino:1.8.10 (Windows 7), 开发板:"Generic ESP8266 Module, 80 MHz, Flash, Disabled, All SSL ciphers (most compatible), ck, 40 MHz, 40MHz, DOUT (compatible), 512K (no SPIFFS), 2, nonos-sdk 2.2.1 (legacy), v2 Lower Memory, Disabled, None, Only Sketch, 115200"

项目使用了 257712 字节,占用了 (51%) 程序存储空间。最大为 499696 字节。
全局变量使用了26572字节,(32%)的动态内存,余留55348字节局部变量。最大为81920字节。
esptool.py v2.6
2.6
esptool.py v2.6
Serial port COM12
Connecting........_____....._____....._____....._____....._____....._____.....____Traceback (most recent call last):
  File "C:\Users\Administrator\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\2.5.2/tools/upload.py", line 25, in <module>
    esptool.main(fakeargs)
  File "C:/Users/Administrator/AppData/Local/Arduino15/packages/esp8266/hardware/esp8266/2.5.2/tools/esptool\esptool.py", line 2653, in main
    esp.connect(args.before)
  File "C:/Users/Administrator/AppData/Local/Arduino15/packages/esp8266/hardware/esp8266/2.5.2/tools/esptool\esptool.py", line 468, in connect
    raise FatalError('Failed to connect to %s: %s' % (self.CHIP_NAME, last_error))
esptool.FatalError: Failed to connect to ESP8266: Timed out waiting for packet header
_
选择的串口 _
不存在或开发板没有连接

在文件 -> 首选项开启
“编译过程中显示详细输出”选项
这份报告会包含更多信息。

----------------------------------------------------------------------------------------------------------------------------------------------------------

看网上别人的教程好像没做什么别的操作就可以直接写入,而我操作就不行,换了电脑试了,也换了esp8266试了
弄了半天还是不知道问题出在 哪里,希望有大神能给我指点一下啊

发表于 2019-11-22 18:58 | 显示全部楼层
myarduino666 发表于 2019-10-30 09:32
gpio0和rst同时接地吗?
是接一下就行还是得一直接着?

用铜丝一小段 连接gpio0和gnd 插入电脑即可
发表于 2019-10-29 23:43 | 显示全部楼层
选择的串口 _
不存在或开发板没有连接
发表于 2019-10-30 08:02 | 显示全部楼层
这个底座之后串口功能,如果想用来下载程序,你需要在gpio0接地,下载前RST短接到地端,使esp-01进入下载模式
 楼主| 发表于 2019-10-30 09:29 | 显示全部楼层
单片机菜鸟 发表于 2019-10-29 23:43
选择的串口 _
不存在或开发板没有连接

就是不知道找不到串口的原因在哪
 楼主| 发表于 2019-10-30 09:32 | 显示全部楼层
天狼落星 发表于 2019-10-30 08:02
这个底座之后串口功能,如果想用来下载程序,你需要在gpio0接地,下载前RST短接到地端,使esp-01进入下载模 ...

gpio0和rst同时接地吗?
是接一下就行还是得一直接着?
发表于 2019-11-2 10:32 | 显示全部楼层
没有选择端口
发表于 2020-2-16 11:31 来自手机 | 显示全部楼层
请问一下解决了吗  我也是这个问题
发表于 2020-2-16 20:19 | 显示全部楼层
受教了
看了楼主发的图片,我才知道,原来8266模块还有这种用法,
我是一直用Arduino Nano为主控,串口接8266,其它引脚接电磁阀或传感器,做一些测试工装
再把测试到数据显示到12864屏上,及传到间服务器上
发表于 2020-2-25 17:18 | 显示全部楼层
串口选对了吗,我也用的这种差不多的烧写工具,只要选对板子和串口,就可以了啊,
arduino,工具>端口,看选择的对吗。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 00:45 , Processed in 0.544068 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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