added local time characteristic #4

Merged
Elara6331 merged 5 commits from cybuzuma/infinitime:gatt_localtime into master 2022-11-21 16:51:50 +00:00
1 changed files with 5 additions and 5 deletions
Showing only changes of commit f56be08106 - Show all commits

View File

@ -720,11 +720,11 @@ func (i *Device) SetTime(t time.Time) error {
}
if err := i.checkStatus(i.localTimeChar, LocalTimeChar); err != nil {
// this characteristic might not be there in older versions of infinitime
// so we fail silently in this case.
_, notAvailable := err.(ErrCharNotAvail)
if notAvailable {
log.Warn().Msg("No Local Time Characteristic detected. Old Version of Infinitime (pre 1.10.0)?")
// If the characteristic is unavailable,
// fail silently, as many people may be on
// older InfiniTime versions. A warning
// may be added later.
if _, ok := err.(ErrCharNotAvail); ok {
return nil
} else {
return err