Waits for the value of an input pin to change @param pin GPIO pin @param mode what to wait for: GPIO.CHANGE, GPIO.FALLING or GPIO.RISING @webref
(int pin, int mode)
| 465 | * @webref |
| 466 | */ |
| 467 | public static void waitFor(int pin, int mode) { |
| 468 | waitFor(pin, mode, -1); |
| 469 | } |
| 470 | |
| 471 | |
| 472 | /** |
no test coverage detected