0
Discuss

Adding Tiles for Logitech Squeezebox

949BFN 7 years ago in Panels (dashboards) / Special Tiles updated by Terry (ActionTiles) (Co-Founder) 7 years ago 1

I'm using the Device Handler discussed here to control my Squeezbox Devices: https://community.smartthings.com/t/squeezebox-and-smarthings/1622/31


The DH is set up as a Virtual Switch and we can only use it to Start/Stop Playback. The Squeezebox Devices show up in Action Tiles as Switches, but I would like to add the Squeezebox Devices to show up as Music Players in Action Tiles (to make it easier to identify and to get them to look the same as other music players using the Elements Theme.


I've added the following to the Custom Device Handler in the hope that that would cause the Squeezebox Device to show up as a Music Player in the Active Tiles, but that did not help:

metadata {
    definition (name: "sqVS", namespace: "mmaxwell", author: "Mike Maxwell") {
        capability "Actuator"
        capability "Switch"
        capability "Refresh"
        capability "Sensor"
        capability "Music Player"
        capability "Polling"
        capability "Speech Synthesis"
    }

Is there something else I can try?


Thanks

+1
Discuss

You need more than just the "metadata{}".


You need the DTH to:

  • Set values (including some non-null default) for each of the Attributes for Music Player
  • Accept the Commands for Music Player.

See the Capability Definition here:  http://docs.smartthings.com/en/latest/capabilities-reference.html#music-player


...Terry.