Skip to content

DigitasLBi-SE-TechnologyLab/myo-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

myo-node

A library for using the Myo in node.js. Currently only works in windows environment :(.

install

Python 2.7 and node-gyp is needed in order to build the project.

npm install -g node-gyp

build

If you have multiple installations of python in your environment path you might need to specify path to python 2.7 when using node-gyp

node-gyp --python=/path/to/python2.7 [command]

First you need to configure the build using (don't forget to specify python path if needed):

node-gyp configure

After succesfully configuring with node-gyp you only have need to build it (again, python27):

node-gyp build

If everything worked properly a build folder should have been created with project files and a release folder with the files you need to import.

usage

Now you can use it in your own application. Make sure that all dll are available for the built project.

var hub = require('./index.js')('com.example.application');

hub.on('myo', function(myo) {
  
  myo.on('orienation', function(data) {
    console.log(data.quaternion);
  });

});

API for interfacing with the myo is in progress and will be updated.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published