prototooth/gatts_linux.go
Ayke van Laethem 00e2592aff linux: add support for services
Unfortunately, I couldn't get characteristics to work.
2019-11-16 19:11:59 +00:00

34 lines
616 B
Go

// +build !baremetal
package bluetooth
import (
"github.com/muka/go-bluetooth/api/service"
)
// AddService creates a new service with the characteristics listed in the
// Service struct.
//
// TODO: add support for characteristics on Linux.
func (a *Adapter) AddService(s *Service) error {
app, err := service.NewApp(a.id)
if err != nil {
return err
}
bluezService, err := app.NewService()
if err != nil {
return err
}
bluezService.Properties.UUID = s.UUID.String()
// TODO: add support for characteristics
err = app.AddService(bluezService)
if err != nil {
return err
}
return app.Run()
}