Skip to content

Instantly share code, notes, and snippets.

@smching
Created March 30, 2016 14:00
Show Gist options
  • Save smching/77ca53310e8f3c5d4a8219ad32bd1690 to your computer and use it in GitHub Desktop.
Save smching/77ca53310e8f3c5d4a8219ad32bd1690 to your computer and use it in GitHub Desktop.
Arduino电子密码锁
boolean isTimeout() {
runEventAnyTime();
if (millis() >= previousMillis + KEYBOARD_EVENT_TIMEOUT *1000){ //convert KEYBOARD_EVENT_TIMEOUT in milli second to second
playTimeOutTone();
return true;
} else return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment