sparkfun / Fingerprint_Scanner-TTL

Repository with example code for SEN-14585 & SEN-14585 at SparkFun.com
https://www.sparkfun.com/
109 stars 112 forks source link

Auto ID selection logic error #7

Closed JoshHawley closed 10 years ago

JoshHawley commented 10 years ago

Fixed minor logic error with automatically selecting the next open ID number.

This: if (okid==false) enrollid++;

Changed to this: if (okid==true) enrollid++;

ToniCorinne commented 10 years ago

Closing this as it was fixed in the previous merge.