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

12 lines
198 B
Go
Raw Normal View History

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