I recommend dataplicity (https://www.dataplicity.com/). Easy to connect remotely without DDNS or Portforwarding setup.
Read the statement by Michael Teeuw here.
Posts made by MMRIZE
-
RE: Best bet for those not technically inclined?
-
RE: MMM-CalendarExt3
@luisestrada
Displaying the weather icon is an experimental feature. It would be applied from the next version of MagicMirror (ver 2.20) which will be released the next July.At this moment(with the current MagicMirror 2.19), you can try like this;
cd MagicMirror // Your MM installed directory git pull // to update latest version. If your MM was quite old, you might need additional command `npm install` git checkout develop // Change the branch to develop version.
You don’t need this method after July.
-
RE: Need help MMM-touch MMM-pages MMM-page indicator
@crown
You can swipe anywhere not only top-right.
Just avoid refreshing DOM or another mouse/pointer event assigned. I recommend using an empty area to avoid misleading gestures. -
RE: MMM-CalendarExt3
@luisestrada
By your configuration;- It will be refreshed every
refreshInterval
by force. You’ve set up10 minutes
. - It will be refreshed after 10 seconds(
waitFetch
) of the last calendar parsed. a more frequent parsing of your calendar would be a more frequent updating view. If your 5 calendars finish their parsing in 10 seconds together, the view will be updated once. Meanwhile parsing your 5 calendars would take dozen seconds sequentially, the view will be flickering. In that case, setwaitFetch
longer.
Anyway, I’ll release more improved version for frequent CALENDAR_EVENTS in a few days. Plz wait a little.
- It will be refreshed every
-
RE: MMM-CalendarExt3
@luisestrada
By the way, your configuration is not quite effective. Some options are located in the wrong place, some are invalid.-
All module-specific user configuration should be placed in
config: { ... }
. YourwaitFecth
oreventTimeOptions
and something more would not be applied. -
there is no
fetchInterval
orrotateInterval
option in CX3. -
broadcastPastEvents
is not forCX3
module but forcalendar
module. -
refreshInterval: 1000 * 60 * 1
means redraw calendar every 1 minute. Is it really needed?
-
-
RE: MMM-CalendarExt3
@luisestrada
Well, I was worried about just that case when I developed this module - multiple calendar instances. I thought Nobody would use the calendar module like that. So I haven’t considered supporting that case. But I was wrong.The current behaviour of this module is replacing whole events when the notification arrives, not combining each. So you cannot get proper whole events from multi-emitter of notifications.
I’ll modify the module in a few days to stack each event not replace it. Wait for a little.
-
RE: MMM-CalendarExt3
@almightyyoshi
You can hide it with CSS, or just drop out “position”. -
RE: MMM-CalendarExt3
- Not to use symbol:
useSymbol: false
// config of your module; ... config: { useSymbol: false, ...
- Is this what you wanted?
/* in your custom.css */ .CX3 .event.fullday, .CX3 .event.multiday { border-left: 4px solid var(--calendarColor); border-bottom: 1px solid var(--calendarColor); background-color: rgba(0, 0, 0, 0.2); } .CX3 .event.singleday { border-left:4px solid var(--calendarColor); } .CX3 .event.singleday:not(.useSymbol)::before { content: ''; }
- Not to use symbol:
-
RE: MMM-IFTTT: curl: (7) failed to connect to [external ip] port 8080: connection refused
@White-Hawk
Your MM is visible out of network?
For example, Try to access your MM of home network through external IP from your office.
I think your port forwarding might have been wrong. -
RE: MMM-CalendarExt3
1.1.0 (2022-05-29)
- ADDED : control interval of refreshing on fetching calendar
- config option
waitFetch
for waiting for too frequent fetching. - config option
refreshInterval
for refresh view by force. - config option
glanceTime
for focusing temporal moment then returning to current moment - config option
animationSpeed
for update animation
- config option
- ADDED : calendar symbol can be used. (config option
useSymbole
) - ADDED : weather forecast could be displayable. (From
MM 2.20 released
orMM 2.19 develop
branch) - CHANGED : Now,
month
view could has a fit weeks by the days not fixed 6 weeks.
- ADDED : control interval of refreshing on fetching calendar