mirror of
https://github.com/danbulant/console-hub
synced 2026-05-19 12:28:47 +00:00
6 lines
156 B
JavaScript
6 lines
156 B
JavaScript
var joystick = require('joystick'),
|
|
controller = new joystick(0, 256, 500);
|
|
|
|
controller.on('button', console.log);
|
|
|
|
controller.on('axis', console.log);
|