Page 1 of 1

ESP32 MQTT EVENT ERROR

Posted: Thu Mar 11, 2021 3:29 am
by derick_jubo
Hello friends

I am new to ESP32,
Can anyone direct to the header file defining following MQTT Event Error code?

Many Thanks in advance.

```
MQTT_EVENT_ERROR
esp_tls_last_esp_err=0x8010
esp_tls_stack_err=0x7280
connect_return_code=0x0
error_type=0x1
```

Re: ESP32 MQTT EVENT ERROR

Posted: Thu Mar 11, 2021 11:49 am
by ESP_Jan
Hello,

the header file is here: https://github.com/espressif/esp-mqtt/b ... t_client.h and can be found in your IDF instalation in this location: {$IDF_PATH}/components/mqtt/esp-mqtt/include/mqtt_client.h

Please also take a look at this API reference to check your error codes (0x8010 and 0x7280). https://docs.espressif.com/projects/esp ... codes.html

This page about error handling may be useful. https://docs.espressif.com/projects/esp ... dling.html

Jan