Hi @DoitfortheLulz,
if you deploy as a firmware you directly get a binary file, you can’t use it to add additional (BLE) libraries.
You can include BLE libraries if you deploy as an Arduino library as you have access to the source code to compile your sketch.
An alternative is to clone our open-source firmware: https://github.com/edgeimpulse/firmware-arduino-nano-33-ble-sense. This is the code used to generate the binary within the studio. Here you can add BLE libraries and keep the data ingestion, remote management and inferencing features all at once.
If you go this route, you will need also to export your impulse as a C++ library and copy the content (tflite-model/, edge-impulse-sdk/, model-parameters/) into the src/
folder.
Aurelien