its solved
Read the statement by Michael Teeuw here.
Posts made by hawkeye
-
RE: module: remote control issue
{ module: 'MMM-Remote-Control', //position: 'bottom_left', config: { customCommand: {}, // Optional, See "Using Custom Commands" below customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below showModuleApiMenu: true, // Optional, Enable the Module Controls menu apiKey: "", // Optional, See API/README.md for details } },
try pasting that in your config.js works for me
-
MMM-awesome-alexa
My stupid thing is talking in Chinese or Japanese and i cant see where to change it to English
all my settings are set to English in the pi and and MM config
https://www.hellotech.com/guide/for/how-to-change-alexa-voice
even did what that says still Japanese haha
-
RE: MMM-iFrame-Ping
hi i have installed this module and have it working to a point i just cant get youtube to work on it is there some thing im missing ?
if i out my own website in as the url that loads google dosent though
-
RE: Remote control
I deleted every thing in the socketclient.js file and replaced with the following now the remote works like a charm
var MMSocket = function(moduleName) {
var self = this;if (typeof moduleName !== "string") { throw new Error("Please set the module name for the MMSocket."); } self.moduleName = moduleName; // Private Methods self.socket = io("/" + self.moduleName); var notificationCallback = function() {}; var onevent = self.socket.onevent; self.socket.onevent = function(packet) { var args = packet.data || []; onevent.call(this, packet); // original call packet.data = ["*"].concat(args); onevent.call(this, packet); // additional call to catch-all }; // register catch all. self.socket.on("*", function(notification, payload) { if (notification !== "*") { notificationCallback(notification, payload); } }); // Public Methods this.setNotificationCallback = function(callback) { notificationCallback = callback; }; this.sendNotification = function(notification, payload) { if (typeof payload === "undefined") { payload = {}; } self.socket.emit(notification, payload); };
};
-
RE: Remote control
@sdetweil see your totally awesome that’s fixed now wahoo
with your help im sure you could help me get this working awsome
-
RE: Remote control
@sdetweil you have been a grate help so far and yes i know i am annoying but i cant find what i am to do
-
RE: Remote control
@sdetweil yeah I’m no programmer
i need an idiots guide to things
-
RE: Remote control
@sdetweil said in Remote control:
{
module: ‘MMM-Remote-Control’,
position: ‘bottom_left’,
config: {
customCommand: {}, // Optional, See “Using Custom Commands” below
customMenu: “custom_menu.json”, // Optional, See “Custom Menu Items” below
showModuleApiMenu: true, // Optional, Enable the Module Controls menu
apiKey: “”, // Optional, See API/README.md for details
}
},You rock that fixed that part now i just need to make it show modules so i can turn them off
-
RE: Remote control
i tried that still no joy
what i want to do is to be able to add and remove modules from my phone and having no luck