Did anyone try to do something like this? You could use it like these digital pictureframes and show your favourite holidaypictures.
I can’t find a module, that does something like this. It’s such a simple idea, that I thought someone might have done it, and I’m just to stupid to find it… :)
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
S
Best posts made by Shampooman
-
Image Galery
-
RE: Hide Module (not deleting if from the config.js)
you could just comment it out.
/* { module:clock, position: 'top_left', } */
would do the job. :)
Moderator’s Note: Please use proper Markdown when showing code.
-
RE: OwnCloud integration
ok, now it works completly. Perhaps I had a mistake inside my code. Thank you for your help!
-
RE: Issue with sendSocketNotification and socketNotificationReceived
@paviro said in Issue with sendSocketNotification and socketNotificationReceived:
Only had a quick look at your code but it seems like you are not sending anything from the UI JavaScript to the
node_helper
. In order for thenode_helper
to be able to communicate with the module’s JavaScript you have to open the socket connection by sending some kind of initial message to the helper first. So you can probably fix it by addingthis.sendSocketNotification("hello")
to thestart
function of yourlovenotes.js
.Thank you! This helped a lot!!!