IO: Fix waitFor(pin, mode)

This commit is contained in:
gohai
2017-04-30 20:41:14 +02:00
parent 511c21583b
commit 00d3c11032

View File

@@ -450,7 +450,7 @@ public class GPIO {
* @webref
*/
public static void waitFor(int pin, int mode) {
waitForInterrupt(pin, mode, -1);
waitFor(pin, mode, -1);
}