1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
package service
import (
"github.com/godbus/dbus/v5"
"github.com/muka/go-bluetooth/api"
"github.com/muka/go-bluetooth/bluez/profile/adapter"
"github.com/muka/go-bluetooth/bluez/profile/agent"
)
func (app *App) AdapterID() string {
return app.adapterID
}
func (app *App) Adapter() *adapter.Adapter1 {
return app.adapter
}
func (app *App) Agent() agent.Agent1Client {
return app.agent
}
// return the app dbus path
func (app *App) Path() dbus.ObjectPath {
return app.path
}
// return the dbus connection
func (app *App) DBusConn() *dbus.Conn {
return app.conn
}
func (app *App) DBusObjectManager() *api.DBusObjectManager {
return app.objectManager
}
func (app *App) SetName(name string) {
app.advertisement.LocalName = name
}
|