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

    blt791

    @blt791

    0
    Reputation
    1
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    blt791 Unfollow Follow

    Latest posts made by blt791

    • RE: MMM-Keyboard setup

      Well, I tried and failed. I added the entries to the MMM-GoogleCalendarEventAdder module js file and not only did it not work, but it made the event adder disappear. I’m so lost but I’ll keep trying til I get it right.

      posted in General Discussion
      B
      blt791
    • RE: MMM-Keyboard setup

      @sdetweil thank you for your quick response. Fingers crossed I do this right

      posted in General Discussion
      B
      blt791
    • MMM-Keyboard setup

      Having a bit of difficulty getting this virtual keyboard running on my setup. I guess I’m not fully understanding so I thought I would ask instead of continuing to struggle. Do the following entries need to be added to the js file of every module that I want to use the keyboard in or is there a way to have a universal blanket entry somewhere?

      this.sendNotification(“KEYBOARD”, {
      key: “uniqueKey”,
      style: “default”
      });

      this.sendNotification(“KEYBOARD_INPUT”, {
      key: “uniqueKey”,
      message: “test”
      });

      notificationReceived : function (notification, payload) {
      if (notification == “KEYBOARD_INPUT” && payload.key === “uniqueKey”) {
      console.log(payload.message);
      }
      },

      posted in General Discussion
      B
      blt791