| /** | |
| * Start a monitor on the analog input. It will check the | |
| * value on the analog input periodically, as specified | |
| * with the periodMicroSeconds argument. When the threshold | |
| * has been reached the listener's {@link ThresholdListener#thresholdReached thresholdReached} | |
| * method will be called. | |
| * | |
| * @param periodMicroSeconds the period micro seconds | |
| * @param listener the listener | |
| */ | |
| void startMonitor(int periodMicroSeconds, ThresholdListener listener); https://github.com/Datenheld/Bulldog/blob/master/bulldog.core/src/main/java/org/bulldog/core/gpio/AnalogInput.java |