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 562.4k 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 @bryan_1
      last edited by

      @bryan_1
      Can you show me the recipe(command and transcriptionHook or gAction) about SHOWMODULES?

      B 1 Reply Last reply Reply Quote 0
      • B Offline
        bryan_1 @Guest
        last edited by

        @Sean
        thank you sean for your quick response. Actually I use the default hide_and_show_all_modules.js and change the pattern to german:
        var recipe = {
        transcriptionHook: {
        “HIDE_ALL_MODULES”: {
        pattern: “alle verstecken”,
        command: “HIDEMODULES”
        },
        “SHOW_ALL_MODULES”: {
        pattern: “alle module”,
        command: “SHOWMODULES”
        },
        },
        command: {
        “HIDEMODULES”: {
        moduleExec: {
        module:()=>{
        return []
        },
        exec: (module, params, key) => {
        module.hide(1000, null, {lockString:“AMK2”})
        }
        }
        },
        “SHOWMODULES”: {
        moduleExec: {
        module:[],
        exec: (module, params, key) => {
        module.show(1000, null, {lockString:“AMK2”})
        }
        }
        },
        },
        }

        exports.recipe = recipe

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

          @bryan_1
          try this instead module.show(1000, null, {lockString:“AMK2”})

          module.show(1000, null, {lockString: "AMK2", force: true})
          
          B 2 Replies Last reply Reply Quote 0
          • B Offline
            bryan_1 @Guest
            last edited by

            @Sean I’ll try it tonight (I’m still at work now :smiling_face_with_smiling_eyes: ) and let you know. Many thanks…you did really a great job :thumbs_up_light_skin_tone: :folded_hands:

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

              related to this topic, I haven’t been able to understand what I need to do.

              I am trying to coordinate between the voice module go to sleep/wake up, and my motion detection module MMM-SleepWake.

              My displays will not turn off programmatically, so I have to hide/show modules

              But you only show what was NOT already hidden at time of sleep.
              Voice says sleep, motion says wake… but… I need to know what was already hidden, so I don’t wake them up (restore to same state)…

              with MMM-voice we developed a notification process, where the voice module does the sleep, but informs my module who was already hidden… so IF motion wakes up, i don’t accidentally show modules I shouldn’t…

              wake up voice command works ok, (changed screenOn to notify my module to wake)
              go to sleep is missing…

              this is the socketnotification code in MMM-voice.js after voice detects ‘go to sleep’, only if using the hide/show sleep approach

              if (notification === 'STAND_BY_ACTION') {
                          if (payload.type === 'show') {
                              if (payload.hardware === false) {
                                  MM.getModules().enumerate((module) => {
                                      if (this.previouslyHidden.includes(module.identifier)) {
                                          module.show(1000);
                                      }
                                  });
                                  this.previouslyHidden = [];
                              }
              
                              this.sendNotification('STAND_BY', { status: false });
                          } else if (payload.type === 'hide') {
                              if (payload.hardware === false) {
                                  MM.getModules().enumerate((module) => {
                                      if (module.hidden === true) {
                                          this.previouslyHidden.push(module.identifier);
                                      } else {
                                          module.hide(1000);
                                      }
                                  });
                              }
              
                              this.sendNotification('STAND_BY', { status: true, modules: this.previouslyHidden.slice(0) });
              

              Sam

              How to add modules

              learning how to use browser developers window for css changes

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

                @sdetweil
                First, this module doesn’t manage module’s showing and hiding itself. Of course I provided some recipe about it, but it’s better to be considered as a just example. The main purpose of this AMK2 is to give an ability about voice command and to relay it to other module. Not to control all things by AMK2 itself.
                I think real job should be done by proper extern module. So If you have any good module(which is existed already or be planned to be made by yourself) to manage modules’ showing and hiding(There would be several modules already for this job), just transfer proper commands(notifications) to that module to do its job.

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

                  @Sean ok, thanks… still don’t understand recipe process design…

                  voice triggers command? command is some routine? run in context of module.js?

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

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

                    @sdetweil

                    • To catch the specific voice order : use transcriptionHook or gAction. gAction is more natural way for user without side-effect.(something similar with Alexa Skill). But transcriptionHook is easier to make. Here is a just sample.
                    transcriptionHook : {
                      "MY_TEST_ORDER" : {
                        pattern: "execute order 66",
                        command: "MY_TEST_COMMAND"
                      }
                    }
                    

                    This will hook your transcription from your speech when you say “Execute order 66”.
                    But this is just a kind of trigger. The real job(MY_TEST_COMMAND) needs to be defined.

                    • To define what to do when this order is triggered. : define command.
                    command: {
                      "MY_TEST_COMMAND": {
                        notificationExec: {
                          notification: "SHOW_ALERT",
                          payload: {
                            message: "Yes, my lord."
                          }
                        }
                      }
                    }
                    

                    This shows WHAT TO DO - to emit some notification(“SHOW_ALERT”) which alert module can understand and do as it’s job.

                    This is basic concept.

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

                      @Sean said in MMM-AssistantMk2:

                      which alert module can understand and do as it’s job.

                      well, SOME module MAY or may NOT understand and process

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

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

                        @sdetweil
                        Yes. indeed. But it’s that module’s own business. Those kinds of modules are not designed to WORK TOGETHER with other modules. Sorry, but it’s not my fault.
                        In that case, you can execute module’s internal method by force. (Of course it is also not proper in some modules.)

                        command: {
                          "MY_TEST_COMMAND": {
                            moduleExec: {
                              module: ["alert"],
                              exec: (module, params, key) => {
                                module.show_alert({message:"Yes, my lord."}) // this code might make an error on real usage, but you can catch what I mean.
                              }
                            }
                          }
                        }
                        

                        Anyway, you can build your own module for your specific job when there is no module to use.

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 25
                        • 26
                        • 27
                        • 28
                        • 29
                        • 42
                        • 43
                        • 27 / 43
                        • 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