我在ESP-01上工作了很长时间,并且由于缺少GPIO端口而试图转移到ESP-12。
我很难在ESP-12上运行代码而无法理解问题。我已将ESP连接到模式1的启动工作:
ets Jan 8 2013,rst cause:2, boot mode:(1,6)
并上传了一个简单的代码:
void setup() {
pinMode(13, OUTPUT);
Serial.begin(74880);
Serial.println("Hello, world");
}
void loop() {
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
上传成功结束,但当转移到模式3(运行模式)时,我什么都没得到!
ets Jan 8 2013,rst cause:2, boot mode:(3,6)
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x0f
csum 0x0f
~ld
无论如何我的意思是将LED连接到引脚13会产生任何结果(恒定为ON),甚至没有串行打印!
我错过了什么!?