Giter VIP home page Giter VIP logo

myo-web-bluetooth.js's Issues

Reading wrong IMU data in your code

New on github. In your master/myo-web-bluetooth.js you have written:

"
    let orientationW = event.target.value.getInt16(0) / 16384;
    let orientationX = event.target.value.getInt16(2) / 16384;
    let orientationY = event.target.value.getInt16(4) / 16384;
    let orientationZ = event.target.value.getInt16(6) / 16384;

    let accelerometerX = event.target.value.getInt16(8) / 2048;
    let accelerometerY = event.target.value.getInt16(10) / 2048;
    let accelerometerZ = event.target.value.getInt16(12) / 2048;

    let gyroscopeX = event.target.value.getInt16(14) / 16;
    let gyroscopeY = event.target.value.getInt16(16) / 16;
    let gyroscopeZ = event.target.value.getInt16(18) / 16;
"

The mistake you did is getInt16(byteOffset [, littleEndian])
The Myo data format is in Little Endian. And you read big-endian value. So the corrected code would be:

"
  let orientationW = event.target.value.getInt16(0,true) / 16384;
  let orientationX = event.target.value.getInt16(2,true) / 16384;
  let orientationY = event.target.value.getInt16(4,true) / 16384;
  let orientationZ = event.target.value.getInt16(6,true) / 16384;

  let accelerometerX = event.target.value.getInt16(8,true) / 2048;
  let accelerometerY = event.target.value.getInt16(10,true) / 2048;
  let accelerometerZ = event.target.value.getInt16(12,true) / 2048;

  let gyroscopeX = event.target.value.getInt16(14,true) /16;
  let gyroscopeY = event.target.value.getInt16(16,true) /16;
  let gyroscopeZ = event.target.value.getInt16(18,true) /16;
"

Please correct it. It will be helpful for others.
Thank you very much for writing Myo Web BLE project.

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.