The Eye Tribe WebSocket server written in C#. This server makes it possible to write your application on browser like Leap Motion SDK.
- Install The Eye Tribe SDK.
- Connect your The Eye Tribe to PC.
- Run EyeTribeServer (includes SDK).
- Open this project as administration mode.
- Build and run this project.
- Connect to port 6556 via WebSocket protocol.
- Write your application with browser!
Following code is JavaScript example.
var ws = new WebSocket('ws://localhost:6556');
ws.onmessage = function(e) {
// {
// category: '...',
// request: '...',
// statuscode: ...,
// values: { ... }
// }
console.log(JSON.parse(e.data));
};
- The Eye Tribe
- The Eye Tribe SDK
- .NET Framework 4.5
- Visual Studio 2013 for Windows Desktop
(The MIT License)
Copyright (c) 2014 Seiya Konno <nulltask@gmail.com>