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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3

      @czabel
      I need your config and custom.css to guess what happened.

      posted in Utilities
      M
      MMRIZE
    • RE: Receive a HTTP request and subsequently wake up display and display alert/notification

      @MilkShake said in Receive a HTTP request and subsequently wake up display and display alert/notification:

      I cannot get http://192.168.1.100:8090/webhook?action=notification=SOMEONE_AT_THE_DOOR to work. It returns a 200:OK but nothing is displayed.

      http://MMIP:8090/webhook?notification=SOMEONE_AT_THE_DOOR
      

      read carefully.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda

      @bassin12
      Updated. There was a logical bug in the code. Sorry.

      posted in Utilities
      M
      MMRIZE
    • RE: Receive a HTTP request and subsequently wake up display and display alert/notification

      @MilkShake said in Receive a HTTP request and subsequently wake up display and display alert/notification:

      It works when I include the notification in the URL like this:

      http://MMIP:8090/remote?action=NOTIFICATION&notification=SOMEONE_AT_THE_DOOR

      Simply, you can use this.

      http://MMIP:8090/webhook?notification=SOMEONE_AT_THE_DOOR
      

      That is the GET method.

      for the shellscript, your trial seems right, but you should take care for the path and the permission.
      I think this would be right. (It depends on your environment)

      exec: "bash /home/Kragh/monitor_on.sh",
      // OR
      exec: ". /home/Kragh/monitor_on.sh",
      
      posted in Troubleshooting
      M
      MMRIZE
    • RE: Receive a HTTP request and subsequently wake up display and display alert/notification

      @MilkShake
      Could you share the doc? Let’s look inside together.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda

      @bassin12
      I’ll look inside; maybe it was my mistake.

      posted in Utilities
      M
      MMRIZE
    • RE: Receive a HTTP request and subsequently wake up display and display alert/notification

      @MilkShake
      24fb8089-36b9-4131-96bf-5f1e7ad12574-image.png

      First, What request method and body is emitted from the gate?
      It should be something like;

      • endpoint : http://MYMM:8090/webhook
      • requestMethod : "POST"
      • requestHeader: "Content-type: application/json"
      • requestBody : (
      {
        notification: "SOMEONE_AT_THE_DOOR"
      }
      

      If you select “GET” as requestMethod, you may need to deliver the notification as parameter instead of requestBody JSON

      Then you can configure like this.

      {
      	module: "MMM-NotificationTrigger",
      	config: {
      		useWebhook: true,
      		triggers: [
      			{
      				trigger: "SOMEONE_AT_THE_DOOR",
      				fires: [
      					{
      						fire: "SHOW_ALERT",
      						payload: {
      							title: "Someone arrives home",
      							message: "Welcome back home!",
      							timer: "10000",
      						}
      					}
      				]
      			}
      		]
      	}
      },
      
      posted in Troubleshooting
      M
      MMRIZE
    • RE: Receive a HTTP request and subsequently wake up display and display alert/notification

      @MilkShake
      What is the request body from the gate? “SHOW_ALERT”? I think it would be better to emit other dedicated custom notification other than “SHOW_ALERT”.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Calendar shows late day events on next day but at correct time

      @natmash @sdetweil
      It seems a bug on the default calendar module. One of my CX3 user also reported it so I looked inside.
      https://github.com/MMRIZE/MMM-CalendarExt3/discussions/146#discussioncomment-9380307

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3

      UPDATE 1.9.0 (2024-09-25)

      • customHeader available,.
        Now you can add customHeader for the calendar view instead of module’s default header.

      5544fcf8-c98d-47d3-be68-a699e82e03c1-image.png

      • variable maxEventLines by number of rows
        Every month has a different number of weeks in its calendar, so it was hard to adjust the height of the month view. Now, you can assign the variable maxEventLines by the number of rows. (And additional CSS Selectors related to it was added.)
      posted in Utilities
      M
      MMRIZE
    • 1
    • 2
    • 5
    • 6
    • 7
    • 8
    • 9
    • 95
    • 96
    • 7 / 96