Hi,
I have created a quick module to visualize outside temperatures from the Temp2IOT Sensor:
Get your own Sensor: Temp2IOT
-1 iFrame on my mirror :)
Hi,
I have created a quick module to visualize outside temperatures from the Temp2IOT Sensor:
Get your own Sensor: Temp2IOT
-1 iFrame on my mirror :)
Hi,
I’m currently working on a new module. I had a lot of updates to do in my code to adjust the layout. After saving changes, I had to manually refresh the MagicMirror application every time. This process is tedious, especially if you’re frequently experimenting with configurations.
That’s where this script comes in. By monitoring your config.js file (or a module.js file) for changes, it automates the refresh process. Now, every time I save my config.js, the Mirror refreshes itself instantly.
It’s seamless, efficient, and saves you from the hassle of restarting the application manually.
Perfect for developers and tinkerers alike, this script ensures your MagicMirror reflects your updates in real-time, letting you focus on creativity instead of logistics.
https://github.com/ChrisF1976/MM-Watcher
Give it a try…
Regards,
Chris.
Hello,
unfortunately even more optimizations were necessary. So I update the repository.
New:
Reduced effects:
createExplosion(x, y) {
const particleCount = 25; // was 50
this.particles.forEach((p) => {
p.x += p.vx;
p.y += p.vy;
p.vy += 0.01; // less gravity
p.alpha -= 0.01;
});
setup() {
this.canvas.width = this.width*0.95 //reduced width
this.canvas.height = this.height*0.95 //reduced height
window.addEventListener("resize", () => this.resize());
}
Hopefully you’ll celebrate this, too!
Hi,
i was working the last days on a module to get rid of the last iframes on my mirror. These modules can all visualize solar energy data from a Fronius solar system using SVG magic :)
If you do not have a FroniusPV but your system has an API it should be not much work to adjust the node_helper file.
All in a column:
@lucifer6669
Hi,
I’ve just fixed that issue in general. I’ve added wrapper.style.pointerEvents = "none";
and p.canvas.style.pointerEvents = "none";
in the module file. This allows pointer events to pass to modules underneath! So also the CalExt3 can be used again with the pop-up windows. I’m also very happy now :-)
Cheers Chris!
@sdetweil Wow, thank you so much! Perfect :folded_hands: :grinning_face_with_big_eyes:
I have completely reworked the MMM-Fireworks module!
New:
Fixed. IP can now be defined in the config.js:
InverterIP: "<yourInverterIP>",
See also my fork: MMM-GoogleMapsTraffic.
Runs fine without any issue since months.