1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-04 22:17:39 +08:00
hybridgroup.gobot/platforms/ble/ble_client_adaptor_linux.go

11 lines
189 B
Go
Raw Normal View History

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()
}