mruba / myo.js

Myo javascript bindings

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

myo.js

NPM

Myo javascript bindings.

Myo.js allows you to interact with Thalmic Labs's Myo Gesture Control Armband using websockets. Listen for IMU, EMG, and gesture events, as well as controlling vibration and locking.

installation

On the browser, just include the myo.js file in your project. Myo will be global.

On node.js

npm install myo

getting started

You'll need a Myo and Myo Connect

var Myo = require('myo');

//Start talking with Myo Connect
Myo.connect();

Myo.on('fist', function(){
	console.log('Hello Myo!');
	this.vibrate();
});

myo lifecycle

A myo can be paired, connected, and/or synced.

A myo is paired if it's ever been connected to your computer. You can see a list of paired myos in Myo Connect's armband manager. When Myo.connect() is called, Myo.js will create a myo instance for every paired Myo on your computer and store them in Myo.myos array.

A myo is connected if it's turned on and connected to your computer over bluetooth. It can send over IMU events at this point, vibrate, and EMG (if myo.streamEMG(true) is called) but not poses since it's not synced with the user.

A myo is synced when the user puts it on and does the sync gesture. At this point it will start sending over pose and lock/unlock events.

documentation

You can read the full documention here

changelog

Releases are documented in changelog.md

add-ons

A list of community created addons will go here!

branding and assets

You can use assets provided in our branding and UX guidelines.

thanks

Thanks to stolksdorf for creating Myo.js

license

The Myo.js project is licensed using the modified BSD license. For more details, please see LICENSE.txt.

About

Myo javascript bindings

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 82.2%Language:HTML 11.9%Language:CSS 5.8%