Waveshare 电子纸 ESP32 板上的 HTTP 客户端管理问题



大家早上好。 我正在开发一个电子Waveshare显示器的应用程序,基于IDE Arduino上的ESP32版本。该指令是在显示器上打印由特定地址的 Web 服务提供的位图图像。作为一个初学者,我不清楚如何使用 GxEPD 库打印位图,但这个问题是次要的。 首先,我正在尝试恢复"更简单"的Web资源的内容,即由ESP8266提供的文本/纯HTML ,其编程方式可充当"基本"Web服务器。在这种情况下,ESP32 必须获取此简短的测试文本,然后将其显示在显示屏上。 但是,有一个缺点我无法解决。ESP32 对资源的第一次 GET 尝试总是失败;在第二次尝试中,它会运行,获取资源并将其打印在串行输出上,但在将其打印到 Waveshare 显示器上之前,系统崩溃并重新启动。 这是串行输出:

Display initialized!
HTTP began!
Error on HTTP request
HTTP communication ended

HTTP began!
HTTP GET accepted!
200
Welcome! This is a test page of the ESP8266 Web Server.
.
.
Guru Meditation Error: Core  1 panic'ed (LoadProhibited). Exception was unhandled.
Core 1 register dump:
PC      : 0x4015ea54  PS      : 0x00060430  A0      : 0x800d4856  A1      : 0x3ffb1ea0
A2      : 0x3ffb1f10  A3      : 0x00000000  A4      : 0x00000625  A5      : 0x3ffc8eb8
A6      : 0x00000001  A7      : 0x00000175  A8      : 0x00000000  A9      : 0x3ffb1e80
A10     : 0x3ffafe88  A11     : 0x00000000  A12     : 0x00000002  A13     : 0x0000ff00
A14     : 0x00ff0000  A15     : 0xff000000  SAR     : 0x0000000a  EXCCAUSE: 0x0000001c
EXCVADDR: 0x00000010  LBEG    : 0x400014fd  LEND    : 0x4000150d  LCOUNT  : 0xffffffff
Backtrace: 0x4015ea54:0x3ffb1ea0 0x400d4853:0x3ffb1ec0 0x400d48c5:0x3ffb1ee0 0x400d1946:0x3ffb1f00 0x400d8d05:0x3ffb1fb0 0x40088b9d:0x3ffb1fd0
Rebooting...

然后esp32 重新启动并重新启动,第一个请求失败,然后是第二个成功并立即使其崩溃并再次重新启动的请求。

esp32 上刷的代码如下:

#include <GxEPD.h>
#include <GxGDEW075T8/GxGDEW075T8.h>

#include <Fonts/FreeMonoBold9pt7b.h>
#include <Fonts/FreeMonoBold12pt7b.h>
#include <Fonts/FreeMonoBold18pt7b.h>
#include <Fonts/FreeMonoBold24pt7b.h>
#include <GxIO/GxIO.h>
#include <GxIO/GxIO_SPI/GxIO_SPI.h>
#include <WiFi.h>
#include <HTTPClient.h>
GxIO_Class io(SPI, /*CS=5*/ 15, /*DC=*/ 27, /*RST=*/ 26); // arbitrary selection of 17, 16
GxEPD_Class display(io, /*RST=*/ 26, /*BUSY=*/ 25); // arbitrary selection of (16), 4
const char* ssid = "joan";
const char* password = "joan1q2w";
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Avvio completato!n");
// setup the display
display.init();
Serial.println("Display initialized!n");
/* ISTRUZIONI SPECIALI PER IL NOSTRO MODELLO DI ESP32 WAVESHARE */
SPI.end(); // release standard SPI pins, e.g. SCK(18), MISO(19), MOSI(23), SS(5)
SPI.begin(13, 12, 14, 15); // map and init SPI pins SCK(13), MISO(12), MOSI(14), SS(15)
/*  FINE ISTRUZIONI SPECIALI */
WiFi.begin(ssid, password);

}
void loop()
{
HTTPClient httpclient;
httpclient.begin("http://172.16.0.104/welcome");
Serial.println("HTTP began!");
int httpCode = httpclient.GET();  // Questo in realtà serve per verificare il codice della richiesta e fare error handling. non è la richiesta vera e propria!
if (httpCode > 0)   // Se la GET va a buon fine, posso fare effettivamente l'acquisizione
{
Serial.println("HTTP GET accepted!");
String payload = httpclient.getString();  // ritorna una String con la risposta.
Serial.println(httpCode);
Serial.println(payload);
}
else
{
Serial.println("Error on HTTP request");
}
httpclient.end();
Serial.println("HTTP communication ended");
delay(15000);
}

我还想补充一点,我已经尝试了几种网络资源,ESP32 总是这样运行;第一个 get 失败,第二个成功但卡崩溃。 我已经没有想法了,无法对代码进行进一步的故障排除......

我在Arduino库中看不到任何end()函数。

而且,正如您在输出中看到的那样,是行将为您提供例外。

因此,可能IDE采用了错误的库(来自Arduino的库,而不是来自ESP32的库(。

如果它需要正确的库,也可能是因为您没有等待连接!

等待很重要,直到连接为止。 在安装结束时添加以下内容:

while(WiFi.status() != WL_CONNECTED) { 
delay(500);
Serial.print(".");
}

最新更新