1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-14 19:29:32 +08:00
hybridgroup.gobot/platforms/ble/ble_client_adaptor_windows.go

12 lines
193 B
Go
Raw Normal View History

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.")
}