1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-29 13:49:14 +08:00
hybridgroup.gobot/platforms/ble/ble_client_adaptor_linux.go
deadprogram 2568aedc17 ble: move new ble client device creation under Gobot's own control
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-01-14 12:57:37 +01:00

11 lines
189 B
Go

package ble
import (
blelib "github.com/currantlabs/ble"
"github.com/currantlabs/ble/linux"
)
func defaultDevice(impl string) (d blelib.Device, err error) {
return linux.NewDevice()
}