hybridgroup.gobot/platforms/ble/ble_client_adaptor_windows.go

12 lines
198 B
Go

package ble
import (
"errors"
blelib "github.com/currantlabs/ble"
)
func defaultDevice(impl string) (d blelib.Device, err error) {
return nil, errors.New("Not yet implemented for this OS.")
}