merveotesi
merveotesi

Reputation: 2193

Can a mobile application that is developed to work on Bluetooth technology be used on Bluetooth LE technology?

Can a mobile application that is developed to work on Bluetooth technology be used on Bluetooth LE technology?

Or does the developer need to modify code to handle Bluetooth LE (Smart) signals, input, output etc. ?

EDIT

While i was asking this question i want to know

if i write a code piece, can i run it on BLE devices, also with BLE performance?

Is it possible, or not?

If a device can have both B and BLE then i have one more question:

Should we write code with different APIs for ordinary B and BLE?

Upvotes: 1

Views: 60

Answers (2)

Vinodh
Vinodh

Reputation: 1129

If you want to connect to only BLE devices(LE profiles) , then you need to definitely modify code as profiles on LE devices are GATT based , unlike Bluetooth Classic. You will need to implement GATT Client and GATT server in your code.

Upvotes: 1

Ifor
Ifor

Reputation: 2835

I don't know of any phone that is doing BTLE but not classic Bluetooth as well. So the application should still work but it will still just be using the classic Bluetooth portion of the hardware.

Of course from the sensor of other device your talking to point of view the situation may well be different as there are BTLE only sensors for example that may have a similar function to an old style Bluetooth sensor but they want be compatible. E.g. some classic Heart Rate sensors and modern BTLE heart rate sensors.

Upvotes: 1

Related Questions