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

    Posts

    Recent Best Controversial
    • RE: Requesting assistance with GroceryApp module

      @sdetweil my apologies.

      The code within the node_helper is mostly from the Kroger Developer documentation. However, I am very new to all this and there is a very good chance that I transferred the documentation over incorrectly or in a way that wont work. I may have incorrectly assumed that by using the Kroger Docs/code it would result in getting similar data to what I’d see upon logging into the mobile/desktop site.

      posted in Development
      C
      CurlyQ12391
    • RE: Requesting assistance with GroceryApp module

      @sdetweil, firstly I’d like to apologize for the gap in my response! I broke my main config shortly after posting this and ended up having to re-flashing my SD card and rebuilding my mirror back up the way I had it from scratch.

      I really appreciate you taking the time to answer my question.

      My intent with this module was to basically house my grocery cart, similar to the interface I have on my phone or visiting the website. I think that an easier approach might be to use an iFrame module for the website, but I was really wanting to utilize the authorization token process to prevent having to login each time - since the end goal is to have the Mirror up on the wall without a keyboard/mouse.

      posted in Development
      C
      CurlyQ12391
    • RE: Need help MMM-touch MMM-pages MMM-page indicator

      @MMRIZE, thank you for catching those gesture name errors and giving my another example. I FINALLY GOT IT :)

      		{
      			module: "MMM-Touch",
      			position: "bottom_bar",
      			    disabled: false,
      			    config: {
      				debug: false,
      				useDisplay: false,
      				autoMode: false,
      				defaultMode: "default",
      					gestureCommands: {
      					  "default":{
      							"TAP_1": (commander) => {commander.sendNotification("USER_PRESENCE", true);},
      							"SWIPE_LEFT_1": (commander) => {commander.sendNotification("PAGE_DECREMENT", null);},
      							"SWIPE_RIGHT_1": (commander) => {commander.sendNotification("PAGE_INCREMENT", null);},
      						},
      				}, 
      			}
      		},
      

      I tried to change things systematically to determine what truly made it start working was the addition of payload after “USER_PRESENCE” and oddly enough adding semicolons at the end of each gesture command.

      Hopefully this thread can help someone else down the line :)

      posted in Development
      C
      CurlyQ12391
    • 1 / 1