2016-07-04 17:46:27 +08:00
|
|
|
package ble
|
|
|
|
|
2017-01-14 19:57:37 +08:00
|
|
|
import (
|
2017-10-29 20:10:21 +08:00
|
|
|
blelib "github.com/go-ble/ble"
|
|
|
|
"github.com/go-ble/ble/linux"
|
2017-01-14 19:57:37 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func defaultDevice(impl string) (d blelib.Device, err error) {
|
|
|
|
return linux.NewDevice()
|
|
|
|
}
|