@Alvinger Woops, don’t know how i missed that. It was copied from your README but i can see you’ve fixed it now, i’ll give it another try. :)
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-ResRobot - Public transport information for Sweden
-
RE: MMM-ResRobot - Public transport information for Sweden
Unfortently i can’t get it to work, all i get is a black screen when i load the mirror.
This is my config:
{ module: "ResRobot", position: "left", header: "Departures", config: { from: "740059685", // ResRobot Station ID (or a comma-separated string of IDs) to: "740072430", // ResRobot Station ID of destination (or a comma-separated string of IDs) maximumEntries: 6, // Number of departures to show on screen truncateAfter: 5, // A value > 0 will truncate direction name at first space after <value> characters. 0 = no truncation apiKey: "57434e24-a128-4cdb-bb88-e4b1e857c1aa" // Your ResRobot apiKey } },
If i remove the code again the mirror loads fine.
-
RE: MMM-ResRobot - Public transport information for Sweden
Awesome, i’ve been looking for something like this but was unable to code it myself, i’ll try it once i get home.
Could you also write a module for Västtrafiks API which would show next departure for a given stop? -
RE: Trafficmaps
@Mitchfarino
Strange, do you use the exact same origin/destination for both modules or do you format them differently depending on the mode? -
RE: Trafficmaps
@strawberry-3.141 said in Trafficmaps:
@shgmongohh [card:SamLewis0602/MMM-Traffic]
Hijacking this thread since i cant find one specific for MMM-Traffic.
I can only get the “driving” mode to work with MMM-Traffic, if i anything else it’s stuck on Loading Commute.
Anyone else have this issue? -
Calender module - icloud calender?
I would like to use my GF’s icloud calender in the default calender module, is this possible since it seems to only accept .ical URL’s?
I tried entering webcal://p24-calendars.icloud.com/published/2/ but the calender doesnt load.Is there any way to solve this or workaround?
-
RE: Wunderlist - Lists not showing up
I tried that already and it didn’t help unfortunately, as far as i’ve understood the URL’s doesn’t matter as long as an actual app isn’t published?
Whats interesting is if i run the following cmd as suggested in the thread i linked in my OP "curl -H "X-Access-Token: H “X-Client-ID: https://a.wunderlist.com/api/v1/lists” It returns my lists (but not it’s content/tasks) so i don’t think it’s an token/authorization issue.
-
Wunderlist - Lists not showing up
I installed the Wunderlist module successfully, it shows up but no lists/tasks show up in the module.
I’ve read this thread https://forum.magicmirror.builders/topic/213/wunderlist-your-todos-on-the-mirror/5 to try and solve this but so far no success.My wunderlist looks like this: http://imgur.com/oLYLYWi and http://imgur.com/a/yrbF7
Finally my config.js looks like this:
{ module: 'MMM-Wunderlist', position: 'top_left', // This can be any of the regions. Best results in left or right regions. header: 'Wunderlist', // This is optional config: { accesToken: '<token generated by Create Acces Token', clientID: '<client ID from my app view', lists: [ 'today', 'Mat' ], interval: 10, fade: true } },
Any idea what the problem is?
If relevant i haven’t installed the MM on an actual Pi yet, rather i followed yo-less instructions in this thread https://forum.magicmirror.builders/topic/548/building-mirror-without-programing/3 to test it out on a PC before i go out and buy a Pi and new monitor.
-
Transit Departure module. How to get started?
I have very limited programming experience but would like take a shot at building a module that lists departure times for trams/buses from a chosen station in my city. Västtrafik as it’s called have a public API with some documentation that can be found here in english (click Dokumentation):
https://developer.vasttrafik.se/portal/#/api/Reseplaneraren/v2/landerss
I’ve looked through it, checked out other similar modules to try and adept them but since i’m not really sure how i should get started i’m hoping i can get pointed in the right direction from you people who are more knowledgeable.Thanks in advance.