Hi,
I am new to leap motion and processing however, I just tried to use some of the counting fingers code and when i print to console I just get a whole lot of 0s. I am not sure if my leap motion is working correctly. Please see the attached code:
import com.leapmotion.leap.*;
Controller controller = new Controller();
void setup(){
//fullScreen();
//if needed...
}
void draw(){
Frame frame = controller.frame();
FingerList extendedFingers = frame.fingers().extended();
int fingerCount = extendedFingers.count();
print(fingerCount);
}