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

    Scheduled Pinned Locked Moved System
    421 Posts 61 Posters 632.0k Views 57 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.
    • ? Offline
      A Former User @teitlebot
      last edited by A Former User

      @teitlebot
      There are several posts in this forum. search “ifttt” and read them

      1 Reply Last reply Reply Quote 0
      • ? Offline
        A Former User @teitlebot
        last edited by

        @teitlebot
        https://forum.magicmirror.builders/topic/10917/guide-control-mm-via-google-home

        T 1 Reply Last reply Reply Quote 0
        • T Offline
          teitlebot @Guest
          last edited by

          @Sean thanks that looks awesome. Going to save it for a rainy day to install.

          1 Reply Last reply Reply Quote 0
          • W Offline
            wellwhatever
            last edited by wellwhatever

            Hello @Sean I’ve successfully rebuild the module but when I tried to activate it in the config, the module doesn’t load. The log says ‘No helper found for module: MMM-AssistantMk2’ (pretty sure the file is there inside the module folder). Have any idea whats the cause of this problem?
            Thanks in advance!

            ? 1 Reply Last reply Reply Quote 0
            • ? Offline
              A Former User @wellwhatever
              last edited by

              @wellwhatever
              Never seen that kind. Loading node_helper.js is MM’s job itself. If there is the file, regardless it has some errors or not, MM should try to load that file. (And if it has an error, it would spit out the error)

              W 1 Reply Last reply Reply Quote 0
              • W Offline
                wellwhatever @Guest
                last edited by

                This post is deleted!
                1 Reply Last reply Reply Quote 0
                • A Offline
                  acimail01
                  last edited by acimail01

                  How can I stop a video?
                  config is

                  youtubeAutoplay	: true,
                  pauseOnYoutube : false,
                  

                  But it does not help.

                  ? 1 Reply Last reply Reply Quote 0
                  • ? Offline
                    A Former User @acimail01
                    last edited by

                    @acimail01

                    youtubeAutoplay	: true,
                    pauseOnYoutube : false,
                    

                    with these options, you can re activate hotword again, and then, the current YT player will stop and be hidden.

                    Anyway, I’ll remove YT related feature on next updates.

                    1 Reply Last reply Reply Quote 0
                    • K Offline
                      Keith
                      last edited by

                      I’m trying to create a recipe that with a single command will hide “module A” and show “module B”. Another command will reverse this action. I can hide and show single modules or all modules but I can’t figure out hide one and show another. Any suggestions would be appreciated.

                      ? 1 Reply Last reply Reply Quote 0
                      • T Offline
                        tanvir586
                        last edited by

                        hi everyone,
                        how to get my YOUR_MODEL_ID. couldn’t find it any ware.

                        ? 1 Reply Last reply Reply Quote 0
                        • ? Offline
                          A Former User @Keith
                          last edited by

                          @Keith

                          I can hide and show single modules or all modules but I can’t figure out hide one and show another

                          Almost same. :D

                          command: {
                            "HIDE_A_REVEAL_B": {
                              moduleExec: {
                                module: [], // For all modules,
                                exec: (module, params, key) => {
                                  if (module.name == "MODULE_A") { // if module name is...
                                    module.hide()
                                  }
                                  if (module.name == "MODULE_B") {
                                    module.show()
                                  }
                                }
                              }
                            },
                          }
                          

                          Not tested code, but I believe you can catch the idea.

                          K 2 Replies Last reply Reply Quote 0
                          • ? Offline
                            A Former User @tanvir586
                            last edited by

                            @tanvir586

                            Read this doc.
                            https://developers.google.com/assistant/sdk/guides/service/python/embed/register-device

                            1 Reply Last reply Reply Quote 0
                            • T Offline
                              tanvir586
                              last edited by

                              Ive already registered. But now i can’t find the model id.

                              ? 1 Reply Last reply Reply Quote 0
                              • ? Offline
                                A Former User @tanvir586
                                last edited by

                                @tanvir586
                                0_1575297171747_ef28bbf2-1619-4e91-9491-e5a4aa58b08a-image.png

                                T J 2 Replies Last reply Reply Quote 0
                                • T Offline
                                  tanvir586 @Guest
                                  last edited by

                                  @Sean thanks for reply.
                                  My screen is like this.!0_1575303692872_Screenshot_20191202-162015_Samsung Internet.jpg
                                  I don’t have registration section.

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

                                    @tanvir586 back a couple pages, you created an application, right?

                                    at https://console.actions.google.com/u/0/?pli=1

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    1 Reply Last reply Reply Quote 0
                                    • T Offline
                                      tanvir586
                                      last edited by

                                      Sorry guys i think i didn’t register it.
                                      I followed this video https://youtu.be/UBgH5hejYtM.

                                      1 Reply Last reply Reply Quote 0
                                      • K Offline
                                        Keith @Guest
                                        last edited by

                                        @Sean I’ll give that a try and let you know. Thanks

                                        1 Reply Last reply Reply Quote 0
                                        • K Offline
                                          Keith @Guest
                                          last edited by

                                          @Sean I got it working, thanks for your help. The code that worked for me is below

                                          command: {
                                                "HIDECALENDAR": {
                                                    moduleExec: {
                                                         module:()=>{
                                                return []
                                              }, // For all modules,
                                                        exec: (module, params, key) => {
                                                            if (module.name == "MMM-GooglePhotos") { // if module name is...
                                                                module.show()
                                                            }
                                                            if (module.name == "MMM-CalendarExt2") {
                                                                module.hide()
                                                            }
                                                        }
                                                    }
                                                },
                                                "SHOWCALENDAR": {
                                                    moduleExec: {
                                                         module:()=>{
                                                return []
                                              }, // For all modules,
                                                        exec: (module, params, key) => {
                                                            if (module.name == "MMM-GooglePhotos") { // if module name is...
                                                                module.hide()
                                                            }
                                                            if (module.name == "MMM-CalendarExt2") {
                                                                module.show()
                                                            }
                                                        }
                                                    }
                                          
                                                }
                                            }
                                          
                                          1 Reply Last reply Reply Quote 0
                                          • T Offline
                                            tanvir586
                                            last edited by

                                            Is it possible to make AssistantMk2 to show my ip camera feed? If i ask AssistantMk2 to show my front door, it says to select output display.

                                            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
                                            • 17
                                            • 18
                                            • 19
                                            • 20
                                            • 21
                                            • 22
                                            • 19 / 22
                                            • 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