• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Limit Sonos module to only show a specific speaker

Scheduled Pinned Locked Moved Development
23 Posts 3 Posters 14.9k Views 3 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    strawberry 3.141 Project Sponsor Module Developer @dinkybluebug245
    last edited by strawberry 3.141 Aug 31, 2016, 6:47 PM Aug 31, 2016, 6:43 PM

    @dinkybluebug245 can you give this a try?

    $.each(data, (i, item) => {
        if(this.config.exclude.indexOf(item.coordinator.roomName) === -1 || item.members.length > 1){
            var room = item.coordinator.roomName;
            var state = item.coordinator.state.zoneState;
            var artist = item.coordinator.state.currentTrack.artist;
            var track = item.coordinator.state.currentTrack.title;
            var cover = item.coordinator.state.currentTrack.absoluteAlbumArtURI;
            var streamInfo = item.coordinator.state.currentTrack.streamInfo;
            if(item.members.length > 1){
                room = '';
                $.each(item.members, (j, member) => {
                    if(this.config.exclude.indexOf(member.roomName) === -1){
                        room += member.roomName + ', ';
                    }
                });
                room = room.slice(0, -2);
            }
            text += this.renderRoom(state, artist, track, cover, room);
        }
    }.bind(this));
    

    Please create a github issue if you need help, so I can keep track

    D 1 Reply Last reply Aug 31, 2016, 6:44 PM Reply Quote 0
    • D Offline
      dinkybluebug245 @strawberry 3.141
      last edited by Aug 31, 2016, 6:44 PM

      @strawberry-3.141 shouldnt the first line have ‘function’ in it?

      	$.each(data, function (i, item) {
      
      S 1 Reply Last reply Aug 31, 2016, 6:46 PM Reply Quote 0
      • S Offline
        strawberry 3.141 Project Sponsor Module Developer @dinkybluebug245
        last edited by strawberry 3.141 Aug 31, 2016, 6:46 PM Aug 31, 2016, 6:46 PM

        @dinkybluebug245 then you will change the scope of this, that’s why I prefer to use big arrow functions () => {} is the same as function(){} but you keep the scope

        Please create a github issue if you need help, so I can keep track

        D 2 Replies Last reply Aug 31, 2016, 6:47 PM Reply Quote 0
        • D Offline
          dinkybluebug245 @strawberry 3.141
          last edited by Aug 31, 2016, 6:47 PM

          @strawberry-3.141 I love how you think I know what that means. Ha! I’ll take your word on that and give it a go

          1 Reply Last reply Reply Quote 0
          • S Offline
            strawberry 3.141 Project Sponsor Module Developer
            last edited by strawberry 3.141 Aug 31, 2016, 6:51 PM Aug 31, 2016, 6:50 PM

            a lot of people are doing this by saving the scope into a variable like

            var self = this;
            setTimeout(function(){
                    doSomething();
                    self.sendSocketNotification('NOTIFICATION');
            }, 1000);
            

            but I like this cleaner way

            setTimeout(() => {
                    doSomething();
                    this.sendSocketNotification('NOTIFICATION');
            }, 1000);
            

            Please create a github issue if you need help, so I can keep track

            1 Reply Last reply Reply Quote 0
            • D Offline
              dinkybluebug245 @strawberry 3.141
              last edited by Aug 31, 2016, 6:52 PM

              @strawberry-3.141 That doesnt work. Kitchen is the only room NOT excluded in my config.js

              Kitchen, then group in Living room - shows info.

              Living room, then grouping in Kitchen - doesnt show.

              S 1 Reply Last reply Aug 31, 2016, 6:54 PM Reply Quote 0
              • S Offline
                strawberry 3.141 Project Sponsor Module Developer @dinkybluebug245
                last edited by Aug 31, 2016, 6:54 PM

                @dinkybluebug245 sry then you have to figure it out on your own or ask some person with sonos speakers for help

                Please create a github issue if you need help, so I can keep track

                D 1 Reply Last reply Aug 31, 2016, 6:59 PM Reply Quote 0
                • D Offline
                  dinkybluebug245 @strawberry 3.141
                  last edited by dinkybluebug245 Aug 31, 2016, 7:00 PM Aug 31, 2016, 6:59 PM

                  This post is deleted!
                  1 Reply Last reply Reply Quote 0
                  • D Offline
                    dinkybluebug245
                    last edited by Sep 5, 2016, 10:56 AM

                    Ive had a go at trying to fix this myself and cant work it out - but then again my own knowledge of js is non existant. It works when rooms are isolated on their own, or when the speaker you want to display is listed first in a group of grouped speakers - the solutions above dont work when the speaker is not listed first in the group.

                    Can anyone else help?

                    Thanks again to @strawberry-3-141 for having a stab at this.

                    1 Reply Last reply Reply Quote 0
                    • S Offline
                      Snille Module Developer
                      last edited by Jan 27, 2017, 1:58 PM

                      Hi all,
                      I don’t know if this is the right place, but here it goes.
                      I forked and made some changes to the Sonos module.
                      Can be found here: https://github.com/Snille/MMM-Sonos
                      Let me know is I should present it in some other thread. :)

                      Best regards Snille

                      If you cant find it, make it and share it!
                      Modules: MMM-homeassistant-sensors, MMM-Modulebar, MMM-Profilepicture, MMM-Videoplayer

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 2 / 3
                      • First post
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy