• 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-AssistantMk2 (v3)

Scheduled Pinned Locked Moved System
135 Posts 27 Posters 51.0k Views 25 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
    Serge @Guest
    last edited by Mar 8, 2020, 12:41 PM

    @Bugsounet got it. thanx for quick reply. will test shortly

    1 Reply Last reply Reply Quote 0
    • A Offline
      athavanraja @Guest
      last edited by Mar 15, 2020, 6:48 PM

      @Bugsounet Hi I am on version 3.0.2 and trying to update to latest version.
      Running npm run update at ~/MagicMirror/modules/MMM-AssistantMk2 gives the following error message

      pi@raspberrypi:~/MagicMirror/modules/MMM-AssistantMk2 $ npm run update
      npm ERR! missing script: update

      npm ERR! A complete log of this run can be found in:
      npm ERR! /home/pi/.npm/_logs/2020-03-15T18_41_39_806Z-debug.log

      Any help is highly appreciated.

      Thanks.

      1 Reply Last reply Reply Quote 0
      • ? Offline
        A Former User
        last edited by Mar 15, 2020, 8:18 PM

        hi, write update script since v3.1.X ;)

        so, retry with this:

        cd ~/MagicMirror/modules/MMM-AssistantMk2
        git pull
        npm run update
        

        it should work ;)
        notes :

        • install all new needed dependencies
        • skip GCC check
        • Electron rebuild step is not needed
        • Audio check is not needed too

        If you have some problems for updating, or if don’t work, i will help you ;)

        A 1 Reply Last reply Mar 16, 2020, 2:31 AM Reply Quote 0
        • A Offline
          athavanraja @Guest
          last edited by Mar 16, 2020, 2:31 AM

          @Bugsounet Thank you very much. Updated to 3.1.1-2 All working fine.

          1 Reply Last reply Reply Quote 0
          • A Offline
            amsuvarna27
            last edited by Mar 16, 2020, 2:49 AM

            Can anyone share me image file of Magic mirror back up with Voice recognition and face recognition

            1 Reply Last reply Reply Quote 0
            • ? Offline
              A Former User
              last edited by A Former User Apr 17, 2020, 9:26 PM Mar 19, 2020, 12:36 AM

              MMM-AssistantMk2 v3.2.1

              NEW UPDATES

              3.2.1 (16/04/2020)

              • FIX: Send A2D response only on no hooked response
              • FIX: repository change owner
              • ADD: preprared recipe with-radio_fr.js recipe for A2D Radio (FR Only)
              • ADD: npm run rebuild -> REFRESH installation on MagicMirror version change

              3.2.0 (09/04/2020)

              • ADD: Chinese_simplified translate (thx to @wlmqpsc)
              • ADD: ability to play personnal sound on recipes soundExec command (see wiki)
              • FIX: no fade in animation on first use in Fullscreen ui
              • DEL: full addon code and cleanning
              • ADD: add control if A2D used

              3.1.2 (17/03/2020)

              • FIX: No sound response issue when custom action is used.
              • FIX: correct youtube search link.
              • ADD: Add A2D stop command (beta)
              1 Reply Last reply Reply Quote 0
              • ? Offline
                A Former User
                last edited by Apr 17, 2020, 9:04 PM

                we are now in v3.2.2 because i detect a problem in installation (package conflict and solved)

                1 Reply Last reply Reply Quote 0
                • C Offline
                  costascontis
                  last edited by costascontis Apr 20, 2020, 4:47 PM Apr 20, 2020, 4:45 PM

                  using the latest module + MMM-Hotword and everything works exept controling MMM-Spotify by voice.I use the prepared recipe for it ,MMM-Spotify is showing whatever is playing allright but no voice command is working. My config:

                  {
                                         module: "MMM-AssistantMk2",
                                         position: "top_left",
                                         config: {
                                                  ui: "Classic",
                                                  assistantConfig: {
                  						  projectId: "kitchen-tv-d4c48", // Required to use gaction.
                                                                    modelId: "kitchen-tv", // (OPTIONAL for gaction)
                                                                    instanceId: "kitchen-tv", // (OPTIONAL for gaction)
                                                                    latitude: 37.975342,
                                                                    longitude: 23.736151,
                                                                   },
                                                              micConfig: {
                                                              recorder: "arecord",
                  			                    device: "plughw:1"
                                                             },
                                                            recipes: [ "with-MMM-Hotword.js", "Reboot-Restart-Shutdown.js", "with-MMM-Spotify.js" ],
                                                            profiles: {
                  					   "default": {
                                                                         profileFile: "default.json",
                                                                         lang: "en-US"
                                                                        }
                  					  },
                                                              useA2D: false,
                                                 }
                                  },
                  		{
                                          module: "MMM-Hotword",
                                          position: "bottom_left",
                                          config: {
                                          useDisplay: false,
                                          chimeOnFinish: null,
                                          recipes: ["with-AMk2v3_Jarvis.js"],
                                          mic: {
                  			recordProgram: "arecord",
                                          device: "plughw:1",
                                               },
                                                  },
                                  },
                  {
                  			module: "MMM-Spotify",
                                          position: "top_right",
                  			config: {
                  				 style: "mini", // "default" or "mini" available
                                                   control: "hidden", //"default", "hidden" available
                                                   updateInterval: 1000,
                                                   onStart: null, // disable onStart feature with `null`
                                                   allowDevices: [], //If you want to limit devices to display info, use this.
                                                   // allowDevices: ["RASPOTIFY", "My iPhoneX", "My Home speaker"],
                                                  }
                                  },
                  ? A 2 Replies Last reply Apr 20, 2020, 4:51 PM Reply Quote 0
                  • ? Offline
                    A Former User @costascontis
                    last edited by Apr 20, 2020, 4:51 PM

                    @costascontis : MMM-Spotify and recipes have an issue @eouia will solve it soon.
                    I can’t inspect it, because I have no premium account

                    C 1 Reply Last reply Apr 20, 2020, 5:00 PM Reply Quote 0
                    • C Offline
                      costascontis @Guest
                      last edited by Apr 20, 2020, 5:00 PM

                      @Bugsounet said in MMM-AssistantMk2 (v3):

                      @costascontis : MMM-Spotify and recipes have an issue @eouia will solve it soon.
                      I can’t inspect it, because I have no premium account

                      oh!!! need to have premium account on spotify to work?i dont…

                      ? 1 Reply Last reply Apr 20, 2020, 5:40 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 7
                      • 8
                      • 13
                      • 14
                      • 6 / 14
                      • 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