• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

Sending notifications from python to MM

Scheduled Pinned Locked Moved Solved Troubleshooting
8 Posts 3 Posters 3.2k Views 2 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.
  • B Offline
    bream
    last edited by Sep 30, 2018, 5:47 PM

    Hi,

    I have a touch phat that I’d like to use to interact with modules, but the libraries for it are python only.
    That’s fine as I’m familiar with python, but I have no java script experience.
    The interactions that I’m thinking of are similar to those of the MMM-ModuleScheduler, e.g. hiding and displaying etc.

    I think my best bet is to make use of the notifications system and send post requests using the MMM-API module (though I’d be happy to receive other suggestions).

    My problem is that I can’t figure out what the post request should look like.
    The readme on the MMM-API gives this example :
    http://MAGIC_MIRROR_IP:PORT/api/v1/modules/MODULE_NAME/ACTION?payload1key=payload1value&payload2key=payload2value
    but I can’t figure out what the payloadxkey and payloadxvalues should be for, say, hiding or showing a module.
    I’ve looked at js of the MMM-ModuleScheduler and the MMM-Remote-Control but I can’t figure it out.

    Could someone provide me with example post request urls to hide and show the calendar module please, or suggest a better method please?

    1 Reply Last reply Reply Quote 0
    • A Offline
      AxLed Module Developer
      last edited by Oct 26, 2018, 9:26 PM

      @bream
      Hi,
      what are you trying to do with your buttons?

      Here are some sample links for MMM-Remote-Control:

      Change Pages (to use with MMM-Pages):
      http://MAGIC_MIRROR_IP:PORT/remote?action=NOTIFICATION& notification=PAGE_DECREMENT
      http://MAGIC_MIRROR_IP:PORT/remote?action=NOTIFICATION& notification=PAGE_INCREMENT

      Some MM Basic Operations:
      http://MAGIC_MIRROR_IP:PORT/remote?action=REBOOT
      http://MAGIC_MIRROR_IP:PORT/remote?action=SHUTDOWN

      Some Display Operations:
      http://MAGIC_MIRROR_IP:PORT80/remote?action=MONITORON
      http://MAGIC_MIRROR_IP:PORT/remote?action=MONITOROFF

      Hope that helps.

      AxLED

      1 Reply Last reply Reply Quote 0
      • B Offline
        bream
        last edited by Oct 29, 2018, 6:18 PM

        @AxLed
        Hi, thanks for replying. That’s helpful to see spelled out.

        I’m trying to hide or show the newsfeed module at the moment and trying to figure out the url to do that.

        Based on your post and what I can figure out from the MMM-Remote-Control readme, I’ve tried the following, but they don’t work
        http://MAGIC_MIRROR_IP:PORT/remote?action=HIDE&payload={%22name%22:%22newsfeed%22}
        http://MAGIC_MIRROR_IP:PORT/remote?action=HIDE&payload=NEWSFEED
        http://MAGIC_MIRROR_IP:PORT/remote?action=HIDE& notification=newsfeed

        I’m obviously not interpreting the info in the readme correctly. Can you suggest a url that will hide the module?

        1 Reply Last reply Reply Quote 0
        • A Offline
          AxLed Module Developer
          last edited by Oct 29, 2018, 6:46 PM

          @bream

          The link has to look like:
          http://MAGIC_MIRROR_IP:PORT/remote?action=HIDE&module=module_7_newsfeed

          You have to use the right module name, in my case it is “module_7_newsfeed”, you can find this out by opening your MM in your firefox browser and use F12 Button and check the HTML source, what the name of your newsfeed module is.

          Hope this helps.

          AxLED

          1 Reply Last reply Reply Quote 0
          • B Offline
            bream
            last edited by bream Oct 30, 2018, 7:46 AM Oct 29, 2018, 7:18 PM

            @axled said in Sending notifications from python to MM:

            You have to use the right module name, in my case it is “module_7_newsfeed”, you can find this out by opening your MM in your firefox browser and use F12 Button and check the HTML source, what the name of your newsfeed module is.

            It does - the buttons work as required now. Thank you :)
            So that looks like it’s the position of the module in the config file so it’ll remain static unless I change the config for some reason.
            I really appreciate that. Thanks again.

            1 Reply Last reply Reply Quote 0
            • C Offline
              cyberdie
              last edited by Oct 30, 2018, 8:27 AM

              And how to trigger an alert from python or bash (curl)?
              Is possible to show an image in the alert popup?

              B 1 Reply Last reply Oct 31, 2018, 7:45 PM Reply Quote 0
              • B Offline
                bream @cyberdie
                last edited by Oct 31, 2018, 7:45 PM

                @cyberdie
                From python, the following will result in an alert

                >>> import requests
                >>> url = 'http://MAGIC_MIRROR_IP:PORT/remote?action=SHOW_ALERT&title="This is the title"&message="And this is the message"'
                >>> requests.get(url)
                

                I can’t answer as to how you’d place an image within the alert though

                C 1 Reply Last reply Nov 4, 2018, 9:46 AM Reply Quote 0
                • C Offline
                  cyberdie @bream
                  last edited by Nov 4, 2018, 9:46 AM

                  Thanks @bream !

                  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