Bluetooth fast connection #1073
Closed
mauroForlimpopoli
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
The BLE client connect() method takes a single argument, a device object: connect(params) The connect method expects that the
You might try reworking your example as: import GAP from "gap";
import {address} from "btutils";
this.connect({
address: address`FC:F5:C3:61:A5:BA`,
addressType: GAP.AddressType.Public
}); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Good morning,
to save time and so energy in my battery application, I wish to connect my bluetooth slave to master excluding the "discovery time" directly to address.
Is it possible ?
In the "bleclient.js" seams that is enough only 2 parameter to get connection
so I tried to connect with
on the "onDisconnected" function
but I always get "no buffer instance !!"
Later I saw in the xbug tool how is build the buffer, but I can't duplicate it
Can you help me?
regards
Beta Was this translation helpful? Give feedback.
All reactions