Added Navigation service #5

Merged
Elara6331 merged 9 commits from yannickulrich/infinitime:navigation-service into master 2022-11-03 19:09:07 +00:00
1 changed files with 18 additions and 0 deletions
Showing only changes of commit 912ccd14b3 - Show all commits

View File

@ -751,6 +751,24 @@ func (i *Device) Notify(title, body string) error {
)
}
// Navigation sends a NavigationEvent to the watch
func (i *Device) Navigation(flag string, narrative string, dist string, progress uint8) error {
if narrative != i.navigationEv.narrative {
log.Debug().Str("func", "Navigation").
Msg("Sending narrative")
if err := i.checkStatus(i.navnarrativeChar, NavNarrativeChar); err != nil {
return err
}
if err := i.navnarrativeChar.WriteValue([]byte(narrative), nil); err != nil {
return err
}
i.navigationEv.narrative = narrative
}
return nil
}
// These constants represent the possible call statuses selected by the user
const (
CallStatusDeclined uint8 = iota