Read the statement by Michael Teeuw here.
Mmm-Wunderlist can't show individual lists
-
Hi. Second question today.
I am trying to set up Wunderlist and I have gotten it working, but I can’t solve this problem.
I have two lists I want to display, a, shopping list and a to do list. I add them both to the array but the module shows them both in the same list. So instead of two lists with entries, I get only one with the entries from both lists in the array. I will add the config. Js code from the pi in a minute, see below
-
{ module: 'MMM-Wunderlist', position: 'bottom_left',// This can be any of the regions. Best$ header: 'Matinköp', // This is optional config: {// See 'Configuration options' for more information. accessToken: '******************', clientID: '****************', //example clientID lists: ['Att göra', 'Matinköp'], interval: 3500, ShowDeadline: true, fade: true, } }, :::
-
-
Hi,
One way around this might be to put two modules in your config, as shown below. That way you can have a separate header for each.
Hope this works.{ module: 'MMM-Wunderlist', position: 'bottom_left',// This can be any of the regions. Best$ header: 'Att göra', // This is optional config: {// See 'Configuration options' for more information. accessToken: '******************', clientID: '****************', //example clientID lists: ['Att göra'], interval: 3500, ShowDeadline: true, fade: true, } }, { module: 'MMM-Wunderlist', position: 'bottom_left',// This can be any of the regions. Best$ header: 'Matinköp', // This is optional config: {// See 'Configuration options' for more information. accessToken: '******************', clientID: '****************', //example clientID lists: ['Matinköp'], interval: 3500, ShowDeadline: true, fade: true, } },
-
@joela85 hi, thanks for replying!
i had the same thought so i tried to copy paste the same information but MM told me there was an error in the config.js and did not boot when i tried that method. Since i am still a beginner at this i might have screwed up somewhere, so i am going to try to paste your code instead tonight and try it.
-
@joela85 this worked like a charm, I must have screwed up the code. I only have to figure out how to place them to not grow upwards when I add items but have a fixed height. Thanks