mirror of
https://github.com/RoganDawes/P4wnP1_aloa.git
synced 2025-03-29 11:01:44 +01:00
13 lines
411 B
Go
13 lines
411 B
Go
package bluetooth
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrBtSvcNotAvailable = errors.New("No bluetooth available")
|
|
ErrBtNoMgmt = errors.New("Couldn't access bluetooth mgmt-api")
|
|
ErrChgSetting = errors.New("Couldn't change controller setting to intended value")
|
|
ErrReadSetting = errors.New("Couldn't read controller setting")
|
|
ErrDeviceNotFOund = errors.New("Couldn't find given device")
|
|
)
|
|
|