<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Help please]]></title><description><![CDATA[<p dir="auto">Hello, for my project I want to add multiple different screens - like an app. The monitor I bought is not a touch one so it cannot work like an iPad.</p>
<p dir="auto">So can I add multiple screens and with the voice command of “next” can it switch to another screen? How can I do that if it is possible?</p>
<p dir="auto">This would really help me. Thank you</p>
]]></description><link>https://forum.magicmirror.builders/topic/14748/help-please</link><generator>RSS for Node</generator><lastBuildDate>Tue, 08 Sep 2026 06:57:50 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/14748.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 07 Mar 2021 04:58:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Help please on Sun, 07 Mar 2021 14:01:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> Thank you! On it!</p>
]]></description><link>https://forum.magicmirror.builders/post/89277</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/89277</guid><dc:creator><![CDATA[innovation]]></dc:creator><pubDate>Sun, 07 Mar 2021 14:01:38 GMT</pubDate></item><item><title><![CDATA[Reply to Help please on Sun, 07 Mar 2021 13:49:34 GMT]]></title><description><![CDATA[<p dir="auto">@j-e-f-f<br />
Thank you so much. Checking right away</p>
]]></description><link>https://forum.magicmirror.builders/post/89274</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/89274</guid><dc:creator><![CDATA[innovation]]></dc:creator><pubDate>Sun, 07 Mar 2021 13:49:34 GMT</pubDate></item><item><title><![CDATA[Reply to Help please on Sun, 07 Mar 2021 12:38:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/innovation" aria-label="Profile: innovation">@<bdi>innovation</bdi></a> I think u can do this with MMM-Pages and MMM-Swipe.</p>
<p dir="auto">pages does the same classes organization of modules, and swipe handles sending notifications to pages to change to different psges</p>
]]></description><link>https://forum.magicmirror.builders/post/89264</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/89264</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 07 Mar 2021 12:38:55 GMT</pubDate></item><item><title><![CDATA[Reply to Help please on Sun, 07 Mar 2021 12:14:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/innovation" aria-label="Profile: innovation">@<bdi>innovation</bdi></a>  There are a few ways to do this.  I’ve done this for a kitchen display where I have several pages that rotate in sequence, but are also controlled manually with an IR remote control (using the LEFT/RIGHT buttons to go to  previous.next pages).</p>
<p dir="auto">I’m using a combination of the Profile Switcher module (<a href="https://github.com/tosti007/MMM-ProfileSwitcher.git" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/tosti007/MMM-ProfileSwitcher.git</a>) and my own Profile Carousel module the I wrote to handle input from the IR remote (<a href="https://github.com/jclarke0000/MMM-ProfileCarousel" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/jclarke0000/MMM-ProfileCarousel</a>).</p>
<p dir="auto">My config looks like this:</p>
<pre><code>    {
      module: "MMM-ProfileSwitcher",
      disabled: false,
      config: {
        defaultClass: "L_CALENDAR",
        everyoneClass: "L_ALL",
        includeEveryoneToDefault: true,
        defaultTime: 10000,
        useLockStrings: true
        // animationDuration: 500,
        // timers: {
        //   "L_CALENDAR" : {
        //     profile: "L_FORECAST"
        //   },
        //   "L_FORECAST" : {
        //     profile: "L_CALENDAR"
        //   }
        // }
      }
    },

    {
      module: "MMM-ProfileCarousel",
      disabled: false,
      config: {
        profiles: ["L_CALENDAR","L_FORECAST","L_NOTES"],
        carouselDelay: 10000, //10 seconds
        carouselResumeDelay: 1 * 30 * 1000, //30 seconds
        useScreensaver: true,
        screensaverProfile: "L_WORDCLOCK",
        screensaverTimeout: 1.25 * 60 * 1000,
        screensaverBlackoutPeriod: {
          start: 11,
          end: 12
        }        
      }
    },
</code></pre>
<p dir="auto">And every module has one or more class names applied that indicate which profile the module should be visible for:</p>
<p dir="auto">The clock module is visible for all profiles, so it looks like this:</p>
<pre><code>    {
      module: "clock",
      position: "top_left",
      classes: "L_CALENDAR L_FORECAST L_NOTES",
      config: {
        timeFormat: 12,
        showPeriod: true,
        displaySeconds: false
      }
    },
</code></pre>
<p dir="auto">While my weather module is only available on one page, so it looks like this:</p>
<pre><code>    {
      module: "MMM-OpenWeatherForecast",
      position: "top_right",
      header: "Forecast",
      classes: "L_FORECAST",
      disabled: false,
      config: {
</code></pre>
<p dir="auto">In your case, you’ll need to work with one of the Voice modules to provide input to Profile Switcher.  You can explicitly set the current profile using the <code>sendNotification</code> function:</p>
<pre><code>  this.sendNotification("CURRENT_PROFILE",  "profile name"); 
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/89263</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/89263</guid><dc:creator><![CDATA[j.e.f.f]]></dc:creator><pubDate>Sun, 07 Mar 2021 12:14:42 GMT</pubDate></item></channel></rss>