<?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[MMM-Swipe - Hand gestures]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a> to use GPIOs without <code>root</code> try exporting them via a shell command within node. The user than only has to be part of the <code>gpio-group‘ :) check my </code>MMM-PIR-Sensor` for an example!</p>
]]></description><link>https://forum.magicmirror.builders/topic/205/mmm-swipe-hand-gestures</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 15:00:19 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/205.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 04 Jun 2016 19:00:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Wed, 30 Jan 2019 10:15:25 GMT]]></title><description><![CDATA[<p dir="auto">Hello !</p>
<p dir="auto">I have ordered my HC-SR04  and I’m trying to understand how to setup this module.<br />
I have understand to setup of the GPIO but I don’t understand the notification stuff.</p>
<p dir="auto">Let’ say on first page I have those modules :<br />
“compliments”,“weatherforecast”,“newsfeed”,“MMM-SingleStock”</p>
<p dir="auto">And on second page, I want to have “MMM-CalendarExt”</p>
<p dir="auto">Where should I code the notification ?<br />
If someone can share a simple code to explain how we can switch from page 1 to page 2, I would highly appreciate.</p>
<p dir="auto">Thanks.</p>
]]></description><link>https://forum.magicmirror.builders/post/51123</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/51123</guid><dc:creator><![CDATA[djtale]]></dc:creator><pubDate>Wed, 30 Jan 2019 10:15:25 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Fri, 29 Sep 2017 19:02:45 GMT]]></title><description><![CDATA[<p dir="auto">Hi!</p>
<p dir="auto">i rebuild all these fantastic stuff and installed the MMM-Swipe (Original from <a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a> ) and now its starting fine ect.</p>
<p dir="auto">I can also see the two different sensors in the calibration mode detecting my hand act , but i can’t get any response in the verbose mode… it only shows me WAITING FOR MOVEMENT. Not more… is there any way to get more information for debugging?</p>
]]></description><link>https://forum.magicmirror.builders/post/28687</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/28687</guid><dc:creator><![CDATA[StefanMe]]></dc:creator><pubDate>Fri, 29 Sep 2017 19:02:45 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Fri, 07 Jul 2017 20:59:59 GMT]]></title><description><![CDATA[<p dir="auto">To anyone still looking to continue development of this module or to adjust it so the Mirror does not need to be run as <code>sudo</code>: I started work on a fork to change to using the <code>onoff</code> node module which doesn’t require <code>sudo</code>.</p>
<p dir="auto">The new version is about 90% there and just needs some additional testing to make sure everything works as intended. Unfortunately, after I put the effort into re-writing a lot of the code, I realized that the sensors and my dog do not get along so I need to try something else.</p>
<p dir="auto">I’m putting the code out there in case anyone is interested in taking it any further… there are some development notes on the readme page to explain some of the differences in the two versions.</p>
<p dir="auto">Thank you to <a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a> for the original development and inspiration.</p>
<p dir="auto">[card:shbatm/MMM-Swipe]</p>
]]></description><link>https://forum.magicmirror.builders/post/25068</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/25068</guid><dc:creator><![CDATA[shbatm]]></dc:creator><pubDate>Fri, 07 Jul 2017 20:59:59 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Mon, 15 May 2017 19:04:43 GMT]]></title><description><![CDATA[<p dir="auto">@Melnem<br />
Hi, thanks for your message. It fixed my problem.<br />
I do not know if you have managed to run in sudo at startup but I use PM2.<br />
In the start script :</p>
<pre><code>cd ~
nano mm.sh
</code></pre>
<p dir="auto">In <a href="http://mm.sh" target="_blank" rel="noopener noreferrer nofollow ugc">mm.sh</a> I put</p>
<pre><code>cd ~/MagicMirror
DISPLAY=:0 sudo npm start
</code></pre>
<p dir="auto">and it seems to work fine.</p>
<p dir="auto">Thanks again for all your help !</p>
]]></description><link>https://forum.magicmirror.builders/post/21635</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/21635</guid><dc:creator><![CDATA[trisfoz]]></dc:creator><pubDate>Mon, 15 May 2017 19:04:43 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Sun, 14 May 2017 20:34:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/trisfoz" aria-label="Profile: trisfoz">@<bdi>trisfoz</bdi></a><br />
Hi, i don’t know if you are still trying but i had the same problem. I fixed it by adjusting the usonic.js file. If you check the git page of this project you can find a recent bugfix for the BCM2835.</p>
<pre><code>} else if (hardware === 'BCM2709') {
</code></pre>
<p dir="auto">chagned to</p>
<pre><code>} else if (hardware === 'BCM2709' || hardware === 'BCM2835') {
</code></pre>
<p dir="auto">Applying this fix brought me one step further.</p>
<p dir="auto">But now i’m stuck at starting MagicMirror as sudo.</p>
]]></description><link>https://forum.magicmirror.builders/post/21596</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/21596</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sun, 14 May 2017 20:34:50 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Wed, 26 Apr 2017 19:36:05 GMT]]></title><description><![CDATA[<p dir="auto">Hi eveerbody,</p>
<p dir="auto">Got magic mirror to boot up but with a new error with the MMM-Swipe module</p>
<pre><code>
Whoops! There was an uncaught exception...
Error: please call `usonic.init()` first
    at Object.createSensor (/home/pi/MagicMirror/modules/MMM-Swipe/node_modules/mmm-usonic/lib/usonic.js:57:15)
    at Class.socketNotificationReceived (/home/pi/MagicMirror/modules/MMM-Swipe/node_helper.js:48:29)
    at Socket. (/home/pi/MagicMirror/modules/node_modules/node_helper/index.js:103:10)
    at emitTwo (events.js:106:13)
    at Socket.emit (events.js:191:7)
    at /home/pi/MagicMirror/node_modules/socket.io/lib/socket.js:503:12
    at _combinedTickCallback (internal/process/next_tick.js:73:7)
    at process._tickCallback (internal/process/next_tick.js:104:9)
MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues

</code></pre>
<p dir="auto">Thanks for any help given.</p>
]]></description><link>https://forum.magicmirror.builders/post/20539</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20539</guid><dc:creator><![CDATA[trisfoz]]></dc:creator><pubDate>Wed, 26 Apr 2017 19:36:05 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Tue, 25 Apr 2017 20:59:21 GMT]]></title><description><![CDATA[<p dir="auto">Hello everybody,<br />
After installing the module, when I run it as sudo.  I get an error message :</p>
<pre><code>WARNING! Could not load config file. Starting with default configuration. Error found: Error: Module version mismatch. Expected 48, got 53.
Loading module helpers ...
No helper found for module: alert.
Initializing new module helper ...
Module helper loaded: updatenotification
No helper found for module: clock.
Initializing new module helper ...
Module helper loaded: calendar
No helper found for module: compliments.
No helper found for module: currentweather.
No helper found for module: weatherforecast.
Initializing new module helper ...
Module helper loaded: newsfeed
Whoops! There was an uncaught exception...
Error: Module version mismatch. Expected 48, got 53.
    at Error (native)
    at Object.Module._extensions..node (module.js:597:18)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Module.require (module.js:497:17)
    at require (internal/module.js:20:19)
    at Object. (/home/pi/MagicMirror/modules/MMM-Swipe/node_modules/mmm-usonic/lib/usonic.js:5:14)
    at Module._compile (module.js:570:32)
    at Object.Module._extensions..js (module.js:579:10)
MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues
(node:2253) DeprecationWarning: sys is deprecated. Use util instead.
</code></pre>
<p dir="auto">Does anyone know how I can get this module to work?</p>
<p dir="auto">Thank you.</p>
]]></description><link>https://forum.magicmirror.builders/post/20484</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20484</guid><dc:creator><![CDATA[trisfoz]]></dc:creator><pubDate>Tue, 25 Apr 2017 20:59:21 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Sun, 02 Apr 2017 11:42:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a></p>
<pre><code>pi@raspberrypi:~/MagicMirror/modules/MMM-swipe $ npm install

&gt; MMM-Swipe@1.1.1 postinstall /home/pi/MagicMirror/modules/MMM-swipe
&gt; electron-rebuild -e ../../node_modules/electron-prebuilt

An unhandled error occurred inside electron-rebuild
Unable to find electron-prebuilt's version number, either install it or specify an explicit version

Error: Unable to find electron-prebuilt's version number, either install it or specify an explicit version
    at _callee$ (/home/pi/MagicMirror/modules/MMM-swipe/node_modules/electron-rebuild/lib/cli.js:74:17)
    at tryCatch (/home/pi/MagicMirror/modules/MMM-swipe/node_modules/babel-runtime/node_modules/regenerator-runtime/runtime.js:63:40)
    at GeneratorFunctionPrototype.invoke [as _invoke] (/home/pi/MagicMirror/modules/MMM-swipe/node_modules/babel-runtime/node_modules/regenerator-runtime/runtime.js:337:22)
    at GeneratorFunctionPrototype.prototype.(anonymous function) [as next] (/home/pi/MagicMirror/modules/MMM-swipe/node_modules/babel-runtime/node_modules/regenerator-runtime/runtime.js:96:21)
    at GeneratorFunctionPrototype.tryCatcher (/home/pi/MagicMirror/modules/MMM-swipe/node_modules/bluebird/js/release/util.js:16:23)
    at PromiseSpawn._promiseFulfilled (/home/pi/MagicMirror/modules/MMM-swipe/node_modules/bluebird/js/release/generators.js:97:49)
    at /home/pi/MagicMirror/modules/MMM-swipe/node_modules/bluebird/js/release/generators.js:201:15
    at Object. (/home/pi/MagicMirror/modules/MMM-swipe/node_modules/electron-rebuild/lib/cli.js:197:4)
    at Module._compile (module.js:570:32)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Module.runMain (module.js:604:10)
    at run (bootstrap_node.js:393:7)
    at startup (bootstrap_node.js:150:9)

npm ERR! Linux 4.4.50-v7+
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install"
npm ERR! node v6.10.1
npm ERR! npm  v3.10.10
npm ERR! code ELIFECYCLE
npm ERR! MMM-Swipe@1.1.1 postinstall: `electron-rebuild -e ../../node_modules/electron-prebuilt`
npm ERR! Exit status 255
npm ERR! 
npm ERR! Failed at the MMM-Swipe@1.1.1 postinstall script 'electron-rebuild -e ../../node_modules/electron-prebuilt'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the MMM-Swipe package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     electron-rebuild -e ../../node_modules/electron-prebuilt
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs MMM-Swipe
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls MMM-Swipe
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /home/pi/MagicMirror/modules/MMM-swipe/npm-debug.log
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/18667</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/18667</guid><dc:creator><![CDATA[Michii_M]]></dc:creator><pubDate>Sun, 02 Apr 2017 11:42:27 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Fri, 31 Mar 2017 09:23:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/michii_m" aria-label="Profile: Michii_M">@<bdi>Michii_M</bdi></a><br />
On github you can log issues (problems you might have found): <a href="https://github.com/mochman/MMM-Swipe/issues" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/mochman/MMM-Swipe/issues</a></p>
<p dir="auto">However if mochman is not continuing development of this module then it is not really helpful to log the issue any way. Let’s wait for your error logs and maybe we can find another developer who could jump in</p>
]]></description><link>https://forum.magicmirror.builders/post/18549</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/18549</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Fri, 31 Mar 2017 09:23:17 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Fri, 31 Mar 2017 08:58:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a><br />
<a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a> said that he did not develop the module any more. Probably the error messages come by updates from the PI and MM. The error messages I can upload later after the work.<br />
From GitHub I have unfortunately no idea at all about the errors, how does it work?</p>
]]></description><link>https://forum.magicmirror.builders/post/18548</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/18548</guid><dc:creator><![CDATA[Michii_M]]></dc:creator><pubDate>Fri, 31 Mar 2017 08:58:54 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Fri, 31 Mar 2017 08:40:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/michii_m" aria-label="Profile: Michii_M">@<bdi>Michii_M</bdi></a><br />
maybe you could explain that a bit more. What is not working any more? Do you have any error messages? Did you log an issue on github with the developer <a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a> ?</p>
]]></description><link>https://forum.magicmirror.builders/post/18547</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/18547</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Fri, 31 Mar 2017 08:40:47 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Fri, 31 Mar 2017 08:35:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a><br />
Hey<br />
Since this module does not work anymore, I would like to try to get it running again.<br />
Can you tell me which file or parameters probably need to be adjusted?</p>
]]></description><link>https://forum.magicmirror.builders/post/18546</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/18546</guid><dc:creator><![CDATA[Michii_M]]></dc:creator><pubDate>Fri, 31 Mar 2017 08:35:43 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Fri, 20 Jan 2017 19:37:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a> No worries, thank you for letting me know. :)</p>
]]></description><link>https://forum.magicmirror.builders/post/11784</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/11784</guid><dc:creator><![CDATA[Snille]]></dc:creator><pubDate>Fri, 20 Jan 2017 19:37:15 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Fri, 20 Jan 2017 19:34:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/snille" aria-label="Profile: Snille">@<bdi>Snille</bdi></a> Yeah, this module requires root access.  I haven’t developed it since I first made it so I’m not sure if it still works with all the updates the pi &amp; MM have gotten.  Sorry.</p>
]]></description><link>https://forum.magicmirror.builders/post/11782</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/11782</guid><dc:creator><![CDATA[mochman]]></dc:creator><pubDate>Fri, 20 Jan 2017 19:34:44 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Thu, 19 Jan 2017 17:22:28 GMT]]></title><description><![CDATA[<p dir="auto">Hi, I’m trying out your module.<br />
I’m not running the Mirror with sudo, is there no other way to get your module to work?<br />
I’m getting this:</p>
<pre><code>{ Error: EACCES, Permission denied
    at Error (native)
    at /home/pi/MagicMirror/modules/MMM-Swipe/node_modules/mmm-gpio/lib/gpio.js:32:18
    at ChildProcess.exithandler (child_process.js:209:7)
    at emitTwo (events.js:106:13)
    at ChildProcess.emit (events.js:191:7)
    at maybeClose (internal/child_process.js:877:16)
    at Socket. (internal/child_process.js:334:11)
    at emitOne (events.js:96:13)
    at Socket.emit (events.js:188:7)
    at Pipe._handle.close [as _onclose] (net.js:493:12) errno: 13, code: 'EACCES', syscall: 'init' }
</code></pre>
<p dir="auto">I’m guessing it have to do with the mirror not running as root…<br />
the pi user is a member of the gpio group at least. :)</p>
<p dir="auto">Thank you.</p>
<p dir="auto">Best regards Snille</p>
]]></description><link>https://forum.magicmirror.builders/post/11655</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/11655</guid><dc:creator><![CDATA[Snille]]></dc:creator><pubDate>Thu, 19 Jan 2017 17:22:28 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Thu, 17 Nov 2016 21:23:22 GMT]]></title><description><![CDATA[<p dir="auto">hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a> - i don’t really get what is the use of your module… could you please give me some use case pls? thx a lot</p>
]]></description><link>https://forum.magicmirror.builders/post/8126</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/8126</guid><dc:creator><![CDATA[bibi]]></dc:creator><pubDate>Thu, 17 Nov 2016 21:23:22 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Mon, 31 Oct 2016 01:28:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/blamer" aria-label="Profile: Blamer">@<bdi>Blamer</bdi></a> Yeah, this isn’t created with a certain module in mind.  It sends that notification so you can use it in a module you create if you want.  I haven’t been really using this too much after I made it so I don’t have any other modules that would utilize the notifications.</p>
]]></description><link>https://forum.magicmirror.builders/post/7358</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7358</guid><dc:creator><![CDATA[mochman]]></dc:creator><pubDate>Mon, 31 Oct 2016 01:28:21 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Sun, 30 Oct 2016 16:21:49 GMT]]></title><description><![CDATA[<p dir="auto">I have just installed the MMM-Swipe module and wired up the sensors to the  Raspberry for tests. Right now I still do not understand how this modul communicates with the other Magic Mirror modules. How do I have to config e.g. the calender module or the clock module to swipe left or right? Or does it just work with special modules?<br />
That´s the only information I found on Github:</p>
<p dir="auto">This module will use the sendNotification(notification, payload) to send:<br />
notification = ‘MOVEMENT’<br />
payload = ‘Swipe Left’, ‘Swipe Right’, or ‘Press’</p>
<p dir="auto">Please use as appropriate in your module using notificationReceived(notification, payload, sender)</p>
]]></description><link>https://forum.magicmirror.builders/post/7332</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7332</guid><dc:creator><![CDATA[Blamer]]></dc:creator><pubDate>Sun, 30 Oct 2016 16:21:49 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Mon, 24 Oct 2016 13:40:52 GMT]]></title><description><![CDATA[<p dir="auto">Ok thanks for the info. I will try it.</p>
]]></description><link>https://forum.magicmirror.builders/post/6797</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6797</guid><dc:creator><![CDATA[DirkS]]></dc:creator><pubDate>Mon, 24 Oct 2016 13:40:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Mon, 24 Oct 2016 12:33:03 GMT]]></title><description><![CDATA[<p dir="auto">No, I have some speakers behind some speaker mesh.  I put the sensors behind the mesh.</p>
]]></description><link>https://forum.magicmirror.builders/post/6792</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6792</guid><dc:creator><![CDATA[mochman]]></dc:creator><pubDate>Mon, 24 Oct 2016 12:33:03 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Mon, 24 Oct 2016 10:23:10 GMT]]></title><description><![CDATA[<p dir="auto">Did you try to use the HR-SR04 behind the mirror glas? I would like to use it like that but don’t know if the ultrasonic sensor will work behind the glas.</p>
]]></description><link>https://forum.magicmirror.builders/post/6780</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6780</guid><dc:creator><![CDATA[DirkS]]></dc:creator><pubDate>Mon, 24 Oct 2016 10:23:10 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Tue, 18 Oct 2016 12:24:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jopyth" aria-label="Profile: Jopyth">@<bdi>Jopyth</bdi></a>  Thanks!  I was able to reproduce the error.  I updated the package.json file and it runs correctly.</p>
]]></description><link>https://forum.magicmirror.builders/post/6468</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6468</guid><dc:creator><![CDATA[mochman]]></dc:creator><pubDate>Tue, 18 Oct 2016 12:24:11 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Tue, 18 Oct 2016 08:18:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mochman" aria-label="Profile: mochman">@<bdi>mochman</bdi></a> Similar issue <a href="https://github.com/paviro/MMM-PIR-Sensor/issues/9" target="_blank" rel="noopener noreferrer nofollow ugc">here</a>. They <a href="https://github.com/paviro/MMM-PIR-Sensor/commit/3eb8c26d528277780b921ca2011c73ff4ea1083e" target="_blank" rel="noopener noreferrer nofollow ugc">changed</a> the <a href="https://github.com/paviro/MMM-PIR-Sensor/blob/master/package.json" target="_blank" rel="noopener noreferrer nofollow ugc">package.json</a> to fix it. Seems to be a problem with a new Electron version.</p>
<p dir="auto">You would only get this error if you newly install Magic Mirror (<code>npm install</code> in the <code>MagicMirror</code> folder gets the new package, if you want to reproduce it).</p>
]]></description><link>https://forum.magicmirror.builders/post/6459</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6459</guid><dc:creator><![CDATA[Jopyth]]></dc:creator><pubDate>Tue, 18 Oct 2016 08:18:54 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Swipe - Hand gestures on Mon, 17 Oct 2016 18:41:43 GMT]]></title><description><![CDATA[<p dir="auto">I’m running:</p>
<p dir="auto">RasPi 3 with Jessie<br />
NodeJs 6.7.0<br />
Fully updated with</p>
<pre><code>sudo apt-get update
sudo apt-get dist-upgrade
sudo rpi-update
</code></pre>
<p dir="auto">I just removed the entire MMM-Swipe Folder</p>
<pre><code>cd ~/MagicMirror/modules/
git clone https://github.com/mochman/MMM-Swipe
cd MMM-Swipe/
npm install
cd ~/MagicMirror/
sudo npm start
</code></pre>
<p dir="auto">I don’t get any of those errors.  I don’t know what module version 49 is?</p>
]]></description><link>https://forum.magicmirror.builders/post/6447</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6447</guid><dc:creator><![CDATA[mochman]]></dc:creator><pubDate>Mon, 17 Oct 2016 18:41:43 GMT</pubDate></item></channel></rss>