• 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.

Wunderlist - your todos on the mirror

Scheduled Pinned Locked Moved Troubleshooting
113 Posts 27 Posters 169.4k Views 22 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.
  • P Offline
    pugsly
    last edited by Jan 1, 2017, 11:49 PM

    I kept having this same problem where it would stop pulling the To-Do’s so I switched to ToDoist and thought the problem was solver but low and behold it started doing it with ToDoist as well.

    Although I do like the interface of ToDoist much better so I think i am going to stick with this one my only resort is to set a cron job to restart the pi nightly before it goes to sleep and blanks out the monitor.

    anyone know how I can get PM2 to automatically restart at midnight rather then reboot the entire pi?

    S 1 Reply Last reply Jan 2, 2017, 1:11 AM Reply Quote 0
    • S Offline
      Sunburned @pugsly
      last edited by Jan 2, 2017, 1:11 AM

      @pugsly

      This is the page that I used to set up my cron job. I set it up to reset at 2am and start the mirror at 2:03.

      P 1 Reply Last reply Jan 19, 2017, 6:06 PM Reply Quote 0
      • P Offline
        pugsly @Sunburned
        last edited by Jan 19, 2017, 6:06 PM

        @Sunburned
        I don’t want to reboot, I just want to restart pm2 and I have added it to my crontab but it doesn’t seem to work.

        i see in the logs that cron has executed the command but the node process never restarts.

        1 Reply Last reply Reply Quote 0
        • M Offline
          Mar
          last edited by Jan 31, 2017, 5:32 PM

          Im managed to get this up and running, great job!!

          The one thing I’m trying to do is create two of these modules one for to-do and one for another list to keep them separate as we cant tell what is on each list. but putting two modules throws an error? Has anyone managed to get two lists up (from the same wunderlist account) in two separate modules or lists (not as one big list on the mirror).

          O 1 Reply Last reply Jan 31, 2017, 6:01 PM Reply Quote 0
          • O Offline
            onetwankyfive @Mar
            last edited by yawns Jan 31, 2017, 7:11 PM Jan 31, 2017, 6:01 PM

            @Mar mine worked fine

             {
                    module: 'MMM-Todoist',
                    position: 'top_left',  // This can be any of the regions. Best results in left or right regions.
                    header: 'Alexa TO-DO List', // This is optional
                    config: { // See 'Configuration options' for more information.
                        accessToken: 'accesstokenaXXXXCXCC687',
                        maximumEntries: 60,
                        interval: 60,
                        lists: [ 12345 ],
                        fade: false
                  }
                },
            
            
             {
                    module: 'MMM-Todoist',
                    position: 'top_left',  // This can be any of the regions. Best results in left or right regions.
                    header: 'Alexa Shopping List', // This is optional
                    config: { // See 'Configuration options' for more information.
                        accessToken: 'XXXX',
                        maximumEntries: 60,
                        interval: 60,
                        lists: [ 1234 ],
                        fade: false
                  }
                },
            
            M 1 Reply Last reply Jan 31, 2017, 9:18 PM Reply Quote 0
            • H Offline
              Hein-Jan
              last edited by Jan 31, 2017, 8:05 PM

              I also have 2 Wunderlist/lists running one underneath the other.
              I also implemented this by having the module twice in the config.

              1 Reply Last reply Reply Quote 0
              • M Offline
                Mar @onetwankyfive
                last edited by Jan 31, 2017, 9:18 PM

                @onetwankyfive Thanks, i couldnt figure out if it was not supported or something I did wrong. Appreciate you posting how you did it. Looks like it was my error. Thanks for the help! Glad that this works.

                1 Reply Last reply Reply Quote 0
                • M Offline
                  Mar
                  last edited by Mar Feb 20, 2017, 10:42 PM Feb 20, 2017, 10:40 PM

                  I’ve had two wunderlist lists running under each other for just under month now without issues, but now it seems like the lists are not updating at all?

                  I requested a new accesstoken and it worked again for a couple refreshes but ive come back and checked on it later in the day and the lists werent updating. I’ve restarted the MM and the lists dont seem to be loading at all.

                  It sort of seems like its rejecting the token, or the token is being locked out after some time. Has anyone else had this issue before?

                  edit: Also there are no errors at startup via pm2 logs.

                  H 1 Reply Last reply Feb 21, 2017, 8:43 PM Reply Quote 0
                  • B Offline
                    bminer1
                    last edited by yawns Feb 23, 2017, 10:17 AM Feb 21, 2017, 3:37 AM

                    I have been running with 2 lists since the beginning of Jan. No issues with loading or the lists not updating. This may be an isolated incident. My wife and i are on the lists and either of us can add or delete. When we make a change, it changes on the mirror. Here is my config:

                    {
                    			"module": "MMM-Wunderlist",
                    			"position": "top_right",
                    			"header": "To Do",
                    			"config": {
                    				"accessToken": "Your Token Here",
                    				"clientID": "Your clientID here",
                    				"maximumEntries": 5,
                    				"order": "normal",
                    				"lists": [
                    					"To Do"
                    				],
                    				"interval": 60,
                    				"fade": false,
                    				"fadePoint": 0.25
                    			}
                    		},
                    		{
                    			"module": "MMM-Wunderlist",
                    			"position": "top_right",
                    			"header": "Groceries",
                    			"config": {
                    				"accessToken": "Your Token Here",
                    				"clientID": "Your clientID here",
                    				"maximumEntries": 15,
                    				"order": "normal",
                    				"lists": [
                    					"Groceries"
                    				],
                    				"interval": 60,
                    				"fade": false,
                    				"fadePoint": 0.25
                    			}
                    		},
                    

                    0_1487648419885_Screen Shot 2017-02-20 at 10.39.35 PM.png

                    1 Reply Last reply Reply Quote 0
                    • H Offline
                      Hein-Jan @Mar
                      last edited by Feb 21, 2017, 8:43 PM

                      @Mar

                      I had similar problems. A search on the forum revealed that a daily reboot acts as a work-around. I am using the MMM-Remote-Control in combination with the MMM-ModuleScheduler for the nightly reboots.
                      It works like a dream ever since.

                      M 1 Reply Last reply Feb 23, 2017, 9:45 AM Reply Quote 0
                      • 1
                      • 2
                      • 8
                      • 9
                      • 10
                      • 11
                      • 12
                      • 10 / 12
                      • 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