@harney Hi, I recently had the same problem and wrote a module to exactly do this job (MMM-TouchButton).
Read the statement by Michael Teeuw here.
Best posts made by wishmaster270
-
RE: Stop mm from a touch button
-
RE: MMM-Fritz-Box-Callmonitor: Notification formatting
@sdetweil
I should have checked that. Thank you for the link.
With the current develop branch the formatting works as expected, too.Edit: If the comment is removed of the translation files the translations work as well and the right title is displayed
-
RE: [MMM-ValuesByNotification] Display the payloads of notifications with titles and icons
@Cr4z33
Hi,
the short answer: Yes it can, maaayyyybee?
Does your powermeter send the data via MQTT already?
Do you have the MMM-MQTTbridge module configured to connect to your MQTT broker, subscribe for the topic(s) and send the data via notification?
How does the data look like? Is it plain text or is it a JSON object?
If it is JSON how is the data structured and which values do you want to display? -
RE: Display different Roomtemperature on MagicMirror
@sdetweil Hi Sam, i was to slow with editing my post. The Sketch i provided does exactly that.
-
RE: MMM-Fritz-Box-Callmonitor: Notification formatting
@coernel
Hi,
as i can see this fork https://github.com/drtorchwood/MMM-FRITZ-Box-Callmonitor-py3/tree/code_update_2023 contains all changes needed.
But you will need to either use the current development version of MagicMirror or wait for the next release which i think is planned for 2022-04-01 to get the alerts formatted correctly. -
RE: [MMM-ValuesByNotification] Display the payloads of notifications with titles and icons
@Cr4z33
No problem.
Simply add.vbn .groupWrapper { border-style: none; padding: 0px; }
to your custom.css
Ps.: Try to never ever edit any files in the module directory (except mentioned in the documentation) as you will get problems with updates in the future otherwise!
-
RE: apt upgrade question
@ankonaskiff17 Hi,
it’s basically the same but not exactly…
apt full-upgrade
upgrades all packages and removes old versions of the packagesapt dist-upgrade
upgrades all packages and removes old versions but it tries to figure out which upgrade is more “worthful” if there are occur conflicts cause of the upgradesapt update
updates the locally saved list of available packages by downloading the current package list of all configured repositoriesapt
is the new replacement command ofapt-get
-
RE: MMM-PIR-Sensor-Lite modification
@Freddy_boy
Hi, my MMM-Screen-Powersave-Notification module can do this job. It has ahideInsteadShutoff
option.
You need my MMM-GPIO-Notifications in addition.
I wrote a Guide of how to configure the modules. -
RE: [MMM-ValuesByNotification] Display the payloads of notifications with titles and icons
@Cr4z33
If you still want to move the content to the left you can try something like the following in your custom.css:.vbn .groupWrapper { border-style: none; padding: 0px; margin-left: 20px; } .vbn .groupsWrapper, .vbn .groupWrapper, .vbn .itemsWrapper, .vbn .valueWrapper { justify-content: left; align-items: unset; }
-
RE: MagicMirror Module for running a shell script
@Human99 Hi,
you can use my MMM-TouchButton module for this job.