mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-11 19:29:20 +08:00
12 lines
206 B
Go
12 lines
206 B
Go
package ble
|
|
|
|
import (
|
|
"github.com/currantlabs/gatt"
|
|
)
|
|
|
|
// TODO: handle other OS defaults besides Linux
|
|
var DefaultClientOptions = []gatt.Option{
|
|
gatt.LnxMaxConnections(1),
|
|
gatt.LnxDeviceID(-1, false),
|
|
}
|