Reading incoming bluetooth data to another app
up vote
1
down vote
favorite
I have a fitness tracker that syncs with a phone app.
I am interested in retrieving the incoming data from the fitness tracker to the android app during the syncing process.
Any way to go about this?
anyway to the retrieve the api of the fitness tracker? its not publicly released.
I am trying to make my app integrate with the fitness tracker.
android bluetooth android-bluetooth
add a comment |
up vote
1
down vote
favorite
I have a fitness tracker that syncs with a phone app.
I am interested in retrieving the incoming data from the fitness tracker to the android app during the syncing process.
Any way to go about this?
anyway to the retrieve the api of the fitness tracker? its not publicly released.
I am trying to make my app integrate with the fitness tracker.
android bluetooth android-bluetooth
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a fitness tracker that syncs with a phone app.
I am interested in retrieving the incoming data from the fitness tracker to the android app during the syncing process.
Any way to go about this?
anyway to the retrieve the api of the fitness tracker? its not publicly released.
I am trying to make my app integrate with the fitness tracker.
android bluetooth android-bluetooth
I have a fitness tracker that syncs with a phone app.
I am interested in retrieving the incoming data from the fitness tracker to the android app during the syncing process.
Any way to go about this?
anyway to the retrieve the api of the fitness tracker? its not publicly released.
I am trying to make my app integrate with the fitness tracker.
android bluetooth android-bluetooth
android bluetooth android-bluetooth
edited Nov 22 at 16:39
asked Nov 22 at 14:44
tzj
438
438
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
This is not possible and here is why:
When two devices connect over Bluetooth one acts as a server and the other as a client. When the server creates its BluetoothServerSocket
it provides a string (it can be the application's package) and a Universally Unique Identifier (UUID).
On the other side,
when the client attempts to connect with this device (the server), it carries a
UUID that uniquely identifies the service with which it wants to
connect. These UUIDs must match in order for the connection to be accepted.
You can read all of these here.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
This is not possible and here is why:
When two devices connect over Bluetooth one acts as a server and the other as a client. When the server creates its BluetoothServerSocket
it provides a string (it can be the application's package) and a Universally Unique Identifier (UUID).
On the other side,
when the client attempts to connect with this device (the server), it carries a
UUID that uniquely identifies the service with which it wants to
connect. These UUIDs must match in order for the connection to be accepted.
You can read all of these here.
add a comment |
up vote
1
down vote
This is not possible and here is why:
When two devices connect over Bluetooth one acts as a server and the other as a client. When the server creates its BluetoothServerSocket
it provides a string (it can be the application's package) and a Universally Unique Identifier (UUID).
On the other side,
when the client attempts to connect with this device (the server), it carries a
UUID that uniquely identifies the service with which it wants to
connect. These UUIDs must match in order for the connection to be accepted.
You can read all of these here.
add a comment |
up vote
1
down vote
up vote
1
down vote
This is not possible and here is why:
When two devices connect over Bluetooth one acts as a server and the other as a client. When the server creates its BluetoothServerSocket
it provides a string (it can be the application's package) and a Universally Unique Identifier (UUID).
On the other side,
when the client attempts to connect with this device (the server), it carries a
UUID that uniquely identifies the service with which it wants to
connect. These UUIDs must match in order for the connection to be accepted.
You can read all of these here.
This is not possible and here is why:
When two devices connect over Bluetooth one acts as a server and the other as a client. When the server creates its BluetoothServerSocket
it provides a string (it can be the application's package) and a Universally Unique Identifier (UUID).
On the other side,
when the client attempts to connect with this device (the server), it carries a
UUID that uniquely identifies the service with which it wants to
connect. These UUIDs must match in order for the connection to be accepted.
You can read all of these here.
answered Nov 22 at 15:14
Skemelio
622212
622212
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433363%2freading-incoming-bluetooth-data-to-another-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown