How to connect the STM32H7B3I-DK board to ESP8266 WiFi module?
Hello everyone, question : I am currently working with the STM32H7B3I-DK board and I want to connect it to a WiFi module ESP8266. I am seeking assistance from someone who has experience in this field or who can provide me with a tutorial to help me accomplish this connection?
Solution:Jump to solution
Hi, here's
AT Command
driver for ESP8266 which uses UART to communicate with STM32 to provide WiFi connectivity. Please follow the readme file. If it seems too much in the beginning to incorporate drivers. Then, I'll suggest first configuring ESP8266 in AT command Mode. And then write individual AT command
over UART
from STM32
to host a simple webserver. I don't have any specific video on the top of my head. But heres GitHub repo https://github.com/jrmejiaa/ESP8266GitHub
GitHub - jrmejiaa/ESP8266: AT Command driver to use the ESP8266. Th...
AT Command driver to use the ESP8266. This driver was focused in a STM32 but it can be used with any UART Connection who supports C coding with small changes. - jrmejiaa/ESP8266
2 Replies
Solution
Hi, here's
AT Command
driver for ESP8266 which uses UART to communicate with STM32 to provide WiFi connectivity. Please follow the readme file. If it seems too much in the beginning to incorporate drivers. Then, I'll suggest first configuring ESP8266 in AT command Mode. And then write individual AT command
over UART
from STM32
to host a simple webserver. I don't have any specific video on the top of my head. But heres GitHub repo https://github.com/jrmejiaa/ESP8266GitHub
GitHub - jrmejiaa/ESP8266: AT Command driver to use the ESP8266. Th...
AT Command driver to use the ESP8266. This driver was focused in a STM32 but it can be used with any UART Connection who supports C coding with small changes. - jrmejiaa/ESP8266
@Umesh Lokhande thank you