mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-06 19:29:15 +08:00
12 lines
198 B
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.")
|
||
|
}
|