hi i need to send data over ble repeatedly but end up with only 4 data updates, how to i send data repeatedly via BLE in proper way ? currently I using for to send data repeatedly but only 4 data can send over BLE
Sending 1 byte at a time is not a good idea for reliable BLE operation.
If you use the “write without response” option then risk losing a byte and if you use the “write” option then internally it’s waiting for the client device to respond to say “yes I’ve receive that byte”.