@frentemorao Did not test that. I have it running on the same Pi in my case. But as MMM-Touch only sends notifications to other modules I do not see a reason why it shouldn’t.
Read the statement by Michael Teeuw here.

Posts
-
RE: Magicmirror touchscreen tablet dashboard
-
RE: Magicmirror touchscreen tablet dashboard
Hi,
you can use MMM-Touch to react to swipes. I am not sure if it works with pages but it does with the MMM-ProfileControl. -
RE: [MMM-EmbedURL] Cookie-Banner Problem
@burki There might be a chance to use Chrome with the SuperAgent extension but I think Sam is right and the extension will not work as the site is opened in a sandbox.
-
RE: [MMM-EmbedURL] Cookie-Banner Problem
@burki Hi, great that you like the module.
As you use Webview i assume you use the build in Electron browser to view MagicMirror.
I do not see a chance to the remove the cookie banner in this case unfortunately.Maybe the website supports suppressing the cookie banner by adding a parameter to the URL?
-
RE: Can't get seconds to not show up?
@rsun Hi,
there is a bug in the original module which causes theshowSeconds
flag to be ignored.
The issue is fixed in this fork https://github.com/justjim1220/MMM-DigClock/pull/2/commits/c160d3c4477ae2b535470f032dab34914f2f8356 but it has not been merged since nearly three years. -
RE: [MMM-ValuesByNotification] Display the payloads of notifications with titles and icons
@BKeyport Hi, and thanks for the contribution. I only had a view moments to look at the changes.
Currently the changes do not look very critical and I will be happy to merge them.
I only want to make sure there is no more universal way (especially for the space) feature.Documentation is one of my favourites (Not). But it should no big deal to add it.
I will try to do a deeper look the code the next days and will merge as fast as I can.
-
RE: MMM-MQTT add conversion from metric to imperial
@3squaremirror Hi,
you can use MMM-MQTTbridge and MMM-ValuesByNotification for this purpose.
But you will need to put some effort into the configuration as the configuration of MMM-ValuesByNotification can be complex very fast. -
RE: Esp32 Randomly Stops Working
@Xilef
Just checked the other post.
The Sketch i gave to you does not use any AsyncTCP libraries so there needs to be some different problem in your case.If you still use ArduinoIDE to flash the boards you will have received some updates of the ESP core packages in the last time. Maybe there was fixed a problem and cause of the reflash the changes got active now.
-
RE: Esp32 Randomly Stops Working
@Xilef
Me again…
I have some problems at the moment with two of my modules counting my water usage and gas usage by reed switches.
They stop working after 18 hours to 24 hours.
As i figured out the problem is the MQTT library i use (AsyncMqttClient). I am now porting my sketches back to PubSubClient instead.How do you send the data with your boards. Is it still plain TCP or do you use MQTT?
-
RE: Is there a way or a module that will display an svg graphic?
@vvrangler
Hi,you could use my MMM-EmbedURL module for this purpose.
Simply set theembedElementType
toimg
like in the following example:{ module: "MMM-EmbedURL", position: "top_center", header: "Embed-URL", config: { embedElementType: "img", updateInterval: 10, attributes: [ "frameborder=0", ], embed: [ "http://SOME_SERVER/SOME_SVG.svg", ] }, },
You can change the
updateInterval
to your needs.