ESP32 Fingerprint Sensor Emulator — Esp32 Devkit C V4 simulation

Master ESP32 polls a fake R30x fingerprint sensor running on a second ESP32 over a cross-wired UART link.

An interactive Esp32 Devkit C V4 circuit simulation you can run free in your browser on Velxio, by emmanuelbanaheneadamnor.

Components

Sketch code

// Arduino Blink Example
void setup() {
  pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);
  delay(1000);
  digitalWrite(LED_BUILTIN, LOW);
  delay(1000);
}

More projects by emmanuelbanaheneadamnor