mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-29 13:49:14 +08:00
11 lines
191 B
Go
11 lines
191 B
Go
package ble
|
|
|
|
import (
|
|
blelib "github.com/currantlabs/ble"
|
|
"github.com/currantlabs/ble/darwin"
|
|
)
|
|
|
|
func defaultDevice(impl string) (d blelib.Device, err error) {
|
|
return darwin.NewDevice()
|
|
}
|