I'm new to Arduino and I'm struggling to find a way to send integer value from the Bluefruit Feather 32u4 to my desktop app. I'm trying to send data through my BLE connection like this:
int value = 300;
ble.println(value);
However, I think that this function isn't for that, cause in the desktop app, what I get is a string. The code I wrote for that BLE client was based on the example provided by Microsoft (available here). Any suggestions on what should I be doing to send integer values from the Arduino device to the desktop?