wouldn't it be much simpler to use a converter/switch for input and something like a HDMI splitter to achieve this?
Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: purps on May 06, 2013, 11:38:55 PMwhat plugin module is that?
I have a motion security light which plugs in to a standard wall socket, to which I have now added a z-wave plugin module.
However the light doesn't turn off! Is LMCE and/or the Z-wave controller doing something to the plug-in module that prevents the light from turning off?
Cheers,
Matt.
function setlevel(uuid, level) {
var request = {};
request.method = "message";
request.params = {};
request.params.command = "setlevel";
request.params.uuid = uuid;
request.params.level = level;
request.id = 1;
request.jsonrpc = "2.0";
$.post(url, JSON.stringify(request), myCallback, "json");
}