@Cato How hard it would be to add the code to actually play the music on the RaspPi?
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-SpotifyConnectUI
-
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!