2017-07-10 11:09:05 -05:00
|
|
|
package ble
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
2017-10-29 13:10:21 +01:00
|
|
|
blelib "github.com/go-ble/ble"
|
2017-07-10 11:09:05 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func defaultDevice(impl string) (d blelib.Device, err error) {
|
|
|
|
return nil, errors.New("Not yet implemented for this OS.")
|
|
|
|
}
|