You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The wiegand keypad reader code does not work as due to the "return" command in the following code:
if (keyTimer >0) // we are still waiting for keycode to build up
{
#ifdef DEBUG
Serial.println("[ INFO ] still waiting for keypress");
#endif
return;
}
the function is left before the line if (wg.available()) so that the Wiegand code is not processed
Furthermore the keypad code is not present in the OFFICIALBOARD section.
The text was updated successfully, but these errors were encountered:
christofkac
changed the title
Wiegand Keypad only recognizes first Keypress and is not available on OFFICIALBOARD
Wiegand Keypad only recognizes first Keypress and is not available on OFFICIALBOARD (dev branch)
Jan 24, 2020
The wiegand keypad reader code does not work as due to the "return" command in the following code:
if (keyTimer >0) // we are still waiting for keycode to build up
{
#ifdef DEBUG
Serial.println("[ INFO ] still waiting for keypress");
#endif
return;
}
the function is left before the line
if (wg.available())
so that the Wiegand code is not processedFurthermore the keypad code is not present in the OFFICIALBOARD section.
The text was updated successfully, but these errors were encountered: