How can I communicate wifi between the stm32h board and esp8266?
I want to send a command to scan the network on the board with esp8266 and show the scan list on the PC through the serial monitor. Using the AT command. Is it possible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-09-23 10:30 PM
My board is STM32H750B.
I use stmCubeMx and Iar programm.
- Labels:
-
STM32CubeMX
-
STM32H7 Series
-
Wifi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-09-24 11:30 AM
If you program the ESP8266 to act as a wireless serial port, you can connect it to a UART peripheral on your chip and communicate that way.
It's not going to show up as a serial port since it's not a local device, but you can communicate with it via the ESP web interface.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-09-24 11:48 AM
Sure, you'd need to code the buffering/handling of the UARTs involved, transferring the responses to the PC connected UART.
You're unlikely to get people to code the project for you. Would suggest you start with UART examples within the CubeH7 tree. Read the datasheet/expectations for the ESP8266 you have connected.
Up vote any posts that you find helpful, it shows what's working..
