You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DetectMotionExample.java
has some wrong point
at line 18
detector.setCheckInterval(100); // one check per 100 ms
should be
detector.setInterval(100); // one check per 100 ms.
I don't know how it happened but I just check on your document and find the way out.
The text was updated successfully, but these errors were encountered:
Thank you for the report :) You are correct, I changed mentioned method name and additionally fixed some timing issue present in the build-in motion detector feature.
In DetectMotionExample.java
has some wrong point
at line 18
detector.setCheckInterval(100); // one check per 100 ms
should be
detector.setInterval(100); // one check per 100 ms.
I don't know how it happened but I just check on your document and find the way out.
The text was updated successfully, but these errors were encountered: