GithubHelp home page GithubHelp logo

Comments (2)

lucastetreault avatar lucastetreault commented on June 29, 2024

What does your code look like? I haven't touched this in a long time but in the sample code you are creating a new instance:

var wiimote = new wii.WiiMote();

// You may specify a mac address to your wiimote, or use 00:00:00:00:00
wiimote.connect("00:00:00:00:00", function(err) {
  if( err ) {
    console.log( 'Could not establish connection' );
    return;
  }

from node-wii-v8.

anbraten avatar anbraten commented on June 29, 2024

Because of the way you wrote wii.js I cannot call a constructor on Wiimote. So this example isn't correct. I'm currently calling it like you did in server.js.

function connect (mac) {
  var wiimote = wii.WiiMote
  wiimote.connect(mac, (err) => {
    if (err) {
      console.log('error:', err)
      return
    }
    console.log('Wiimote[' + mac + ']: connected', id)

    wiimote.on('disconnect', () => {
      console.log('Wiimote[' + mac + ']: disconnected')
    })

    wiimote.ir(true)
    wiimote.on('ir', (points) => {
      for (var p in points) {
        console.log('Wiimote[' + mac + '] Point:', p['x'], p['y'], p['size'])
      }
    })

    wiimote.button(true)
    wiimote.on('button', (btn, err) => {
      if (err) {
        console.log('Wiimote[' + mac + '] Button error:', err)
        return
      }
      console.log(btn)
    })

   })
}

from node-wii-v8.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.