How to use the @svrooij/sonos.SonosEvents.CurrentTrack function in @svrooij/sonos

To help you get started, we’ve selected a few @svrooij/sonos examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github svrooij / sonos2mqtt / src / bridge.js View on Github external
function addDevice (device) {
  log.info('Add device %s %s', device.Name, device.host)
  // Start listening for those events!
  device.Events.on(SonosEvents.CurrentTrack, trackUri => {
    publishTrackUri(device, trackUri)
  })
  device.Events.on(SonosEvents.CurrentTrackMetadata, metadata => {
    publishCurrentTrack(device, metadata)
  })
  device.Events.on(SonosEvents.CurrentTransportStateSimple, state => {
    publishState(device, state)
  })
  device.Events.on(SonosEvents.Mute, muted => {
    publishMuted(device, muted)
  })
  device.Events.on(SonosEvents.Volume, volume => {
    publishVolume(device, volume)
  })

  device.Events.on(SonosEvents.GroupName, groupName => {
github svrooij / sonos2mqtt / src / bridge.js View on Github external
function cancelSubscriptions (device) {
  device.Events.removeAllListeners(SonosEvents.CurrentTrack)
  device.Events.removeAllListeners(SonosEvents.CurrentTrackMetadata)
  device.Events.removeAllListeners(SonosEvents.CurrentTransportState)
  device.Events.removeAllListeners(SonosEvents.Mute)
  device.Events.removeAllListeners(SonosEvents.Volume)
}