I found out that it has to do with timezones for reoccuring events not getting set. For anyone looking at this later
Read the statement by Michael Teeuw here.
Posts
-
RE: Reoccurring events wrong time MyCalendar
-
RE: Reoccurring events wrong time MyCalendar
@sdetweil Hey thank you for the help, I was out and about all day and just now able to look at the module. Its not my module I found it on the old list of modules from the main page a while back.
I switched back to the original and its not having the same time issue. I checked and the module isn’t listed on the new list of modules so I will reach out through the github to the creator as well.
Again thank you for the help!
-
RE: Reoccurring events wrong time MyCalendar
@sdetweil Sorry yes I am using MMM-MyCalendar.
https://github.com/dbeltjr/MMM-MyCalendar.gitI did check the github for any issues but I figured since its based off the default calendar it maybe something others have addressed.
-
Reoccurring events wrong time MyCalendar
Anyone else having issues with reoccurring calendar events and MyCalendar. When my calendar has a one time event. The time is correct. If there is reoccurring events, the times are about six hours off. Has anybody else had this happen?
-
RE: Amazon shipping
@plainbroke I have a show as well but never actually look at it 🙃
-
RE: Amazon shipping
@s-monti-74 Amazon does have an api for shipping which "With these APIs, you can request shipping rates, create shipments, cancel shipments, and track shipments. " This might work for what you were looking for if someone has the want to help build it.
https://developer-docs.amazon.com/amazon-shipping/docs/shipping-api-v2-reference
-
RE: MMM-CalvinAndHobbes Re-Size for full Sunday Comic Strip
I know this is an old thread, but I just came across this today. I found you can fix this by putting limitComicHeight: false, in your config
This is what mine looks like and it works great.
{ disabled: false, module: 'MMM-CalvinAndHobbes', position: 'middle_center', classes: "calvin", config: { invertColors: false, grayScale: false, updateInterval: 1000 * 60 * 60 * 12, limitComicHeight: false, } }
I also had to adjust my css because of the zoom, but you may not need to.
#cahcomiccontent { zoom: 80%; }
-
RE: MMM-transitfeed - upcoming departure board for most transit agencies
@bnitkin said in MMM-transitfeed - upcoming departure board for most transit agencies:
@rnieto18 Thanks for reporting that! You’re doing everything right; there was a parsing disagreement between my script and Virginia Railway. You should be able to pull from
main
(or just restart magicmirror; I think it auto-updates?) and be back in business.GTFS supports calendars so transit agencies can report different service on weekdays vs weekends or special holiday service. That means a single GTFS trip usually corresponds to M-F service under the same trip ID.
MMM-transitfeed
looks up the calendar for each trip to generate daily schedules. Virginia Rail has a single calendar calledRegular
, but the trips reference other calendars likeSummer
andDay After Thanksgiving
.My script was looking up those nonexistent calendars and crashing when it tried to extract service from them. I’ve fixed it to not examine calendars that don’t exist.
Let me know if it works, or if you’re still having trouble!
– Ben
Thank You!! works great now
-
RE: MMM-transitfeed - upcoming departure board for most transit agencies
@bnitkin I am beating my head trying to get the Virginia Railway into this module.
I went https://transitfeeds.com/p/virginia-railway-express/250 and pulled the link to the latest download. I added it to my config
config: { gtfs_config: { agencies: [ { "url": "https://transitfeeds.com/p/virginia-railway-express/250/latest/download", exclude: ['shapes'] }, ], }, // Route + station pairs to monitor for departures queries: [ {route_name: "Fredericksburg Line", stop_name: "Lorton"}, ], showStationNames: false, }
I get no trips found yet. Check queries in the config if this persists. I can get this to work with your config in the readme.
I have even looked at https://www.vre.org/sites/vre/assets/File/pdfs/MobileDevelopersGuideweb.pdf
and tried http://www.vre.org/gtfs/google_transit.zipAny help would be appreciated!