Skip to content

Instantly share code, notes, and snippets.

@ignacioiglesias
Created December 10, 2012 23:34
Show Gist options
  • Save ignacioiglesias/4254328 to your computer and use it in GitHub Desktop.
Save ignacioiglesias/4254328 to your computer and use it in GitHub Desktop.
PS3 joystick buttons
var buttons = {
buttons: {
1 : 'L2',
2 : 'R2',
4 : 'L1',
8 : 'R1',
16 : '▲',
32 : '●',
64 : '■',
128 : '×'
},
dpad: {
1 : 'select',
8 : 'start',
16 : '↑',
32 : '→',
64 : '↓',
128 : '←'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment