开发环境安装了arduino 1.8.11。也添加了esp8266的库,每次点编译,出来,error compiling for board generic esp8266 module。不知怎么处理。。
esp8266的arduino开发环境如何搭建啊?我这边老是出现错误。。。

用个简单的程序试一下:我的是Arduino 1.8.13
void setup() {
// put your setup code here, to run once:
Serial.begin(9600); //This pipes to the serial monitor
Serial.println("Initialize Serial Monitor");
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Hello world!"); // Print "Hello World" to the Serial Monitor
delay(1000); // wait for a second
}
下面的黑窗口,只有这些输出:<div class="blockcode"><blockquote>
Executable segment sizes:
IROM : 232936 - code in flash (default or ICACHE_FLASH_ATTR)
IRAM : 26892 / 32768 - code in IRAM (ICACHE_RAM_ATTR, ISRs...)
DATA : 1248 ) - initialized variables (global, static) in RAM/HEAP
RODATA : 748 ) / 81920 - constants (global, static) in RAM/HEAP
BSS : 24936 ) - zeroed variables (global, static) in RAM/HEAP
项目使用了 261824 字节,占用了 (27%) 程序存储空间。最大为 958448 字节。
全局变量使用了26932字节,(32%)的动态内存,余留54988字节局部变量。最大为81920字节。

