itd/music.go

76 lines
2.0 KiB
Go
Raw Normal View History

2021-08-21 08:19:49 +00:00
/*
* itd uses bluetooth low energy to communicate with InfiniTime devices
* Copyright (C) 2021 Arsen Musayelyan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"github.com/rs/zerolog/log"
2021-08-24 15:54:08 +00:00
"go.arsenm.dev/infinitime"
"go.arsenm.dev/infinitime/pkg/player"
2021-08-21 08:19:49 +00:00
)
func initMusicCtrl(dev *infinitime.Device) error {
2021-11-25 00:44:36 +00:00
player.Init()
2021-08-21 08:19:49 +00:00
2021-11-25 00:44:36 +00:00
player.OnChange(func(ct player.ChangeType, val string) {
2021-08-21 08:19:49 +00:00
if !firmwareUpdating {
2021-11-25 00:44:36 +00:00
switch ct {
case player.ChangeTypeStatus:
dev.Music.SetStatus(val == "Playing")
case player.ChangeTypeTitle:
dev.Music.SetTrack(val)
case player.ChangeTypeAlbum:
dev.Music.SetAlbum(val)
case player.ChangeTypeArtist:
dev.Music.SetArtist(val)
}
2021-08-21 08:19:49 +00:00
}
})
// Watch for music events
musicEvtCh, err := dev.Music.WatchEvents()
if err != nil {
return err
}
go func() {
// For every music event received
for musicEvt := range musicEvtCh {
// Perform appropriate action based on event
switch musicEvt {
case infinitime.MusicEventPlay:
player.Play()
case infinitime.MusicEventPause:
player.Pause()
case infinitime.MusicEventNext:
player.Next()
case infinitime.MusicEventPrev:
player.Prev()
case infinitime.MusicEventVolUp:
2022-02-21 19:20:02 +00:00
player.VolUp(uint(k.Int("music.vol.interval")))
2021-08-21 08:19:49 +00:00
case infinitime.MusicEventVolDown:
2022-02-21 19:20:02 +00:00
player.VolDown(uint(k.Int("music.vol.interval")))
2021-08-21 08:19:49 +00:00
}
}
}()
// Log completed initialization
log.Info().Msg("Initialized InfiniTime music controls")
return nil
}