2022-10-01 03:35 PM
Hello, I need to send data from STM32WB Nucleo to the computer (any symbol), I spend many days, but didn't find any simple example for that in Google. I was surprised usually I never had a problem like that...
Please, can you share a simple example of how to send data/symbol/something from STM32 WB to the computer via BLE
Regards,
Solved! Go to Solution.
2022-10-02 01:50 AM
All examples and infos is in folders : \Users\YUO\STM32Cube\Repository\STM32Cube_FW_WB_V1.1x.y\
2022-10-02 01:50 AM
All examples and infos is in folders : \Users\YUO\STM32Cube\Repository\STM32Cube_FW_WB_V1.1x.y\
2022-10-02 03:01 PM
Thank you for your reply, they have many examples, but which one is responsible for " send data from STM to the computer via BLE?"
2022-10-03 08:40 AM
Normal test destination is mobile phone with BLE test app. For PC destination you need search or create own exe...
2022-10-03 10:36 PM
Hi @IRakh.1 , i have been there and done that.
Your struggle is normal.
Even if they share the same name BLE and bluetooth Classic are different beasts.
In bluetooth classic you would find a Serial profile port which acts as a transparent Serial transmission.
Well, bad news, in BLE there is no standard serial profile so you need to build your own(in fact, every BLE module provider has their own, including st).
Make sure you understand BLE things like characteristics, services, descriptors and all that first.
In addition to all this you could use Google Chrome's webBLE API to control the BLE from the web browser with javascript. https://www.hackster.io/javier-munoz-saez/controlling-this-blinky-boy-from-chrome-webble-0b9708
2022-10-07 03:23 PM
Do you know where I can find examples for stm32wb55cgu6 ?
or all examples only for STM32WB Nucleo?
2023-03-20 05:40 PM
can you clarify, what does it mean "own exe"?
2023-03-20 07:19 PM
This means Windows application (.exe) that you create yourself. Or persuade someone to make it for you. These days, it can be even a python script.