I just started having the same issue. I’m using the MMM-MyCalendar module twice and one of them suddenly stopped working after I deleted some events. Both calendars are being pulled from an O365 ics url and I can’t comprehend how deleting some events would cause this to stop working.
Read the statement by Michael Teeuw here.
Posts
-
RE: Error Within MMM-My-Calendar module
-
RE: My first MagicMirror
@sdetweil After doing more reading, I found the modified .js file on GitHub. Replace original
~/MagicMirror/modules/calendar_monthly/calendar_monthly.js
with this one (not mine) and edit~/MagicMirror/config/config.js
to load the module as follows:{ disabled: false, module: 'calendar_monthly', position: "top_left", config: { showHeader: true, // cssStyle: "", monthOffset: 0, } },
That will show the current month. If you want the previous month, then add the module again before the current month and change
monthOffset
to-1
. For the next month, add the module again after the current month and changemonthOffset
to1
.If you want current month plus the next two months, then add the module three times with
monthOffset
set to0
,1
, and2
. -
RE: Screen rotation and resizing
@Thgj0842 I did this just yesterday with a new install of Raspbian and MagicMirror. I put
display_rotate=3
at the very end of /boot/config.txt after rotating my monitor 90º counter-clockwise. You may need to try
display_rotate=1
if you’ve rotated 90º clockwise.
That’s all I had to do.
-
RE: My first MagicMirror
@sdetweil As the actual README.md doesn’t list a configuration option to change in config.js, I was hoping for more specific direction on how to do this. The css has styles for previous and next month, but nowhere can I find where I would activate that option.
-
RE: My first MagicMirror
@MadsChaves How did you tweek the calendar_monthly module? I’ve been racking my brain looking at the js and I’m too much of a newbie to even know where to start!
-
RE: MMM-AVStock not returning prices
@sonicgoose A complete system reboot seems to have fixed whatever issue existed.
-
RE: MMM-AVStock not returning prices
@sdetweil I always forget about that developer window. Anyway: 5 errors, all from a different module that is actually working just fine. No errors from MMM-AVStocks.
-
MMM-AVStock not returning prices
I’m running MM 2.9.0 in Docker on a Mac (OS 10.11.6) and most modules work really well, but MMM-AVStock isn’t in that list. My config:
{ disbaled: false, module: "MMM-AVStock", position: "bottom_center", config: { apiKey: "XXXXXXXXXXXXXXXXXXXXXXXX", symbols: ["AAPL", "GOOGL"], alias: ["APPLE","GOOGLE"], tickerDuration: 300, chartDays: 90, mode: "table", //"table", "ticker", "series" decimals: 4, }, },
and the result is just an empty table:
Any ideas where I might be going wrong?