I'm developing a Connect IQ app for the Instinct 2S Solar watch, aiming to communicate with a Raspberry Pi 5 over BLE.
Currently, I can successfully scan and detect the Pi using . I'm using the BLE structure based on Jim Miller’s Connect IQ / Raspberry Pi tutorial. However, after calling , the app never triggers the onConnectedStateChanged()
callback, even though the Pi receives the connection.Ble.scan()
Ble.pairDevice(result)
My questions:
-
Why is
onConnectedStateChanged()
not being called, even though the Pi reports a connection? -
Is it possible to exchange information (e.g., battery level, heart rate) directly between the watch and Pi over BLE?
-
Can this communication work without involving a phone (i.e., only between the watch and Pi)?
Any help or guidance would be appreciated!
Thank you!