@ottobot This is why I initially made my module display the URL on the mirror (if the module is visible). No need for an app here. The functionality itself could be refined, since it apparently does not work 100% of the time.
Read the statement by Michael Teeuw here.
Posts
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
-
RE: MMM-DWD-WarnWeather - Wetterwarnungen
@LukeCodewalker Very interesting module, will you add this to the wiki as well?
Also why did you make a custom header? Wouldn’t it be better to use the default header functionality?
-
RE: [MMM-Buttons] Connect multiple buttons to send configurable notifications
@B4rth Please note that a notification never has a dedicated receiver. It is always a broadcast to all other modules. But sending notifications should definitely work with the module. Is your button working? If you are struggling with the correct URL for sending notifications, you can use this fiddle to build the correct URL.
The below config should be a simple example for showing an alert (it sends a notification to all modules and the alert module reacts to it):
{ module: 'MMM-Buttons', config: { buttons: [ { pin: 25, name: "test_button", longPress: { notification: "SHOW_ALERT", payload: {"title": "Hello World", "message": "Long Press!"} }, shortPress: { notification: "SHOW_ALERT", payload: {"title": "Hello World", "message": "Short Press!"} } } ] } },
Make sure to check that you are using the correct pin number and change the notification config, if you want another module to react.
-
RE: Increase in spam bots
@broberg Thanks for flagging them. @paviro mentioned he has a small mathematical captcha on the login page, however it seems as if the bots figured out how to solve it.
-
RE: MagicMirror is voted number 1 in the MagPi Top 50!
This is awesome! Congratulations for getting the #1 spot, which is totally deserved in my opinion.
-
RE: PIR-Sensor - put your mirror to sleep if not used
@FlatPepsi I have made a helper function here. This basically works like a normal
setInterval
, except it stops, when noone is present, and immediately exectues when a someone comes back. The helper functions for this are here, you can probably just copy and paste them. And then you finally need to check incoming notifications like this. -
RE: Something I'm working on ...
@roramirez Installer system is a great idea, however this is something that @strawberry-3-141 will implement as a mobile app, from what I hear plus I am building something like this into my remote control (a website - currently on the develop branch). So maybe have a look at it, before you start something completely new. Although, if there is a good reason for building this again or in a different way, count me in.
-
RE: [MMM-Buttons] Connect multiple buttons to send configurable notifications
@PointPubMedia Did you check out this section? There are some changes needed to make both work together smoothly.
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
Sorry for my long absence. I am currently in the last weeks of writing my master thesis. Therefore unfortunately not much will be happening until second or third week of May.
Big thanks to @strawberry-3-141 and @yawns to help everyone out so much. I finally made a release with the outstanding fixes:
[1.1.3] - 2017-04-23
Added
- Portuguese translation
- Indonesian translation
- Support for iOS Icon and Webapp
Changed
- Installation no longer needs a temporary file
Fixed
- Icon paths adapted to changes in Magic Mirror² 2.1.0
Hopefully I got everyone covered in my answers:
@PatrickGlatz Have you figured it out yet? I don’t think there is any special configuration needed, just need to find the right menu.
@kurt Thanks! Hopefully I will come around to improve the config interface at some point, as there are still some known bugs and problems, but I am glad it is already helping.
@AAPS You are right, I should probably add
npm install
after updating MM.@pepemujica What error do you get? Maybe it is something in your network settings?