I am working on an e-paper display with Bluefruit nRF52832. I need to transfer a large image bitmap over Bluetooth Low Energy (BLE).
As BLE can send 255 bits at once, how can I achieve this?
The bitmap I want to transfer has the below format. I have two of these files to transfer over BLE for the same image: one for its B/W, one for its R/W color mapping.
I found receiving code from phone to Bluefruit nRF52832 module, but I don't know how to convert the same bitmap file to send over BLE through another nRF52 module in a master-slave configuration.
Code for receiving the image file from the phone is:
Can someone help me with the above code to send bitmap files from one Bluefruit nRF52832 module? How's the app converting and sending the image files, so I'd copy the same for me?
I tried to follow the instructions to convert the bitmap file. I added the letters '!I' before the bitmap file, but it still isn't received at the module. Also, it mentioned it needs a 16-bit bitmap file, so I need to send both 8-bit converted files together.