Hi guys, wanna ask if anyone knows why when i plug the fingerprint rx to the wemos d1 -> RX D0 and fingerprint tx on wemos D1 -> TX D1 it doesn't work?
AS608 | WEMOS D1
TX D1
RX D0
#include <SoftwareSerial.h>
SoftwareSerial fingerPrint(D0, D1);
#include <Adafruit_Fingerprint.h>
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&fingerPrint);
void setup()
{
finger.begin(9600);
if (finger.verifyPassword())
{
Serial.println("Found fingerprint sensor!");
delay(1000);
}
else
{
Serial.println("Did not find fingerprint sensor :(");
while (1);
}
}
