it ran for several hours. now it seems to be blocked again.
Where can I find front-end log ?
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
R
Offline
Posts
-
RE: MMM-Scenes2
-
MMM-Scenes2
Hi
I’m currently building my first mirror and experimenting with third-party modules.
For example MMM-Scenes2. I don’t know if the behaviour is correct. The scenes change as desired. After a certain time, the loop stops at the first scene. I want the cycle to be endless.
Is this behaviour intended? Do I need to adjust my configuration? Does anyone have any tips?
My configuration{ module: "MMM-Scenes2", position: 'bottom_bar', // Position of indicator config: { activeIndicator: " ^|^s", inactiveIndicator: " ^|^w", defaultEnter: { animation: "bounceInUp", /* "zoomInUp" */ }, defaultExit: { animation: "hinge", }, scenario: [ // `scenario` is REQUIRED { // First scene definition exit: [ { role: "role_date", animation: "bounceOutDown", }, { role: "role_germanclock", animation: "bounceOutDown", }, ], enter: ["role_alert", "role_notification", "role_clock", "role_calendar", "role_weather_current", "role_weather_forecast" ], }, { // Second scene definition exit: ["role_alert", "role_notification", "role_clock", "role_calendar", "role_weather_current", "role_weather_forecast" ], enter: [ { role: "role_date", animation: "zoomInUp", }, { role: "role_germanclock", animation: "zoomInUp", }, ], }, ] } }