Hi.
I'm having trouble getting scenes to work with the ZME_WALLC-S controller. I've red tons of articles (example: http://support.betaalbare-domotica.eu/using-the-zwave-me-keyfob-with-home-center-2),and spent many hours trying to figure this out. Any help is greatly appreciated. I'm using HC2 with 4.081 Beta firmware. Please see screenshots of configuration of Keyfob device.
I've created a LUA scene for debug, but nothing happens when I'm pushing the buttons.
This is the code I'm using:
--[[
%% properties
90 sceneActivation
%% globals
--]]
local ButtonPressed = fibaro:getValue(90, "sceneActivation");
fibaro:debug(ButtonPressed);
if ( tonumber(ButtonPressed) == 11) then
fibaro:debug("Keyfob button 1 pressed")
--fibaro:startScene(1);
elseif ( tonumber(ButtonPressed) == 21) then
fibaro:debug("Keyfob button 2 pressed")
--fibaro:startScene(2);
elseif ( tonumber(ButtonPressed) == 12) then
fibaro:debug("Keyfob button 3 pressed")
--fibaro:startScene(3);
elseif ( tonumber(ButtonPressed) == 22) then
fibaro:debug("Keyfob button 4 pressed")
--fibaro:startScene(4);
else
fibaro:debug("No response")
end
I've noticed that the firmware of the zwave.me controller is 1.1. And other articles are reffering to newer firmware of that device. I've also noticed that some are not using template and adding parameters 16 and 24 to the list (which I've also tried).
Right now I'm a bit in the dark, some help would be appreciated !