Hallo zusammen, hat schon jemand erfolgreich den Keyfob 5 mit der HC2 am laufen? Bei mir will der nicht so recht. Die HC Scene reagiert auf keine Taste…
--[[
%% Properties
103 sceneActivation
%% Globals
--]]
local id=103;
local name = fibaro:getName(id)
--fibaro:debug(name);
local ButtonPressed = fibaro:getValue(id, "sceneActivation");
if ( tonumber(ButtonPressed) == 1) then
fibaro:debug("Keyfob button 1 pressed")
--fibaro:startScene(1);
elseif ( tonumber(ButtonPressed) == 2) then
fibaro:debug("Keyfob button 2 pressed")
elseif ( tonumber(ButtonPressed) == 3) then
fibaro:call(43, 'turnOn');
fibaro:debug("Keyfob button 3 pressed")
elseif ( tonumber(ButtonPressed) == 4) then
fibaro:call(43, 'turnOff');
fibaro:debug("Keyfob button 4 pressed")
elseif ( tonumber(ButtonPressed) == 5) then
fibaro:debug("Keyfob button 5 pressed")
elseif ( tonumber(ButtonPressed) == 6) then
-- fibaro:call(46, 'turnOff');
fibaro:debug("Keyfob button 6 pressed")
elseif ( tonumber(ButtonPressed) == 7) then
fibaro:debug("Keyfob button 7 pressed")
elseif ( tonumber(ButtonPressed) == 8) then
fibaro:debug("Keyfob button 8 pressed")
else
fibaro:debug("No response")
end
Gruß