繁体   English   中英

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

[英]Problems with HTTP client management on Waveshare e-paper ESP32 board

大家,早安。 我正在基于IDE Arduino上的ESP32版本开发用于Waveshare电子显示器的应用程序。 该指令是在显示器上打印由Web服务在特定地址提供的位图图像。 作为一个初学者,我不清楚如何使用GxEPD库打印位图,但是这个问题是次要的。 首先,我试图恢复“更简单”的Web资源的内容,即由ESP8266提供的文本/纯HTML,该ESP8266被编程为充当“基本” 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);

}

我还想补充一点,我已经尝试了一些Web资源,ESP32始终以这种方式运行。 第一个失败,第二个成功,但是使卡崩溃。 我的想法已经用完了,无法对代码进行进一步的故障排除...

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

而且,正如您在输出中所看到的,正是该行将为您提供异常。

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

如果使用正确的库,也可能是因为您没有在等待连接!

重要的是要等待,直到已连接。 在安装结束时添加:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM