mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-11 19:29:20 +08:00
12 lines
193 B
Go
12 lines
193 B
Go
package ble
|
|
|
|
import (
|
|
"errors"
|
|
|
|
blelib "github.com/go-ble/ble"
|
|
)
|
|
|
|
func defaultDevice(impl string) (d blelib.Device, err error) {
|
|
return nil, errors.New("Not yet implemented for this OS.")
|
|
}
|