2025-08-27 12:16 AM
Dear Sir,
I am currently using the STM32 NUCLEO H723ZG board with the X-CUBE-ST67W61 expansion. I want to transmit the ADC values from the STM32 board via Wi-Fi. I attempted this using a trial-and-error method but was unsuccessful.
Could you please guide me on how to achieve this? I am completely new to working with X-NUCLEO boards.
I am sharing my code for your reference. Kindly take a look.
Thank you,
2025-09-08 11:21 PM - edited 2025-09-12 2:44 AM
.
2025-09-09 12:29 AM - edited 2025-09-09 12:30 AM
@mihirsinha_ This forum is not the official customer support. To contact the customer support click here.
As for your question - to send any data over wi-fi usually you need to connect the wi-fi to some router (access point) then open connection to a server (TCP or UDP) and create a network socket. The documentation for the X-CUBE-ST67W61 should cover the details.
2025-09-10 11:23 PM
Hi @mihirsinha_
Yes, the ST community can probably help you, especially if you describe precisely what your Wi-Fi application will do, which protocol you plan to use among HTTP, MQTT, etc., examples of which you will find in the X-CUBE-ST67W61.
Have you already implemented the ADC configuration, as I don't see it in your code that you shared?
The ADC should be the first step in your project, in order to validate that the datas you want to transmit meet your expectations. This is already a big job. After that, you can integrate it into an existing Wi-Fi example.
Here are some resources that may be useful to you:
https://wiki.st.com/stm32mcu/wiki/Getting_started_with_ADC
https://wiki.st.com/stm32mcu/wiki/Getting_started_with_DMA
You can also refer to this example for the STM32H735G-DK, which works perfectly with the NUCLEO-H723
https://github.com/STMicroelectronics/STM32CubeH7/tree/master/Projects/STM32H735G-DK/Examples/ADC/ADC_DMA_Transfer
As you indicate that this is your first time using X-NUCLEO boards, please also make sure to carefully read the STM32H723 documentation (reference manual and data sheet) and the board user manual:
https://www.st.com/en/microcontrollers-microprocessors/stm32h723-733/documentation.html
https://www.st.com/en/evaluation-tools/nucleo-h723zg.html#documentation
Without a doubt, once you have shown that you have devoted time to your project (because no one will do it for you) and if you are now encountering real difficulties, then the members of the STM32 community here will (for sure) certainly be able to help you.
Good luck,
Best regards
Romain
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.