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.

    [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer

    Scheduled Pinned Locked Moved Entertainment
    160 Posts 6 Posters 171.2k Views 6 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.
    • evroomE Offline
      evroom
      last edited by

      Looks like it does not work VU+ boxes.
      I used the latest master branch (installed the complete module new).
      All api paths have been checked and return xml data.

      Dreambox DM7020HD:

      $ pm2 restart mm
      :
      :
      0|mm  | Starting node helper for: MMM-Dreambox
      

      On the Mirror a list of channels is seen.

      VU+ zero:

      :
      :
      0|mm  | Whoops! There was an uncaught exception...
      0|mm  | TypeError: Cannot read property 'code' of null
      0|mm  |     at Request._callback (/home/pi/MagicMirror/modules/MMM-Dreambox/node_helper.js:129:37)
      0|mm  |     at Request.self.callback (/home/pi/MagicMirror/node_modules/request/request.js:185:22)
      0|mm  |     at emitTwo (events.js:126:13)
      0|mm  |     at Request.emit (events.js:214:7)
      0|mm  |     at Request.<anonymous> (/home/pi/MagicMirror/node_modules/request/request.js:1157:10)
      0|mm  |     at emitOne (events.js:116:13)
      0|mm  |     at Request.emit (events.js:211:7)
      0|mm  |     at IncomingMessage.<anonymous> (/home/pi/MagicMirror/node_modules/request/request.js:1079:12)
      0|mm  |     at Object.onceWrapper (events.js:313:30)
      0|mm  |     at emitNone (events.js:111:20)
      0|mm  | MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
      
      
      121		//5.Request - Servicelistplayable
      122		request({url: myUrl+this.config.apiServicelistplayable }, function (error, response, body) {
      123			if (!error && response.statusCode == 200) {
      124				self.sendSocketNotification("DATA",['DB-SLP',body]);
      125			} else {
      126				if (!error && response.statusCode == 404){
      127					Errormessage = 'Error: '+response.statusCode+' in '+myUrl+self.config.apiServicelistplayable;
      128				} else {
      129					Errormessage = 'Error: '+error.code+' in '+myUrl+self.config.apiServicelistplayable;
      130				}
      131				self.sendSocketNotification("DATA",['ERROR',Errormessage]);
      132			}
      133		});
      
      
      apiServicelistplayable: '/web/servicelistplayable?sRef=1%3A7%3A1%3A0%3A0%3A0%3A0%3A0%3A0%3A0%3AFROM%20BOUQUET%20%22userbouquet.favourites.tv%22%20ORDER%20BY%20bouquet',
      
      
      http://192.168.178.47/web/servicelistplayable?sRef=1%3A7%3A1%3A0%3A0%3A0%3A0%3A0%3A0%3A0%3AFROM%20BOUQUET%20%22userbouquet.favourites.tv%22%20ORDER%20BY%20bouquet
      
      <e2servicelistplayable>
      

      Nothing is seen on the Mirror.

      MagicMirror version: 2.30.0
      Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
      Raspbian GNU/Linux 12 (bookworm)

      Test environment:
      MagicMirror version: v2.30.0
      Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
      Raspbian GNU/Linux 12 (bookworm)

      Cr4z33C 1 Reply Last reply Reply Quote 0
      • Cr4z33C Offline
        Cr4z33 @evroom
        last edited by

        @evroom that’s EXACTLY what happens on my mirror as an owner of a Vu+ product.

        @AxLed can you please look into this? :)

        1 Reply Last reply Reply Quote 0
        • A Offline
          AxLed Module Developer
          last edited by AxLed

          @Cr4z33

          Can you please post your config for MMM-Dreambox (as i guess there are two problems):

          1. at least one of your links are wrong or VU+ uses different syntax (for the xml links)
          2. i think node_helper.js line 129 is wrong in my code, i cant correct it without testing (error.code is null and my code expects an value)
          apiBase: 
          omxargs:
          refreshInterval: 
          apiabout: 
          apiservices: 
          apiepgnow:
          apizap:
          apiTimerlist: 
          apiServicelistplayable:
          apibouquet: 0, //bouquet, if there is more than one under apiservices (/web/getallservices), important apiepgnow and apiServicelistplayable have to match to the selected bouquet
          listmax:
          

          AxLED

          1 Reply Last reply Reply Quote 0
          • evroomE Offline
            evroom
            last edited by

            Hi AxLed,

            Here is my VU+ config:

            {
            module: 'MMM-Dreambox',
            disabled: false,
            position:"top_left",
            header: 'Dreambox',
            config: {
              apiBase: 'http://192.168.178.47:80',
              omxargs: ' --win 0,625,590,957 -o both ',
              refreshInterval: 1000 * 30, //refresh every 30 seconds
              apiabout: '/web/about',
              apiservices: '/web/getallservices',
              apiepgnow: '/web/epgnow?bRef=1%3A7%3A1%3A0%3A0%3A0%3A0%3A0%3A0%3A0%3AFROM%20BOUQUET%20%22userbouquet.favourites.tv%22%20ORDER%20BY%20bouquet',
              apizap: '/web/zap?sRef=',
              apiTimerlist: '/web/timerlist',
              apiServicelistplayable: '/web/servicelistplayable?sRef=1%3A7%3A1%3A0%3A0%3A0%3A0%3A0%3A0%3A0%3AFROM%20BOUQUET%20%22userbouquet.favourites.tv%22%20ORDER%20BY%20bouquet',
              apibouquet: 0,
              listmax: 10,
            }
            },
            

            To be honest, I do not see any difference between a Dreambox and a VU Plus, in fact the bRef and sRef are exactly the same and even the same as in the README.
            But if you say there is a difference …

            If the line 129 needs modifying, I can do so by hand.
            Perhaps will save you some time.

            And could you tell us if you tested on a VU+ or on a Dreambox (or both) ?

            MagicMirror version: 2.30.0
            Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
            Raspbian GNU/Linux 12 (bookworm)

            Test environment:
            MagicMirror version: v2.30.0
            Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
            Raspbian GNU/Linux 12 (bookworm)

            1 Reply Last reply Reply Quote 0
            • A Offline
              AxLed Module Developer
              last edited by

              @evroom
              To answer your questions:

              • i tested on a dreambox (dm800se) with a single dvb-c tuner
              • modifying line 129 could help, i need the output of ‘error’ and ‘response’, as i only check for ‘error’ (true/false) and only for response.Statuscode 200 and 404.

              I have some questions too:

              • if you enter http://192.168.178.47:80/web/servicelistplayable?sRef=1%3A7%3A1%3A0%3A0%3A0%3A0%3A0%3A0%3A0%3AFROM BOUQUET "userbouquet.favourites.tv" ORDER BY bouquet in you browser, is there xml showing up?
              • if not, what else is shown?
              • the xml files you send me on 29th of december, where they from your dreambox or from VU+?
              • if the were from the dreambox, can you please send me the following file from your VU+ by email ak10zeichen-xy@yahoo.de :
              • http://192.168.178.47:80/web/getallservices

              So i can check what is going wrong.

              AxLED

              1 Reply Last reply Reply Quote 0
              • evroomE Offline
                evroom
                last edited by

                @AxLed

                Yes, now I remember that you used a dm800se.
                And then it was you who explained me how to post xml data in this forum (which I forgot again).

                The xml files from December were from a Dreambox.
                Perhaps you mean that the syntax of the xml data is different, not the syntax in the config file.
                Then I understand.

                The servicelistplayable URL return xml data, as do all /web/ calls.

                The getallservices xml data will arrive by mail in a minute.

                MagicMirror version: 2.30.0
                Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                Raspbian GNU/Linux 12 (bookworm)

                Test environment:
                MagicMirror version: v2.30.0
                Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                Raspbian GNU/Linux 12 (bookworm)

                1 Reply Last reply Reply Quote 0
                • A Offline
                  AxLed Module Developer
                  last edited by

                  @evroom
                  Thanks for the files, i tested with your files, but i am getting a different error:
                  Your error (some topics above): Problem at servicelistplayable
                  My error (with your VU xml files): Problem in MMM-Dreambox.js at line 387, where the timerlist expects a value. I can fix this error, somehow my code expects at least one timer.

                  Can you please tell me, at which point/line of code you get an error?
                  If your error is in MMM-Dreambox.js at line 387 can you try to add one timer in the future an test again?

                  AxLED

                  1 Reply Last reply Reply Quote 0
                  • evroomE Offline
                    evroom
                    last edited by

                    @AxLed
                    Sent you a timer list.

                    The last time I checked, the error pointed to line 129.

                    Unfortunately my DLAN adaptor died where my MagicMirror and other devices are connected.
                    When it works again, I can answer the other questions.

                    MagicMirror version: 2.30.0
                    Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                    Raspbian GNU/Linux 12 (bookworm)

                    Test environment:
                    MagicMirror version: v2.30.0
                    Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                    Raspbian GNU/Linux 12 (bookworm)

                    1 Reply Last reply Reply Quote 0
                    • A Offline
                      AxLed Module Developer
                      last edited by

                      @evroom
                      So i can fix the handling of an “empty” timerlist meanwhile, but this will take until the end of the week.

                      I am looking forward to hear from you if your DLAN adoptor is back online.

                      AxLED

                      Cr4z33C 1 Reply Last reply Reply Quote 0
                      • evroomE Offline
                        evroom
                        last edited by

                        @AxLed

                        Just sent you pm2 logs output.
                        There is a lot more than I initialy placed on the forum.
                        I thought all errors were the same, but the node_helper.js line differ.

                        MagicMirror version: 2.30.0
                        Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                        Raspbian GNU/Linux 12 (bookworm)

                        Test environment:
                        MagicMirror version: v2.30.0
                        Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                        Raspbian GNU/Linux 12 (bookworm)

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 5
                        • 6
                        • 7
                        • 8
                        • 9
                        • 15
                        • 16
                        • 7 / 16
                        • 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