Hi @dipu_varghese ,
There is two way you can take the data/output information to the cloud.
-
You need to use the Arduino library for inferencing the model and then push the data in a particular interval or with the triggers. Since the BLE nano sense doesn't have WiFi, you might need to route the network via Bluetooth to the internet-connected gateway, for example, a raspberry pi as DIY or you can transfer the data from Arduino to a wifi controller via serial, for example, transfer the result via UART or I2C to esp8266 or esp32 and then from esp you can push the data to cloud.
-
The next method is you can use the prebuilt inferencing binary generated by the edge impulse system, as read the serial output with a Wffi or internet-enabled controller, such as raspberry pi, esp32, or esp8266, and after we need to do some processing and cleaning of the data, then push to the cloud.
These are the method in my mind, please check them and let me know what you think. Happy making .