We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ecfc5 commit f369f83Copy full SHA for f369f83
src/keyStream.h
@@ -49,9 +49,11 @@ class keyLook:public Stream {
49
lastkey = -1; //released = it's bounce. reset lastkey
50
return 0;
51
}
52
+ else if (ch != -1 && millis()-pressMills > BOUNCE_TICK) return 1;
53
else if (ESCAPE_TIME&&millis()-pressMills>ESCAPE_TIME) return 1;
54
55
if (ch==lastkey) return 0;
56
+
57
return 1;
58
/*int cnt=0;
59
for(int n=0;n<N;n++) {
0 commit comments