Power on bluetooth as part of setup

This commit is contained in:
Arsen Musayelyan 2021-09-09 08:34:56 -07:00
parent 745b4bd37c
commit dbfe8bb8c4
1 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,8 @@
package infinitime
import (
"os/exec"
bt "github.com/muka/go-bluetooth/api"
"github.com/muka/go-bluetooth/bluez/profile/adapter"
)
@ -13,11 +15,13 @@ func init() {
if err != nil {
panic(err)
}
// Power on command (workaround as go-bluetooth does not have a power on function)
exec.Command("bluetoothctl", "power", "on").Start()
defaultAdapter = da
}
func Exit() error {
return bt.Exit()
}
}