Page 1 of 1

Configuration ESP32 WROVER as HTTP client to receive data using AT Commands?

Posted: Wed Jan 31, 2024 8:57 am
by Kavya S
I am using STM32H753BI controller, for WIFI communication ESP32WROVER is used.
How do I need to configure ESP as either HTTP or HTTPS server to receive data externally using AT commands.
I have gone through the examples in the website, and did the same but it's not properly.
If anybody worked on it, kindly share the follow of AT commands needed to configure.

Re: Configuration ESP32 WROVER as HTTP client to receive data using AT Commands?

Posted: Mon Feb 26, 2024 7:32 am
by esp-at
sorry that we don't have the AT commands to support the http(https) server directly, but there are two possible helpful comments for yours.

1. AT works as a tcp server, and run the http(https) server on your STM32H753BI controller.
2. AT works as a http(https) server. Refer to AT+WEBSERVER commands, you can define your own AT commands to implement http(https) server. (the source code of AT+WEBSERVER is here: https://github.com/espressif/esp-at/blo ... rver_cmd.c)