• 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.

MMM-awesome-alexa

Scheduled Pinned Locked Moved Utilities
241 Posts 43 Posters 296.4k Views 47 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.
  • C Offline
    Canterrain
    last edited by Jun 10, 2019, 4:16 PM

    Trying to finish setup of the module.

    I’m in the helper config, and when I get to the point of supplying a return URL I enter:
    https://localhost:3000/authresponse
    But terminal tells me that’s an invalid URL.

    I’ve put https://localhost:3000/authresponse as my return URL and https://localhost:3000/ as my authorized URL on the Amazon developer site. What I am I doing wrong here?

    C 1 Reply Last reply Jun 12, 2019, 12:26 AM Reply Quote 0
    • C Offline
      Cr4z33
      last edited by Jun 10, 2019, 5:21 PM

      I am struggling since 4 hours getting this module to work. 😩

      When I say ‘Alexa’ the module seems to wake up, but then after ie a question nothing happens.

      There’s no evidence of errors when running MM by npm start.

      All the setup went fine so I am out of ideas now…

      S 1 Reply Last reply Jun 10, 2019, 5:37 PM Reply Quote 0
      • S Away
        sdetweil @Cr4z33
        last edited by sdetweil Jun 10, 2019, 5:38 PM Jun 10, 2019, 5:37 PM

        @Cr4z33 how does the module play audio? I had an alexa module that used mpg321, which wasn’t installed… so it never made any sound

        looks like the awesome alex debug says to test play with

        omxplayer -o alsa myAudioFile.mp3
        

        https://github.com/dolanmiu/MMM-awesome-alexa/blob/master/docs/audio-setup.md

        now that the author has one lined the source, it is hard to help as much…

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        C 1 Reply Last reply Jun 11, 2019, 8:10 AM Reply Quote 0
        • C Offline
          Cr4z33 @sdetweil
          last edited by Cr4z33 Jun 11, 2019, 8:12 AM Jun 11, 2019, 8:10 AM

          @sdetweil said in MMM-awesome-alexa:

          @Cr4z33 how does the module play audio? I had an alexa module that used mpg321, which wasn’t installed… so it never made any sound

          looks like the awesome alex debug says to test play with

          omxplayer -o alsa myAudioFile.mp3
          

          https://github.com/dolanmiu/MMM-awesome-alexa/blob/master/docs/audio-setup.md

          now that the author has one lined the source, it is hard to help as much…

          I actually didn’t check that part yet because every other module using sound (ie. MMM-AssistantMk2, MMM-Spotify, etc.) is already working perfectly.

          Also I see there’s no option in the module to set the audio output so… :man_shrugging_medium_skin_tone:

          S 1 Reply Last reply Jun 11, 2019, 10:18 AM Reply Quote 0
          • S Away
            sdetweil @Cr4z33
            last edited by Jun 11, 2019, 10:18 AM

            @Cr4z33 said in MMM-awesome-alexa:

            every other module using sound (ie. MMM-AssistantMk2, MMM-Spotify, etc.) is already working perfectly.

            yes, doesn’t mean anything… every module can use their own methods to make sound…

            let us know if/when u get there

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            C 2 Replies Last reply Jun 11, 2019, 10:29 AM Reply Quote 0
            • C Offline
              Cr4z33 @sdetweil
              last edited by Jun 11, 2019, 10:29 AM

              @sdetweil sure.

              I might have some spare time later today and I definitely need a working Alexa module ASAP.

              1 Reply Last reply Reply Quote 0
              • C Offline
                Cr4z33 @sdetweil
                last edited by Cr4z33 Jun 11, 2019, 2:15 PM Jun 11, 2019, 1:39 PM

                @sdetweil so I followed the Audio guide, but immediately had to go to the Audio Troubleshooting section because no sound was coming out.

                Created the suggested audio settings file, rebooted, but the module keeps working like in my first post here…

                I am using HDMI output and a USB mic.
                They work perfectly with other modules or ie. with VLC playing.

                Edit
                My fault I didn’t run MM into dev mode so now I notice there’s actually an error when waking up the module, but I don’t know what it means.

                Does anybody have please a clue about what’s written below?

                MMM-awesome-alexa.js:1 Uncaught (in promise) DOMException: play() failed because the user didn't interact with the document first. https://goo.gl/xX8pDD
                
                1 Reply Last reply Reply Quote 0
                • S Away
                  sdetweil
                  last edited by Jun 11, 2019, 2:57 PM

                  yep, not your fault… new browser restriction…

                  fix in next version july

                  workaround

                  edit
                  MagicMirror/js/electron.js
                  add the line marked below

                  let mainWindow;
                  
                  function createWindow() {
                      app.commandLine.appendSwitch('autoplay-policy', 'no-user-gesture-required');  //< -------- added
                  

                  save, and restart Mm

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  C 2 Replies Last reply Jun 11, 2019, 3:30 PM Reply Quote 0
                  • C Offline
                    Cr4z33 @sdetweil
                    last edited by Jun 11, 2019, 3:30 PM

                    @sdetweil cheers going to try it now! :thumbs_up_medium_skin_tone:

                    1 Reply Last reply Reply Quote 0
                    • C Offline
                      Canterrain @Canterrain
                      last edited by Jun 12, 2019, 12:26 AM

                      @Canterrain said in MMM-awesome-alexa:

                      Trying to finish setup of the module.

                      I’m in the helper config, and when I get to the point of supplying a return URL I enter:
                      https://localhost:3000/authresponse
                      But terminal tells me that’s an invalid URL.

                      I’ve put https://localhost:3000/authresponse as my return URL and https://localhost:3000/ as my authorized URL on the Amazon developer site. What I am I doing wrong here?

                      Bump on this question, still can’t get past the local url section. Any help would be appreciated.

                      C 1 Reply Last reply Jun 12, 2019, 8:19 AM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 7
                      • 8
                      • 24
                      • 25
                      • 6 / 25
                      6 / 25
                      • First post
                        59/241
                        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