MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. corius
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    C
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 8
    • Groups 0

    corius

    @corius

    0
    Reputation
    65
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    corius Unfollow Follow

    Latest posts made by corius

    • RE: MMM-NotificationTrigger transform payload

      @lavolp3 @sdetweil thank you for the time you have spent so far. I would be happy if someone else has an idea how to implement it. Thanks:smiling_face:

      posted in Troubleshooting
      C
      corius
    • RE: MMM-NotificationTrigger transform payload

      @sdetweil yes i have

      posted in Troubleshooting
      C
      corius
    • RE: MMM-NotificationTrigger transform payload

      @lavolp3 what do you mean by “more specific”?

      posted in Troubleshooting
      C
      corius
    • RE: MMM-NotificationTrigger transform payload

      @lavolp3 Thank you for the fast answer. I tried this code. the result is that I get a notification but so far it only contains the title (test) but not the massage (title of the calendar event)

      posted in Troubleshooting
      C
      corius
    • RE: MMM-NotificationTrigger transform payload

      @lavolp3 yes that is exacly wat i want. can you please post the code? Thank you

      posted in Troubleshooting
      C
      corius
    • RE: MMM-NotificationTrigger transform payload

      by the title i mean the title of the individual calendar events. but ok then it doesn’t work that way. So again asked differently: is there a way to display upcoming calendar events via the alert module?

      posted in Troubleshooting
      C
      corius
    • RE: MMM-NotificationTrigger transform payload

      can nobody help me?

      posted in Troubleshooting
      C
      corius
    • MMM-NotificationTrigger transform payload

      Hi there…
      first of all sorry for my english
      Can someone explain how I can transfer the payload “title” of the standard calendar module to the payload “massage” of the alert module? This is the configuration I’ve tested:

      {
        module: "MMM-NotificationTrigger",
        config: {
          triggers:[
            {
              trigger: "CALENDAR_EVENTS",
              fires: [
                {
                  fire:"SHOW_ALERT",
                  payload: (payload) => {
                    return {
                      type: "notification",
                      title: "test",
                      message: payload.title
                    }
                  },
                },
              ],
            },
          ]
        }
      
      },  
      

      The result of this configuration is that I only see the title in the alert.

      Thanks.

      posted in Troubleshooting
      C
      corius