A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
How to use the Alert module?
-
Hello,
Module: https://docs.magicmirror.builders/modules/alert.html
Is it possible to show an alert via notification?
I can send notifications with for example MMM-Buttons.
Is there an example anywhere?Thank you :)
-
@keineAhnung123 said in How to use the Alert module?:
MMM-Buttons
you could do something like this below. I did not tested it my self and it based on documentation of both MMM-Buttons and Alert module.
{ pin: 24, name: "alert", longPress: { title: "Show Alert", message: "Keep pressed for 3 seconds to show alert", imageFA: "alert image here", notification: "SHOW_ALERT", payload: { type: 'notification', title : 'Title of notification', message : 'Message text here', timer : 3000 } }, shortPress: undefined }
-
@ashishtank
Thanks.
That worked fine :) -
@keineAhnung123 My pleasure.