ESP32 开发板无法编译 ESP8266wifi.h 包含文件
ESP32 board can't compile the ESP8266wifi.h include file
我用的是ESP32开发板。我想从 google sheet 获取内容。我的参考代码如下
错误是 ESP8266WiFi.h:没有这样的文件或目录。
有人给我一些建议吗?谢谢
`#include <ESP8266WiFi.h>
#include "HTTPSRedirect.h"
const char* ssid = " ";
const char* password = " ";
const char* host = "script.google.com";
const char *GScriptId = "";
const int httpsPort = 443;
HTTPSRedirect* client ;
void setup(){
WiFi.begin(ssid, password);
client = new HTTPSRedirect(httpsPort);
client->setPrintResponseBody(true);
client->setContentTypeHeader("application/json");
client->connect(host, httpsPort);
}
void loop() {
String url3 = String("/macros/s/") + GScriptId + "/exec?&id=";
if (client->GET(url3, host)){
Serial.println("GET SUCCESS");
}
delay(4000);
}`
您正在构建 ESP32。 ESP32 不是 ESP8266。奇怪的是,ESP8266WiFi.h
适用于 ESP8266,而不是 ESP32。在 ESP32 上只是 WiFi.h
。
我用的是ESP32开发板。我想从 google sheet 获取内容。我的参考代码如下 错误是 ESP8266WiFi.h:没有这样的文件或目录。 有人给我一些建议吗?谢谢
`#include <ESP8266WiFi.h>
#include "HTTPSRedirect.h"
const char* ssid = " ";
const char* password = " ";
const char* host = "script.google.com";
const char *GScriptId = "";
const int httpsPort = 443;
HTTPSRedirect* client ;
void setup(){
WiFi.begin(ssid, password);
client = new HTTPSRedirect(httpsPort);
client->setPrintResponseBody(true);
client->setContentTypeHeader("application/json");
client->connect(host, httpsPort);
}
void loop() {
String url3 = String("/macros/s/") + GScriptId + "/exec?&id=";
if (client->GET(url3, host)){
Serial.println("GET SUCCESS");
}
delay(4000);
}`
您正在构建 ESP32。 ESP32 不是 ESP8266。奇怪的是,ESP8266WiFi.h
适用于 ESP8266,而不是 ESP32。在 ESP32 上只是 WiFi.h
。