@Brandenborg
The latest version of this module now has this as a (Not very well tested) feature.
You can now specify a restoreDefault
prop in the MMM-Page-Selector config with the number of seconds you want before it returns to the default page.
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
V
Posts
-
RE: MMM-Page-Selector: A page switcher that can set positions of modules
-
RE: MMM-Page-Selector: A page switcher that can set positions of modules
@m1scha
I checked out MMM-Remote-Control and it is just a problem with string representations.remote?action=NOTIFICATION¬ification=“SELECT_PAGE”&payload=0
sends the literal notification “SELECT_PAGE” including the quotes. A more correct request would beremote?action=NOTIFICATION¬ification=SELECT_PAGE&payload=Main
which would switch the the page called main.However, in order to support other modules, pages are 1 indexed by notification so to switch to the first page, you would send
remote?action=NOTIFICATION¬ification=SELECT_PAGE&payload=1
Strings that are numbers are handled correctly by MMM-Page-Selector.