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-NotificationTrigger

    Scheduled Pinned Locked Moved System
    8 Posts 2 Posters 3.0k Views 4 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.
    • M Offline
      MilkShake
      last edited by MilkShake

      Hi Everyone,
      Can some help me create a Notification trigger that fires multiple commands?

      So I have a gate that calls PLAY_SOUND when the gate button is pressed. Besides playing the sound I would like to show an alert and wake up the screen.

      So playing the sound and wakening the screen works. But I would like to add an Alert as well. The working config is like this:

      {
            module: "MMM-NotificationTrigger",
            config: {
              triggers:[
                {
                  trigger: "PLAY_SOUND",
                  fires: [
                    {
                      fire:"USER_PRESENCE",
                      payload: function(payload) {
                        return false
                      },
                    },
                  ],
                },
              ]
            }
       },
      

      Now, if I wan’t and alert on the same event, I tried this:

      {
            module: "MMM-NotificationTrigger",
            config: {
              triggers:[
                {
                  trigger: "PLAY_SOUND",
                  fires: [
                    {
                      fire:"USER_PRESENCE",
                      payload: function(payload) {
                        return false
                      },
      
      		{
                      fire:"SHOW_ALERT",
                  	payload: function() {
                    	return {
                      type:"notification",
                      title:"Porten",
                      message: "Der er nogen ved porten!"
                      },
                    },
                  ],
                },
              ]
            }
       },
      

      But it does not work.

      Any help appreciated…

      Best
      MilkShake

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

        @MilkShake

        It works.

        Anyway, this is more cleaner configuration.

        {
          module: "MMM-NotificationTrigger",
          config: {
            triggers:[
              {
                trigger: "PLAY_SOUND",
                fires: [
                  {
                    fire:"USER_PRESENCE",
                  },
                  {
                    fire:"SHOW_ALERT",
                    payload: {
                      type:"notification",
                      title:"Porten",
                      message: "Der er nogen ved porten!",
                    },
                  },
                ],
              },
            ]
          }
        },
        
        M 1 Reply Last reply Reply Quote 0
        • M Offline
          MilkShake @Guest
          last edited by

          @Sean I also tried that. The Alert does not show up in MM. It wakes the screen with USER_PRESENCE and plays the sound, but no Alert.

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

            @MilkShake Well, I don’t know why your ALERT module is not working, but as you see the screenshot, it should work. And, probably the reason might not be this module’s responsibility.

            M 2 Replies Last reply Reply Quote 0
            • M Offline
              MilkShake @Guest
              last edited by

              @Sean Yeah, I see that. When I fire this

              http://MM_IP:8080/remote?action=SHOW_ALERT&message=Der%er%nogen%ved%porten!&title=PORT&timer=10&type=alert

              it displays the alert.

              1 Reply Last reply Reply Quote 0
              • M Offline
                MilkShake @Guest
                last edited by

                @Sean I got it to work using:

                {
                      module: "MMM-NotificationTrigger",
                      config: {
                        triggers:[
                          {
                            trigger: "PLAY_SOUND",
                            fires: [
                              {
                                fire:"USER_PRESENCE",
                                payload: function(payload) {
                                  return false
                                },
                
                    {
                                fire:"SHOW_ALERT",
                              payload: function(payload) {
                                return {
                                type:"notification",
                                title:"Porten",
                                message: "Der er nogen ved porten!"
                                },
                              },
                            ],
                          },
                        ]
                      }
                 },
                

                Thanks for helping!

                1 Reply Last reply Reply Quote 0
                • 1 / 1
                • 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