hhua / 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.

Home Page:http://ryhan.org/post/44201171208/i-strapped-an-ipod-to-my-glove-to-capture-my

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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"
  }
}

About

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.

http://ryhan.org/post/44201171208/i-strapped-an-ipod-to-my-glove-to-capture-my


Languages

Language:JavaScript 100.0%