I typed too soon, just after I posted that I applied a MagicMirror upgrade, now it doesn’t display my personal calendar.
Read the statement by Michael Teeuw here.
Posts
-
RE: Displaying two calendars in the standard calendar in one list
-
RE: Displaying two calendars in the standard calendar in one list
I use this to display 3 calendars in the same column
{
module: “calendar”,
header: “Our Calendar”,
position: “top_left”,
config: {
calendars: [
{
fetchInterval: 7 * 24 * 60 * 60 * 1000,
symbol: “calendar-check”,
url: ‘https://calendar.google.com/calendar/ical/en.uk%23holiday%40group.v.calendar.google.com/public/basic.ics’,
},{
color: ‘#FFFF00’,
symbol: “calendar”,
url: ‘https://calendar.google.com/calendar/ical/fr.french%23holiday%40group.v.calendar.google.com/public/basic.ics’,
},
{
color: ‘#00FF00’,
symbol: “calendar”,
url: ‘https://calendar.google.com/calendar/ical/xxxx%40gmail.com/private-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/basic.ics’,}, ] } },
-
MMM-CurrencyExchange
Over the past 3 or 4 months MMM-CurrencyExchange has stopped working, it just displays ‘Loading’
I have changed the api from
apiBase: “http://api.exchangeratesapi.io/latest”,
to
apiBase: “http://api.exchangeratesapi.io/v1/latest”,
and then
“http://api.exchangeratesapi.io/v1/latest?access_key=xxxxxxxxxxxxxxxxxxxxxxxx”as per the instructions at https://manage.exchangeratesapi.io/quickstart
I have noticed that if I click on the link at https://manage.exchangeratesapi.io/quickstart
I get
{
“error”:{
“code”:“https_access_restricted”,
“message”:“Access Restricted - Your current Subscription Plan does not support HTTPS Encryption.”
}
}I assume that the http:// is being redirected to https:// and I don’t know of a way to force it back to http://
Has anyone any other thoughts or other suggestions for a GBP:EUR currency exchange module?
Thanks is advance.
-
RE: SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.
@sdetweil said in SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.:
@lif yes… currently 64 bit mode is sketchy in my opinion
OK
-
RE: SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.
@sdetweil said in SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.:
aarch64 GNU/Linux
ah 64 bit mode…
Does that make much of a difference?
-
RE: SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.
Done, I’ll tell you in a week or so if it’s worked :-)
It’s held for 7 days, so thank you very much.
-
RE: SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.
Thank you very much
which version of pi are you using, show results of
uname -a
Linux MagicMirror 5.15.32-v8+ #1538 SMP PREEMPT Thu Mar 31 19:40:39 BST 2022 aarch64 GNU/Linux
a work around do
cd ~/MagicMirror nano package.json change the line that looks like this "start": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron js/electron.js", to this "start": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron --disable-gpu js/electron.js", ctrl-o to save the file ctrl-x to exit nano and try restarting magicmirror
Done, I’ll tell you in a week or so if it’s worked :-)
-
SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.
Hi,
I am running MM on a Raspberry Pi 4
with the following modules running
MMM-Tools
MMM-CurrencyE£xchange
MMM-Flights
weatherforecast
weather
clock
calendar
currentweather
alertMM hangs anything from 1 day to a week or so of running and the only error I can find in the log is:
0|mm | [14945:0820/131715.652433:ERROR:shared_image_manager.cc(228)] SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.
0|mm | [14945:0820/131715.713158:ERROR:shared_image_manager.cc(228)] SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.
0|mm | [14945:0820/131715.731016:ERROR:shared_image_manager.cc(228)] SharedImageManager::ProduceSkia: Trying to Produce a Skia representation from a non-existent mailbox.
0|mm | [20.08.2022 13:19.08.245] [INFO]Anyone any idea what module could be causing this? and how do I fix it?
Thanks in advance
-
RE: How can I turn the 'count down' display off.
To answer my own question, I commented out the urgency: line
-
How can I turn the 'count down' display off.
Hi all,
I am having a small problem with the calendar module,
How can I turn the ‘count down’ display off.
Rather than displaying ‘In x days’ I would like it to display the time and date, although not ‘00:00’ from all day events.
If I change timeFormat: to relative from absolute
dateFormat: "h:mm a, DD MMM", dateEndFormat: "LT", fullDayEventDateFormat: "D MMM",
It shows the start time of all day events and changes the format to American
Anyone any ideas?