<?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[Is there a way to temporarily disable a module?]]></title><description><![CDATA[<p dir="auto">I installed MMM PIR Sensor and I installed MMM-ModuleScheduler thinking I can disable the PIR function at certain times. I see now that while you can control show and hide of modules you dont have the option to turn them off. Was wondering if there was a way to disable a module somehow?</p>
]]></description><link>https://forum.magicmirror.builders/topic/9986/is-there-a-way-to-temporarily-disable-a-module</link><generator>RSS for Node</generator><lastBuildDate>Sat, 12 Sep 2026 02:33:13 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/9986.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 08 Mar 2019 00:40:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Wed, 21 Oct 2020 08:35:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bigdant" aria-label="Profile: BigDanT">@<bdi>BigDanT</bdi></a><br />
Hi,</p>
<p dir="auto">you need another module to get it work: <a href="https://github.com/tosti007/MMM-ProfileSwitcher" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-ProfileSwitcher</a></p>
<p dir="auto">The idea is to define a “normal” class to which all modules do belong that will be displayed if motion is detected. The Slideshow will be in class “slideshow”.<br />
The Screensave module is configured to not shutoff the monitor but change to the “slideshow” profile.<br />
If SCREEN_ON is triggered the Screensave module will change back to the profile that was used before the screensave (in our case “nomal”).</p>
<p dir="auto">I updated the config example to do the job (but i could not test it at the moment):</p>
<pre><code>var config = {
    address: '0.0.0.0',
    electronOptions: {},
    ipWhitelist: [],
    modules: [

        //Screen on &amp; off timer{
        {
            module: 'MMM-ModuleScheduler',
            config: {
                notification_schedule: [
                    // TURN THE MONITOR/SCREEN ON AT 07:30 EVERY DAY
                    {
                        notification: 'SCREEN_ON',
                        schedule: '00 07 * * *',
                        payload: {
                            'forced': true
                        }
                    },
                    // TURN THE MONITOR/SCREEN OFF AT 22:30 EVERY DAY
                    {
                        notification: 'SCREEN_OFF',
                        schedule: '30 22 * * *',
                        payload: {
                            'forced': true
                        }
                    },
                ]
            }
        },

        {
            module: 'alert',
            config: {},
            classes: 'normal'
        },

        {
            module: 'updatenotification',
            position: 'top_bar',
            config: {
                ignoreModules: []
            },
            classes: 'normal'
        },

        {
            module: 'clock',
            position: 'top_left',
            config: {},
            classes: 'normal'
        },

        // top Right Calenar
        {
            module: 'calendar',
            header: 'Family Calendar',
            position: 'top_left',
            config: {
                calendars: [{
                        symbol: 'calendar-check',
                        url: 'https://calendar.google.com/calendar/ical/xxx.ics',
                    }
                ],
            },
            classes: 'normal'
        },

        // Weather Section
        {
            module: 'currentweather',
            position: 'top_right',
            config: {
                location: 'UK',
                locationID: 'xxx',
                appid: 'xxx',
            },
            classes: 'normal'
        }, {
            module: 'weatherforecast',
            position: 'top_right',
            header: 'Weather Forecast',
            config: {
                location: 'false',
                locationID: 'xxx',
                appid: 'xxx',
            },
            classes: 'normal'
        },

        //Screencast

        {
            module: 'MMM-Screencast',
            position: 'bottom_right',
            config: {
                position: 'center',
                height: 600,
                width: 800,
                castName: 'MagicMirror',
            },
            classes: 'normal'
        },

        
        //PLex Slideshow
        {
            module: 'MMM-PlexSlideshow',
            classes: 'Digital-Pictureframe',
            position: 'fullscreen_above',
            config: {
                plex: {
                    hostname: '192.168.1.123',
                    port: 32400,
                    username: 'xxx@xxx.com',
                    password: 'password',
                },
                transitionImages: true,
            },
            classes: 'slideshow'
        },

        //MM Remote Control
        {
            module: 'MMM-Remote-Control',
            header: '',
            config: {
                customCommand: {},
                customMenu: 'custom_menu.json',
                showModuleApiMenu: true,
                apiKey: ''
            }
        },

        //News Headlines
		{
            module: 'newsfeed',
            position: 'top_bar',
            header: '',
            config: {
                feeds: [
                    {
                        title: 'BBC News',
                        url: 'http://feeds.bbci.co.uk/news/rss.xml'
                    }
                ],
                startTags: [],
                endTags: [],
                prohibitedWords: []
            },
            classes: 'normal'
        },

        {
            module: 'MMM-GPIO-Notifications',
            config: {
                '4': {
                    gpio_state: 1,
                    gpio_debounce: 0,
                    delay: 30000,
                    notifications: [{
                            notification: 'SCREEN_ON',
                            payload: {
                                'forced': false
                            }
                        }, {}
                    ]
                }
            }
        },
        {
            module: 'MMM-Screen-Powersave-Notification',
            config: {
                delay: 60,
                hideInsteadShutoff: true, //do not shutoff the screen
                changeToProfile: "slideshow" //change to this profile instead of hiding the modules
            }
        },
        {
            module: 'MMM-ViewNotifications',
            position: 'bottom_left',
            header: 'Notifications',
            config: {
                timeout: 0,
                format: '{time}: "{module}" sent "{notification}" with {payloadData}', // See below for configurable options
                includeModules: ["MMM-GPIO-Notifications", "MMM-Screen-Powersave-Notification"]
            },
            classes: 'normal'
        },
        {
            //https://github.com/tosti007/MMM-ProfileSwitcher
			module: "MMM-ProfileSwitcher",
			config: {
				defaultClass: "normal",
				ignoreModules: [
                    "MMM-ModuleScheduler",
                    "MMM-Remote-Control",
                    "MMM-GPIO-Notifications",
				],
			}
		},

    ]
};

/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {
    module.exports = config;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/83776</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83776</guid><dc:creator><![CDATA[wishmaster270]]></dc:creator><pubDate>Wed, 21 Oct 2020 08:35:23 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Tue, 20 Oct 2020 19:54:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a></p>
<p dir="auto">I’ve had a crack at writing an example config file to show you what im trying to do:-</p>
<p dir="auto">I’ve taken out anything that is sensitive.</p>
<p dir="auto">In short i want it to show every module, unless the PIR detects motion then it will disable the “Digital-Pictureframe” profile.</p>
<p dir="auto">I assume if you use “classes” thats a profile ? and if it doesnt have a “classes” set then its considered default.</p>
<pre><code>var config = {
    address: '0.0.0.0',
    electronOptions: {},
    ipWhitelist: [],
    modules: [

        //Screen on &amp; off timer{
        {
            module: 'MMM-ModuleScheduler',
            config: {
                notification_schedule: [
                    // TURN THE MONITOR/SCREEN ON AT 07:30 EVERY DAY
                    {
                        notification: 'REMOTE_ACTION',
                        schedule: '00 07 * * *',
                        payload: {
                            action: "MONITORON"
                        }
                    },
                    // TURN THE MONITOR/SCREEN OFF AT 22:30 EVERY DAY
                    {
                        notification: 'REMOTE_ACTION',
                        schedule: '30 22 * * *',
                        payload: {
                            action: "MONITOROFF"
                        }
                    },
                ]
            }
        }, {
            module: 'alert',
            config: {}
        }, {
            module: 'updatenotification',
            position: 'top_bar',
            config: {
                ignoreModules: []
            }
        }, {
            module: 'clock',
            position: 'top_left',
            config: {}
        },

        // top Right Calenar
        {
            module: 'calendar',
            header: 'Family Calendar',
            position: 'top_left',
            config: {
                calendars: [{
                        symbol: 'calendar-check',
                        url: 'https://calendar.google.com/calendar/ical/xxx.ics',
                    }
                ],
            }
        },

   
        // Weather Section
        {
            module: 'currentweather',
            position: 'top_right',
            config: {
                location: 'UK',
                locationID: 'xxx',
                appid: 'xxx',
            }
        }, {
            module: 'weatherforecast',
            position: 'top_right',
            header: 'Weather Forecast',
            config: {
                location: 'false',
                locationID: 'xxx',
                appid: 'xxx',
            }
        },

        //Screencast

        {
            module: 'MMM-Screencast',
            position: 'bottom_right',
            config: {
                position: 'center',
                height: 600,
                width: 800,
                castName: 'MagicMirror',
            }
        },

        
        //PLex Slideshow
        {
            module: 'MMM-PlexSlideshow',
            classes: 'Digital-Pictureframe',
            position: 'fullscreen_below',
            config: {
                plex: {
                    hostname: '192.168.1.123',
                    port: 32400,
                    username: 'xxx@xxx.com',
                    password: 'password',
                },
                transitionImages: true,
            }
        },

        //MM Remote Control
        {
            module: 'MMM-Remote-Control',
            header: '',
            config: {
                customCommand: {},
                customMenu: 'custom_menu.json',
                showModuleApiMenu: true,
                apiKey: ''
            }
        },

        //News Headlines
		{
        module: 'newsfeed',
        position: 'top_bar',
        header: '',
        config: {
        feeds: [{
        title: 'BBC News',
        url: 'http://feeds.bbci.co.uk/news/rss.xml'
        }
        ],
        startTags: [],
        endTags: [],
        prohibitedWords: []
        }
        },

        {
            module: 'MMM-GPIO-Notifications',
            config: {
                '4': {
                    gpio_state: 1,
                    gpio_debounce: 0,
                    delay: 30000,
                    notifications: [{
                            notification: 'SCREEN_ON',
                            payload: {
                                'forced': false
                            }
                        }, {}
                    ]
                }
            }
        },
        {
            module: 'MMM-Screen-Powersave-Notification',
            config: {
                delay: 60,
                profiles: {
                    "Digital-Pictureframe": 600
                }
            }
        },
        {
            module: 'MMM-ViewNotifications',
            position: 'bottom_left',
            header: 'Notifications',
            config: {
                timeout: 0,
                format: '{time}: "{module}" sent "{notification}" with {payloadData}', // See below for configurable options
                includeModules: ["MMM-GPIO-Notifications", "MMM-Screen-Powersave-Notification"]
            }
        },

    ]
};

/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {
    module.exports = config;
}

</code></pre>
<p dir="auto">I just need to understand how to add a module to a profile and then using your example PIR code how to transition from one profile to another</p>
]]></description><link>https://forum.magicmirror.builders/post/83760</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83760</guid><dc:creator><![CDATA[BigDanT]]></dc:creator><pubDate>Tue, 20 Oct 2020 19:54:56 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Tue, 20 Oct 2020 18:33:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a> Thanks for the link.</p>
<p dir="auto">Using your instructions ive gotten the PIR up and running using your example config’s.</p>
<p dir="auto">It would be ace to see how you have set-up profiles across a number of modules (doesnt matter which one) and how they are switched using MMM-Screen-Powersave-Notification ??</p>
<p dir="auto">I understand the principles but cant for the life of me find ANY examples of how this is set-up in the config file to experiment with.</p>
<p dir="auto">Any help/exmaples would be great ?</p>
<p dir="auto">Thanks</p>
<p dir="auto">D.</p>
]]></description><link>https://forum.magicmirror.builders/post/83758</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83758</guid><dc:creator><![CDATA[BigDanT]]></dc:creator><pubDate>Tue, 20 Oct 2020 18:33:22 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Mon, 19 Oct 2020 20:19:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bigdant" aria-label="Profile: BigDanT">@<bdi>BigDanT</bdi></a> Hi, sorry but I don’t use the modules in exact this configuration so I do not have a config that contains all parts. But I included an example folder to my GPIO module which contains instructions of how to setup an PIR. Maybe it is a good start: <a href="https://www.github.com/Tom-Hirschberger/MMM-GPIO-Notifications/tree/master/examples%2FHC-SR501" target="_blank" rel="noopener noreferrer nofollow ugc">examples</a></p>
]]></description><link>https://forum.magicmirror.builders/post/83731</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83731</guid><dc:creator><![CDATA[wishmaster270]]></dc:creator><pubDate>Mon, 19 Oct 2020 20:19:40 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Mon, 19 Oct 2020 13:58:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a> this looks great !!!</p>
<p dir="auto">I’m going to start to tinker tonight with the PIR thats just arrived.</p>
<p dir="auto">I dont suppose you have an example config file you could share that shows how you set-up profiles across the other modules ??</p>
<p dir="auto">Cheers</p>
<p dir="auto">D.</p>
]]></description><link>https://forum.magicmirror.builders/post/83720</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83720</guid><dc:creator><![CDATA[BigDanT]]></dc:creator><pubDate>Mon, 19 Oct 2020 13:58:13 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Sun, 18 Oct 2020 19:59:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bigdant" aria-label="Profile: BigDanT">@<bdi>BigDanT</bdi></a> I had to change code in both modules…</p>
<p dir="auto">someone else <a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a> says if you use THIS module, then you can configure what you want, no coding changes…<br />
<a href="https://forum.magicmirror.builders/topic/9986/is-there-a-way-to-temporarily-disable-a-module/18?page=2">https://forum.magicmirror.builders/topic/9986/is-there-a-way-to-temporarily-disable-a-module/18?page=2</a><br />
I don’t know anything about that module</p>
]]></description><link>https://forum.magicmirror.builders/post/83698</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83698</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 18 Oct 2020 19:59:39 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Sun, 18 Oct 2020 19:56:06 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a>,</p>
<p dir="auto">That’s great! Any chance you could point me in the direction of some instructions?</p>
<p dir="auto">Cheers</p>
<p dir="auto">D.</p>
]]></description><link>https://forum.magicmirror.builders/post/83697</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83697</guid><dc:creator><![CDATA[BigDanT]]></dc:creator><pubDate>Sun, 18 Oct 2020 19:56:06 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Sun, 18 Oct 2020 19:47:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bigdant" aria-label="Profile: BigDanT">@<bdi>BigDanT</bdi></a> yes, and I said, (not using your modules) I did that exact thing with my camera based motion sensor module and a full screen image show module… to prove it would work…</p>
]]></description><link>https://forum.magicmirror.builders/post/83696</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83696</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 18 Oct 2020 19:47:08 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Sun, 18 Oct 2020 16:55:46 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a>,</p>
<p dir="auto">That’s not really what I mean, but thanks for the explanation/ investigation.</p>
<p dir="auto">What I mean is this.</p>
<p dir="auto">The MMM-Plexslideshow fills the back ground with an image rather than blank/black background.</p>
<p dir="auto">This means the two way Perspex is not a mirror (as there’s an image rather than black background)</p>
<p dir="auto">What I want to do is if the pir detects motion to deactivate the “mmm-plexslideshow” whilst the magic mirror is running. Or to select a black/blank background (which ever works)</p>
<p dir="auto">That way when someone approaches the mirror the slideshow will stop and The mirror shown (due to the black background)</p>
<p dir="auto">When the pir doesn’t detect someone then the slideshow starts up again.</p>
<p dir="auto">I hope this makes more sense ??</p>
<p dir="auto">Cheers</p>
<p dir="auto">D</p>
]]></description><link>https://forum.magicmirror.builders/post/83685</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83685</guid><dc:creator><![CDATA[BigDanT]]></dc:creator><pubDate>Sun, 18 Oct 2020 16:55:46 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 19:27:37 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">I use profiles to implement pages on my mirror. I also modified my screensaver module <a href="https://github.com/Tom-Hirschberger/MMM-Screen-Powersave-Notification" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-Screen-Powersave-Notification</a> to change to a specific profile instead of hiding the modules or shut off the screen. So it should be possible to just configure the behavior you like instead of coding stuff.</p>
<p dir="auto">Edit: Just saw that the code had been in the development branch and not in the master. Drafted a new release a few minutes ago.</p>
<p dir="auto">The module also supports changing the timeout during runtime or disable screensave</p>
]]></description><link>https://forum.magicmirror.builders/post/83477</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83477</guid><dc:creator><![CDATA[wishmaster270]]></dc:creator><pubDate>Thu, 15 Oct 2020 19:27:37 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 16:09:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bigdant" aria-label="Profile: BigDanT">@<bdi>BigDanT</bdi></a></p>
<p dir="auto">by changing ImagesPhotos and my SleepWake, it does want u described… so it is possible</p>
]]></description><link>https://forum.magicmirror.builders/post/83448</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83448</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 15 Oct 2020 16:09:30 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 15:44:42 GMT]]></title><description><![CDATA[<p dir="auto">ok, sorry…</p>
]]></description><link>https://forum.magicmirror.builders/post/83447</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83447</guid><dc:creator><![CDATA[RIKKO14]]></dc:creator><pubDate>Thu, 15 Oct 2020 15:44:42 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 15:43:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rikko14" aria-label="Profile: RIKKO14">@<bdi>RIKKO14</bdi></a> said in <a href="/post/83444">Is there a way to temporarily disable a module?</a>:</p>
<blockquote>
<p dir="auto">disabled: true,</p>
</blockquote>
<p dir="auto">you don’t need any comments if you have</p>
<pre><code>disabled: true, 
</code></pre>
<p dir="auto">you can’t disable a module WHILE it is running… you could ‘hide’ it</p>
]]></description><link>https://forum.magicmirror.builders/post/83446</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83446</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 15 Oct 2020 15:43:10 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 15:41:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/teitlebot" aria-label="Profile: teitlebot">@<bdi>teitlebot</bdi></a><br />
I am not a coder but if you comment you config.js like this the module doen’t work :</p>
<pre><code>/*{
	disabled: true,
	module: "MMM-KitchenTimer",       
	position: "top_center",
	config: {
		volume: 1
	}
},*/
</code></pre>
<p dir="auto">but<br />
but this may not be the answer you want…</p>
]]></description><link>https://forum.magicmirror.builders/post/83444</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83444</guid><dc:creator><![CDATA[RIKKO14]]></dc:creator><pubDate>Thu, 15 Oct 2020 15:41:15 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 15:34:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bigdant" aria-label="Profile: BigDanT">@<bdi>BigDanT</bdi></a> I tried moving MMM-ImagesPhotos to the fullscreen_above position, and it hides all the content behind, but…  on each image transition it exposes the stuff behind…  so it will be a bit more involved to make a module out front that does what u want.</p>
<p dir="auto">sorry, there was an intentional delay between pics… removing that keeps the stuff hidden behind, so it might work</p>
]]></description><link>https://forum.magicmirror.builders/post/83443</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83443</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 15 Oct 2020 15:34:22 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 15:06:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bigdant" aria-label="Profile: BigDanT">@<bdi>BigDanT</bdi></a>  it might not be too hard…</p>
<p dir="auto">the PIR type modules send a notification 'USER_PRESENCE true/false when a user is detected or not</p>
<p dir="auto">so, if u can change the image handler module to  position:‘foreground’, and add a tiny bit of code,</p>
<p dir="auto">in the notificationRecieved function add a handler for the user_presence message, if true, this.hide() (allow other module content to show thru)<br />
otherwise this.show() (hide everything behind)</p>
]]></description><link>https://forum.magicmirror.builders/post/83441</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83441</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 15 Oct 2020 15:06:40 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 15:02:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bigdant" aria-label="Profile: BigDanT">@<bdi>BigDanT</bdi></a> i have not seen such a thing…</p>
<p dir="auto">also, most of the image displaying modules display in the background ‘under’ the other modules,<br />
you appear to want it ABOVE the other modules, hiding them…   not seen any capable of doing that</p>
]]></description><link>https://forum.magicmirror.builders/post/83440</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83440</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 15 Oct 2020 15:02:39 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 15 Oct 2020 14:32:10 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">Did anyone find a solution to this ?</p>
<p dir="auto">I’m looking to use a PIR so that if it detects motion it “Deactivates” the “MMM-PlexSlideshow” module.</p>
<p dir="auto">Then when it doesnt detect motion it will reactivate the “MMM-PlexSlideshow” module to create a digital picture frame when someone doesnt step in front of the mirror.</p>
<p dir="auto">Cheers</p>
<p dir="auto">D</p>
]]></description><link>https://forum.magicmirror.builders/post/83437</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/83437</guid><dc:creator><![CDATA[BigDanT]]></dc:creator><pubDate>Thu, 15 Oct 2020 14:32:10 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 14 Mar 2019 21:31:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/teitlebot" aria-label="Profile: teitlebot">@<bdi>teitlebot</bdi></a> you would have to add some code the check the current time against a stat/stop time you would add to the configuration.</p>
]]></description><link>https://forum.magicmirror.builders/post/54296</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/54296</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 14 Mar 2019 21:31:52 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 14 Mar 2019 21:28:24 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> how would I extend the module? I’m not really a coder but I can follow a guide.</p>
]]></description><link>https://forum.magicmirror.builders/post/54295</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/54295</guid><dc:creator><![CDATA[teitlebot]]></dc:creator><pubDate>Thu, 14 Mar 2019 21:28:24 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 14 Mar 2019 16:42:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/teitlebot" aria-label="Profile: teitlebot">@<bdi>teitlebot</bdi></a> sorry, do not understand…</p>
<p dir="auto">those are two different things…</p>
<p dir="auto">i hide modules to make my screen sleep… (can’t power off tv)…</p>
<p dir="auto">you could extend the PIR module to ignore the sensor during the time u want it to stay on</p>
]]></description><link>https://forum.magicmirror.builders/post/54277</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/54277</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 14 Mar 2019 16:42:30 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 14 Mar 2019 16:09:47 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> Because im trying to have the PIR sensor not turn off the screen during certain times. Hiding the module doesnt stop it from working.</p>
]]></description><link>https://forum.magicmirror.builders/post/54272</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/54272</guid><dc:creator><![CDATA[teitlebot]]></dc:creator><pubDate>Thu, 14 Mar 2019 16:09:47 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 14 Mar 2019 02:33:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/teitlebot" aria-label="Profile: teitlebot">@<bdi>teitlebot</bdi></a> why is hide not enough?</p>
]]></description><link>https://forum.magicmirror.builders/post/54232</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/54232</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 14 Mar 2019 02:33:15 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to temporarily disable a module? on Thu, 14 Mar 2019 00:52:48 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> that’s right.<br />
I’m going to guess there is no way to do it.</p>
]]></description><link>https://forum.magicmirror.builders/post/54230</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/54230</guid><dc:creator><![CDATA[teitlebot]]></dc:creator><pubDate>Thu, 14 Mar 2019 00:52:48 GMT</pubDate></item></channel></rss>