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
In addition to the existing LED color control I'd like to share more available colors on newer models (I'm using a R503 module). Maybe this is helpful for others, so just add the following lines after #define FINGERPRINT_LED_GRADUAL_OFF 0x06 //!< Gradually off in Adafruit_Fingerprint.h:
#define FINGERPRINT_LED_WARMWHITE 0x00 //!< warm white
#define FINGERPRINT_LED_GREEN 0x04 //!< green
#define FINGERPRINT_LED_YELLOW 0x05 //!< yellow
#define FINGERPRINT_LED_CYAN 0x06 //< cyan
#define FINGERPRINT_LED_ COLDWHITE 0x07 //< cold white
And as "issue": In line 89 of Adafruit_Fingerprint.h stands //!< Purple LEDpassword which is obviously wrong, so please just remove the password.
Have a nice day all together!
The text was updated successfully, but these errors were encountered:
fixing last line in:
#define FINGERPRINT_LED_WARMWHITE 0x00 //!< warm white
#define FINGERPRINT_LED_GREEN 0x04 //!< green
#define FINGERPRINT_LED_YELLOW 0x05 //!< yellow
#define FINGERPRINT_LED_CYAN 0x06 //< cyan
#define FINGERPRINT_LED_ COLDWHITE 0x07 //< cold white
by removing an extra space, so it becomes:
#define FINGERPRINT_LED_COLDWHITE 0x07 //< cold white
In addition to the existing LED color control I'd like to share more available colors on newer models (I'm using a R503 module). Maybe this is helpful for others, so just add the following lines after
#define FINGERPRINT_LED_GRADUAL_OFF 0x06 //!< Gradually off
inAdafruit_Fingerprint.h
:And as "issue": In line 89 of Adafruit_Fingerprint.h stands
//!< Purple LEDpassword
which is obviously wrong, so please just remove thepassword
.Have a nice day all together!
The text was updated successfully, but these errors were encountered: