Hello,
I have a working code to read data from BMI160 an IMU sensor. The data is sent over BLE. Is there any way I can display the int16 data as it is in android or windows PC. Please reply ASAP
Hello,
I have a working code to read data from BMI160 an IMU sensor. The data is sent over BLE. Is there any way I can display the int16 data as it is in android or windows PC. Please reply ASAP
Is there any way I can display the int16 data as it is in android or windows PC
Of course, there are plenty of ways!
98% of what any Android or Windows PC does is "displaying data".
As far as displaying the data goes, it is entirely irrelevant where the data came from, or how it was transferred - it's all just data!
eg,
printf( "The data value is: %d\n", my_int_data );
neither knows nor cares where my_int_data came from, or what it means - it simply sends it to stdout in the standard manner:
http://www.cplusplus.com/reference/cstdio/printf/
Many libraries / frameworks are available if you want a graphical display of your data ...
Is there any way I can display the int16 data as it is in android or windows PC
Of course, there are plenty of ways!
98% of what any Android or Windows PC does is "displaying data".
As far as displaying the data goes, it is entirely irrelevant where the data came from, or how it was transferred - it's all just data!
eg,
printf( "The data value is: %d\n", my_int_data );
neither knows nor cares where my_int_data came from, or what it means - it simply sends it to stdout in the standard manner:
http://www.cplusplus.com/reference/cstdio/printf/
Many libraries / frameworks are available if you want a graphical display of your data ...
awneil, I know that but I have to send data over the air not through some wired connection.
So why does your post title, and your question, just ask about displaying data?
The data is sent over BLE. Is there any way I can display the int16 data as it is in android or windows PC.