Steam Controller Buttons and Axis descriptors

Hey guys,

I was wondering, does anyone have a Steam Controller?

I just need them to check - how they are different from XBox.

So I can remap them and check that 100% options at steam page =)

I need console log from this code after pressing all buttons(A>B>X>Y>Left>Right>Up>Down>L1>R1) and using all axis one by one:

local function onKeyEvent(e)

local phase = e.phase;

local keyName = e.keyName;

print(keyName, phase );

end

Runtime:addEventListener(“key”, onKeyEvent);