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

    Posts

    Recent Best Controversial
    • RE: ELI5 how notifications between modules work and how and where to create them

      @sdetweil

      Thank you! That’s very helpful.

      I wound up writing a very basic module to send a notification and it worked.

      I’m still not sure how to integrate it into an existing module, but I am starting to understand it better.

      posted in Troubleshooting
      R
      reverendz
    • RE: ELI5 how notifications between modules work and how and where to create them

      @sdetweil

      Hi, I’m frankly a bit embarrassed to reply.

      I’m a newbie to all this, so while I’m able to get the modules working and have a passable custom.css, when I read things like:

      “In the routine, you would add one line of code to call
      this.sendNotification(Code, parms) as required by the keyboard module,
      to tell the module supplying the keyboard to pop it up”

      I have no idea what that means practically.

      If I had an example, breaking it down like “edit this specific file and add this bit” and could play around with it, I’d get it. But reading that description, I’m totally lost.

      posted in Troubleshooting
      R
      reverendz
    • ELI5 how notifications between modules work and how and where to create them

      I have been reading through multiple forum posts and it seems like when someone gets the answer, they don’t break it down in a way that’s understandable.

      I’m trying to add a button to a module like this:

      https://github.com/shbatm/MMM-OnScreenMenu/issues

      And use the button to call a keyboard like this:

      https://forum.magicmirror.builders/topic/12526/mmm-keyboard-a-virtual-touch-keyboard

      I don’t understand where I’m supposed to put the notification and how it’s supposed to get called.

      Apologies if this has been answered clearly, but I need a step by step break down because I’m just not getting it.

      I need to understand:

      • Where specifically to add the notification .
      • How it’s supposed to be formatted. Does it need to be a new function or something if it’s going into a module.js?
      • Does the other module need to be modified too?

      I’m a newbie and managed to get multiple modules working, but I can’t seem to understand how to send notifications/call other modules.

      I’d really like to use an on screen button module to call a keyboard and do some text entry, but having a heck of a time figuring this all out.

      Thanks!

      posted in Troubleshooting
      R
      reverendz
    • RE: MMM-Keyboard (a virtual touch keyboard)

      @sdetweil said in MMM-Keyboard (a virtual touch keyboard):

      {
      key: “uniqueKey”,
      message: “test”
      }

      I’m having the same issue as the previous poster.

      I can’t figure out how to put this into the config.js and get it to work. When I put the example as listed, my config won’t build.

      Can you provide an example?

      Explicitly: the module (doesn’t matter which, ideally one of the defaults) and how it looks when you implement this.

      posted in System
      R
      reverendz
    • RE: Touchscreen Family Dashboard

      This is amazing! Thank you.

      Do you know if the Google calendar option works with iCal/iCloud calendar?

      posted in Show your Mirror
      R
      reverendz
    • RE: MMM-Wallpaper configure for iCloud Album photo

      @barlouka

      Following up because it took me a while to figure out.

      https://github.com/kolbyjack/MMM-Wallpaper

      You use the iCloud album id as a config item.

      source: “icloud:”,

      The album id is simply the last bit in your iCloud shared album URL. It will look something like this:

      https://www.icloud.com/sharedalbum/#nUm83r5N13t+3r5

      That’s not a real link, just an example.

      Copy everything to the right of the #, basically nUm83r5N13t+3r5.

      You must use a shared album and you have to set it to Public Website (anyone with the link can view the photos). That will allow you to generate the link. See: https://support.apple.com/en-us/108314

      This is what a basic config will look like.

      modules: [
        {
          module: "MMM-Wallpaper",
          position: "fullscreen_below",
          config: { // See "Configuration options" for more information.
            source: "icloud:nUm83r5N13t+3r5",
            slideInterval: 60 * 1000 // Change slides every minute
          }
        }
      ]
      
      posted in Troubleshooting
      R
      reverendz
    • 1
    • 2
    • 2 / 2