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