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-AlexaControl or MMM-AlexaOn/Off setup

    Scheduled Pinned Locked Moved Troubleshooting
    94 Posts 4 Posters 48.9k Views 5 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.
    • D Offline
      dave_ @sdetweil
      last edited by

      This post is deleted!
      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @dave_
        last edited by

        @dave_ weird… ok, re-enable AlexaControl (change to disabled: false, ) then restart MM and show me the messages again

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        D 1 Reply Last reply Reply Quote 0
        • D Offline
          dave_ @sdetweil
          last edited by

          @sdetweil https://photos.app.goo.gl/Eqxwv27mVDBbowBH8

          S 1 Reply Last reply Reply Quote 0
          • S Offline
            sdetweil @dave_
            last edited by

            @dave_ and the MM messages? yes, electron should be using 1900 now for alexacontrol

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            D 1 Reply Last reply Reply Quote 0
            • D Offline
              dave_ @sdetweil
              last edited by

              @sdetweil https://photos.app.goo.gl/SuvM64zPpyQCZjQT8

              S 1 Reply Last reply Reply Quote 0
              • S Offline
                sdetweil @dave_
                last edited by

                @dave_ ok, as expected… the extra image u posted this morning was from some other time

                now, if you do alexa discover devices (phone app is more (bottom right), other, discover devices)

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                D 1 Reply Last reply Reply Quote 0
                • D Offline
                  dave_ @sdetweil
                  last edited by

                  @sdetweil tried that still no luck

                  S 1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @dave_
                    last edited by

                    @dave_ ok, need to edit a file to turn on some debugging

                    nano ~/MagicMirror/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js

                    change lines 92-94, the console.log lines below
                    change from

                    	udpServer.on('message', (msg, rinfo) => {
                    		//debug(`<< server got: ${msg} from ${rinfo.address}:${rinfo.port}`);
                    		//console.log('Search request from ' + util.inspect(rinfo));
                    		//console.log(getMask(rinfo.address, '255.255.255.0'));
                    

                    to

                    	udpServer.on('message', (msg, rinfo) => {
                    		console.log(`<< server got: ${msg} from ${rinfo.address}:${rinfo.port}`);       
                    		console.log('Search request from ' + util.inspect(rinfo));
                    		console.log(getMask(rinfo.address, '255.255.255.0'));
                    

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    D 1 Reply Last reply Reply Quote 0
                    • D Offline
                      dave_ @sdetweil
                      last edited by

                      @sdetweil my internet went of for a bit I’ll do this asap and let you know!

                      S 1 Reply Last reply Reply Quote 0
                      • S Offline
                        sdetweil @dave_
                        last edited by sdetweil

                        @dave_ I also added another line of debug

                        let response = function(ipaddr) {
                        	let deviceresp = [];
                        	let responses = [];
                        	for(let i = 0; i < = devices.length - 1; i++) {
                        		console.log('responding for port='+devices[i].port)   // this line
                        
                        

                        and I see this output from the MM console , from alexa discover devices

                        [2020-08-05 11:31:33.543] [LOG]    << server got: M-SEARCH * HTTP/1.1
                        HOST: 239.255.255.250:1900
                        MAN: "ssdp:discover"
                        MX: 1
                        ST: urn:dial-multiscreen-org:service:dial:1
                        USER-AGENT: Chromium/78.0.3904.108 Linux
                        
                         from 192.168.2.126:57706 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:93 Socket.<anonymous>)
                        [2020-08-05 11:31:33.545] [LOG]    Search request from { address: '192.168.2.126', family: 'IPv4', port: 57706, size: 167 } (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:94 Socket.<anonymous>)
                        [2020-08-05 11:31:33.548] [LOG]    192.168.2.0 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:95 Socket.<anonymous>)
                        [2020-08-05 11:31:33.550] [LOG]    responding for port=16000 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:33.552] [LOG]    responding for port=16001 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:33.553] [LOG]    responding for port=16002 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:33.553] [LOG]    responding for port=16003 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:33.553] [LOG]    responding for port=16004 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:33.553] [LOG]    responding for port=16005 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        
                        (electron:23027): GLib-GIO-CRITICAL **: 11:31:34.172: g_dbus_proxy_new: assertion 'G_IS_DBUS_CONNECTION (connection)' failed
                        [2020-08-05 11:31:34.549] [LOG]    << server got: M-SEARCH * HTTP/1.1
                        HOST: 239.255.255.250:1900
                        MAN: "ssdp:discover"
                        MX: 1
                        ST: urn:dial-multiscreen-org:service:dial:1
                        USER-AGENT: Chromium/78.0.3904.108 Linux
                        
                         from 192.168.2.126:57706 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:93 Socket.<anonymous>)
                        [2020-08-05 11:31:34.549] [LOG]    Search request from { address: '192.168.2.126', family: 'IPv4', port: 57706, size: 167 } (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:94 Socket.<anonymous>)
                        [2020-08-05 11:31:34.549] [LOG]    192.168.2.0 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:95 Socket.<anonymous>)
                        [2020-08-05 11:31:34.550] [LOG]    responding for port=16000 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:34.551] [LOG]    responding for port=16001 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:34.551] [LOG]    responding for port=16002 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:34.551] [LOG]    responding for port=16003 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:34.551] [LOG]    responding for port=16004 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        [2020-08-05 11:31:34.552] [LOG]    responding for port=16005 (/home/sam/MagicMirror.2.11/modules/MMM-AlexaControl/node_modules/node-fauxmo/src/SSDPService.js:18 response)
                        

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

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