Not yet, I'm also trying it out. But feel free to help. What I got now is:
1) make a .jar file of the java sdk (I did it in Eclipse, if you want I can send it), and put it into a folder "Code", in you sketch folder
2) Get the gson package from somewhere and also put it in the folder
3) open the EyeTribeUI, and perform calibration (server will now also start)
4) Run the code I paste below
5) It does actually connect, but it outputs weird hexadecimal stuff.
Note that I'm not so experienced, so if anyone can help, please do!
Processing code:
- Code: Select all
import com.google.gson.Gson;
import com.theeyetribe.client.*;
void setup() {
GazeManager gm=GazeManager.getInstance();
boolean success = gm.activate(GazeManager.ApiVersion.VERSION_1_0, GazeManager.ClientMode.PUSH);
GazeListener gazeListener = new GazeListener();
gm.addGazeListener(gazeListener);
size(640, 360);
}
void draw() {
}
private static class GazeListener implements IGazeListener
{
@Override
public void onGazeUpdate(GazeData gazeData)
{
System.out.println("weird hexadecimal stuf: "+gazeData.toString());
}
}