Read the statement by Michael Teeuw here.
Posts
-
RE: Trafficmaps
@tyho alright, now I understand your requirements… I can’t promise, but will try to have a look at this over a few coming days.
-
RE: Trafficmaps
@tyho so what exactly you’re trying to implement? What would be a use case here for the MM?
-
RE: Motion Detector
@plumcraft strange, I’ve RPI 3 as well and I don’t see this problem … This may be related to which monitor/TV your RPI is connected.
-
RE: Motion Detector
Sorry, guys, the problem should be fixed now. Just pull the latest.
-
Motion Detector
I’ve published the Motion detector module that I’ve been using for a while. It uses a web camera connected to a Raspberry Pi.
You can find it here:
https://github.com/alexyak/motiondetector
The configuration should be pretty straightforward.
-
RE: Trafficmaps
Instead of Google, you could also use Microsoft’s Bing service to get a map with accidents:
-
RE: Voice control module issue
Check this troubleshooting page on the Evan’s web site:
-
RE: MMM-SpotifyConnectUI
@Cato How hard it would be to add the code to actually play the music on the RaspPi?
-
RE: VoiceControl module
Try to put a call in your start method of the module (notification.js) to establish the connection with node_helper. Something like that:
this.sendSocketNotification(“CONNECT”, {});
-
RE: Getting MM2 running on a Mac Mini?
I am debugging the MM2 on my Macbook Pro, so it should run on the Mac Mini. Just follow what @KirAsh4 has outlined in his reply.
Just wondering how are you going to use an old iPad as the monitor for the MacMini? Using Duet or something?
-
RE: VoiceControl module
@tyho What I meant is you need to add socketNotificationReceived to your module notification.js.
-
RE: VoiceControl module
If you override socketNotificationReceived in your module then you should receive the message from node_helper and can reset your flag appropriately.
-
RE: VoiceControl module
@tyho, you can use setTimeout function to wait a for few seconds and then reset the text value. Something like that:
var self = this;
setTimeout(function(){
self.config.text = “”;
self.updateDom …
}, 3000); -
RE: This might be a daft question, but...
Visual Studio Code rocks! It’s relatively new, but it’s very lightweight, run on any platform, includes intellisense and bunch of addins. Allows you debugging in the node.js…
-
RE: VoiceControl module
@tyho said in VoiceControl module:
notificationReceived
You can put it in any other module that you would like to react on the voice command and then just call self.updateDom(self.config.animationSpeed);
-
RE: VoiceControl module
Pull it or clone from the github into your MM modules directory. Go to the https://snowboy.kitt.ai, login with any of your emails, create voice models as much as you need and copy the pmdl files into the root folder, modify the config.js as it described in the Readme.md.
-
RE: Voice/motion control
Hey guys, I’ve published the module: https://forum.magicmirror.builders/topic/425/voicecontrol-module
Let me know if you have any issues.
Enjoy!