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-Assistantmk2 and MMM-Hotword not picking up

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    54 Posts 9 Posters 37.7k Views 9 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
      sdetweil @jmartin1009
      last edited by

      @jmartin1009 I would remove the space in the device name

      "plughw: 0,1"
      

      Sam

      How to add modules

      learning how to use browser developers window for css changes

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

        I just installed MMM-Hotword, and used this config

                {
                  module: "MMM-Hotword",
                  config: {
                    autostart:true,
                    autorestart: true
                }
        

        and it works fine…
        i did have a little snowboy rebuild work to do but documented in the hotword install doc…

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        J 3 Replies Last reply Reply Quote 0
        • J Offline
          jmartin1009 @sdetweil
          last edited by

          @sdetweil I can try removing the space and hope to works, and I had to do the snowboy rebuild already as it said I had an error when I tried to start magicmirror, so that should be okay, so I’ll try deleting the space and if it doesn’t work I will try to rebuild snowboy and try again and I’ll get back to you. Thanks!!

          1 Reply Last reply Reply Quote 0
          • J Offline
            jmartin1009 @sdetweil
            last edited by

            @sdetweil is that your config for magicmirror or in the config file or hotword?

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

              @sdetweil I tried getting rid of the space, I tried adding autorestart=true on both configs, and still no luck :/

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

                @jmartin1009 just the config for hotword.

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                1 Reply Last reply Reply Quote 0
                • ejay-ibmE Offline
                  ejay-ibm Project Sponsor Module Developer
                  last edited by ejay-ibm

                  Hello,
                  I agree with Sam :
                  You need to remove the space at both places.
                  1st in MMM-AssistantMk2

                  module: "MMM-AssistantMk2",
                  		    position: "top_bar",
                  		    config: {
                  		      record: {
                  		        recordProgram : "arecord",  
                  		        device        : "plughw:1,0",
                  

                  And as well in

                  module: "MMM-Hotword",
                  		    config: {
                  		      record: {
                  		        recordProgram : "arecord", 
                  		        device        : "plughw:1,0",
                  

                  If that still doesn’t work try just :
                  plughw:1

                  As well you should check in the audio properties that your mic have enough gain.

                  you can check this by typing
                  alsamixer
                  in command line

                  hope this helps

                  Ejay

                  J 2 Replies Last reply Reply Quote 0
                  • J Offline
                    jmartin1009 @ejay-ibm
                    last edited by

                    @ejay-ibm @sdetweil what should I have in the module list in the config.js for the magicmirror program for each module? Not sure if I have the right stuff or too much or what

                    1 Reply Last reply Reply Quote 0
                    • J Offline
                      jmartin1009 @ejay-ibm
                      last edited by

                      @ejay-ibm also is there anyway to change the gain or whatever? I went to alsamixer and went to the capture section and the bar doesn’t move or anything when I speak into my mic. Not sure if anything is supposed to happen but it says both L and R capture are the 100, not sure what that means.

                      S 1 Reply Last reply Reply Quote 0
                      • J Offline
                        jmartin1009
                        last edited by

                        @ejay-ibm I also changed it so the sauce wasn’t there and I made it so it said plughw:1 in all of them, but still nothing

                        1 Reply Last reply Reply Quote 0
                        • ejay-ibmE Offline
                          ejay-ibm Project Sponsor Module Developer
                          last edited by

                          This is my MMM-Hotword config.js part :

                          {
                                module: "MMM-Hotword",
                                config: {
                                  snowboy: [
                                    /*	{
                          						"hotwords": "smartmirror",
                          						"file": "resources/models/smart_mirror.umdl",
                          						"sensitivity": "0.5"
                          					},
                          
                          */
                                    {
                                      hotwords: "alexa",
                                      file: "resources/models/alexa.umdl",
                                      sensitivity: "0.6"
                                    },
                          
                                    {
                                      file: "resources/models/jarvis.umdl",
                                      sensitivity: "0.6,0.60",
                                      hotwords: ["jarvis", "jarvis"]
                                    }
                                  ],
                                  record: {
                                    sampleRate: 16000,
                                    threshold: 0.5,
                                    thresholdStart: null,
                                    thresholdEnd: null,
                                    silence: 1,
                                    verbose: false,
                                    recordProgram: "arecord",
                                    device: "plughw:1"
                                  },
                                  autostart: true,
                                  autorestart: true,
                                  notifications: {
                                    PAUSE: "HOTWORD_PAUSE",
                                    RESUME: "HOTWORD_RESUME",
                                    LISTENING: "HOTWORD_LISTENING",
                                    SLEEPING: "HOTWORD_SLEEPING",
                                    ERROR: "HOTWORD_ERROR"
                                  },
                                  onDetected: {
                                    notification: function(payload) {
                                      return "ASSISTANT_ACTIVATE";
                                    },
                                    payload: function(payload) {
                                      return {
                                        profile: payload.hotword
                                      };
                                    }
                                  }
                                }
                              },
                          

                          You can give it a try .

                          Ejay

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

                            @jmartin1009 but, that explains no response from the modules!

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            J 1 Reply Last reply Reply Quote 0
                            • J Offline
                              jmartin1009 @ejay-ibm
                              last edited by

                              @ejay-ibm that is for the MM config.js right? Or is that what you have in the MMM-Hotword.js config file?

                              1 Reply Last reply Reply Quote 0
                              • J Offline
                                jmartin1009 @sdetweil
                                last edited by

                                @sdetweil What explains no response from the modules? My mic’s gain in alsamixer? if so how can i fix that? Or should i just get a new mic

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

                                  @jmartin1009 i would get a new mic… clearly this one is having issues… is that the array?

                                  Sam

                                  How to add modules

                                  learning how to use browser developers window for css changes

                                  J 1 Reply Last reply Reply Quote 0
                                  • J Offline
                                    jmartin1009 @sdetweil
                                    last edited by

                                    @sdetweil yeah it’s the PS3 eye camera microphone, it has a 4 microphone array that alsamixer hates lol

                                    1 Reply Last reply Reply Quote 0
                                    • C Offline
                                      costascontis
                                      last edited by

                                      I use the ps3 eye cam mic and its working fine with hotword…

                                      S 1 Reply Last reply Reply Quote 0
                                      • ejay-ibmE Offline
                                        ejay-ibm Project Sponsor Module Developer
                                        last edited by

                                        install audacity and give a quick test to your mic.
                                        you will know if you mic is dead

                                        sudo apt-get install audacity

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

                                          @costascontis said in MMM-Assistantmk2 and MMM-Hotword not picking up:

                                          I use the ps3 eye cam mic and its working fine with hotword…

                                          yes, but there are lots of reports of individual mics not working… replace and all is ok…

                                          Sam

                                          How to add modules

                                          learning how to use browser developers window for css changes

                                          1 Reply Last reply Reply Quote 0
                                          • B Offline
                                            bachoo786 @ejay-ibm
                                            last edited by bachoo786

                                            Hi @ejay-ibm

                                            I managed to get assistantmk2 and hotword working and everything is fine. However I will be grateful if you could please help me with the following queries:

                                            1). When i say jarvis or smart mirror, the assistantmk2 module takes 1 to 2 seconds to respond i.e. the ding bell I mean after which I can ask any question. How can I remove this lag and make it instant? I have seen other people dont have this issue.

                                            2). How do I get the assistantmk2 to play youtube videos on my mirror by asking it to play something from youtube?

                                            3). Finally can I change the hotword from “jarvis” to say “ok google”?

                                            Thanks.

                                            This is my config:

                                            {
                                                module: "MMM-AssistantMk2",
                                                position: "top_right",
                                                config: {
                                                  deviceLocation: {
                                                                    coordinates: { // set the latitude and longitude of the device to get localized information like weather or time. (ref. mygeoposition.com)
                                                                    latitude: 51.597442, // -90.0 - +90.0
                                                                    longitude: -0.338839, // -180.0 - +180.0
                                                      }
                                                    },
                                                  record: {
                                                    recordProgram : "arecord",
                                                    device        : "default",
                                                  },
                                                  play: { // Full values are in `FOR EXPERTS` section.
                                                          playProgram: "mpg321", // recommended.
                                                  },
                                                  notifications: {
                                                    ASSISTANT_ACTIVATED: "HOTWORD_PAUSE",
                                                    ASSISTANT_DEACTIVATED: "HOTWORD_RESUME",
                                                  },
                                                }
                                              },
                                              {
                                                module: "MMM-Hotword",
                                                config: {
                                                  record: {
                                                    recordProgram : "arecord",
                                                    device        : "default",
                                                  },
                                                  autostart:true,
                                                  onDetected: {
                                                    notification: function (payload) {
                                                      return "ASSISTANT_ACTIVATE"
                                                    },
                                                    payload: function (payload){
                                                      return {
                                                        profile: payload.hotword
                                                      }
                                                    }
                                                  },
                                                },
                                              },
                                            

                                            Also you have notifications in your config, what is it for? can you please explain? thanks.

                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 1 / 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