/glove

Accelerometer glove prototyped with node.js and a mobile device. By streaming accelerometer data from a glove with a bundled iPod over websockets, we can easily experiment with tilt based interfaces.

Primary LanguageJavaScript

glove

For Node v0.10.x Users

Please recompile node modules and modify the package.json file

Recompile node modules remove /node_modules and reinstall express, socket.io and now

rm -rf node_modules

npm install express

npm install socket.io

npm install now

Modify package.json

Original:

{
  "name": "glove",
  "version": "0.0.1",
  "dependencies": {
      "now": "0.8.1",
      "socket.io": " 0.9.6"
  },
  "engines": {
    "node": "0.8.x",
    "npm": "1.1.x"
  }
} 

Modified:

{
  "name": "glove",
  "version": "0.0.1",
  "dependencies": {
      "now": "0.8.1",
      "socket.io": " 0.9.x"
  },
  "engines": {
    "node": "0.10.x",
    "npm": "1.2.x"
  }
}