Guest User

Untitled

a guest
Jan 13th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var wii = require( '../build/default/nodewii.node' );
  2.  
  3. var wiimote = new wii.WiiMote();
  4.  
  5. wiimote.connect( '00:17:AB:39:42:B1', function( err ) {
  6. console.log( err );
  7.  
  8. wiimote.ext( true );
  9. wiimote.on( 'nunchuk', function( err, data ) {
  10. console.log( data );
  11. });
  12. });
Add Comment
Please, Sign In to add comment