@tanvir586 if you are not already using remote control it’s not worth the bother. I was already using it, so instead of restarting MM I would just hide and immediately display the nest module, that seemed to get it working again. Hope someone can help you out.
Read the statement by Michael Teeuw here.
Posts
-
RE: Mmm-nest-status freeze
-
RE: Mmm-nest-status freeze
@tanvir586 Sorry, beyond my expertise. I remember I could use the remote control module to hide and display the nest module, and that would cause it to work again. That’s a bit better than restarting, but still not a fix.
-
RE: Mmm-nest-status freeze
@tanvir586 I’m no longer using the module, but this was an issue for me. I don’t remember the exact setting, but it helped to reduce the rate of refresh requests to the thermostat.
-
RE: mmm-nest-status unresponsive after 12hours
It’s been 24 hours and still working fine! Thanks!
-
RE: mmm-nest-status unresponsive after 12hours
@sdetweil just got the update, I’ll let you know what I find. Thanks!
-
RE: mmm-nest-status unresponsive after 12hours
Based upon the display, it stopped on me last night. I was running mm serveronly so I could see the dev output in browser. I couldn’t find any errors. It could have stopped when scheduler is set to hide all modules. I did see this in the console after this mornings schedule to show modules:
Whoops! There was an uncaught exception... TypeError: Cannot read property 'statusCode' of undefined at Request._callback (/home/pi/MagicMirror/modules/mmm-nest-status/node_helper.js:20:25) at self.callback (/home/pi/MagicMirror/node_modules/request/request.js:185:22) at emitOne (events.js:116:13) at Request.emit (events.js:211:7) at Request.onRequestError (/home/pi/MagicMirror/node_modules/request/request.js:881:8) at emitOne (events.js:116:13) at ClientRequest.emit (events.js:211:7) at TLSSocket.socketErrorListener (_http_client.js:401:9) at emitOne (events.js:116:13) at TLSSocket.emit (events.js:211:7) MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?In the past I don’t think I ever had a conflict between scheduler and nest status.
-
RE: mmm-nest-status unresponsive after 12hours
I tried to open the console via remote but wasn’t able to. Sorry.
-
RE: mmm-nest-status unresponsive after 12hours
Bummer, mine has stopped as well.
-
RE: mmm-nest-status unresponsive after 12hours
I also have been having the same issue with this module. It worked well for months. I’ve just been restarting and haven’t had time to chase down the errors.
-
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
That changed worked for me. I also had issue of white screen on my phone. After the change above and restarting phone, works fine now.
-
New weather module (develop branch) not updating
I’ve noticed recently that the new weather module in the develop branch stops updating. I got this error in the developer console:
2cors-anywhere.herokuapp.com/https://api.darksky.net/forecast/mykey/mylatlong?units=us&lang=en Failed to load resource: the server responded with a status of 503 (Service Unavailable) 0.0.0.0/:1 Failed to load https://cors-anywhere.herokuapp.com/https://api.darksky.net/forecast/mykey/mylatlong?units=us&lang=en: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://0.0.0.0:8080' is therefore not allowed access. The response had HTTP status code 503.If the service is unavailable shouldn’t the weather module update once it is available?
If I restart MM, the module will update properly and work for about a day.
-
RE: Best way to display recipe
@mykle1 Great, thanks, I’ll take a look at the voice modules and see what I can come up with. I also just found MMM-ImageFileWatcher which looks like it may do a lot of what I was looking for.
-
RE: Best way to display recipe
@justjim1220 thank you, I just looked at it again. I thought it was pulling a daily menu from somewhere, not a way of displaying a specific recipe. Where do the recipes come from?
-
Best way to display recipe
Hi, my MM is actually a kitchen display. Currently it is showing calendar, weather, news, nests, and background images. I’m looking for the best way to shutdown current modules and display a recipe full screen. My first thought was to send the web page link via MagicRemote and use pages to switch to a page that would only show the page in an iframe. However, it looks like most pages don’t like to be displayed in iframe. Second thought was to save page as an image, and have MM look for a file in remote location and if it finds it, close other modules and display the image. Has anyone done something like this already, or have a suggestion for a better approach?
Thanks!
-
RE: Module help for variable
@sdetweil Thanks, I got it. I needed to get rid of “this”. So the correct test was:
if (!(oldAwayState === awayState) && (awayState === 'home')) -
RE: Module help for variable
@sdetweil thanks, I’ll give that a try. I’ve been writing the variables to the consol log but it’s not quite as helpful.
-
RE: Module help for variable
Is there something wrong with this:
if (!(this.oldAwayState === awayState) && (this.awayState === 'home'))maybe they are both not strings or something?
-
RE: Module help for variable
That’s what I thought. But it still fires off every two minutes, there must be an error in the logic.