the_electro_artist
Created February 24, 2023 © CC BY

Intrefacing Fingerprint Sensor

how to interface fingerprint sensor with arduino for projects

IntermediateWork in progress3 hours9
Intrefacing Fingerprint Sensor

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Fingerprint Sensor
DFRobot Fingerprint Sensor
×1
LED (generic)
LED (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
×1
Mega-B Development Kit
Breadware Inc Mega-B Development Kit
×1
Resistor 10k ohm
Resistor 10k ohm
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Hot glue gun (generic)
Hot glue gun (generic)

Story

Read more

Code

Code

C/C++
Code
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>

#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64

Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1);

void setup() {
  Serial.begin(115200);

  if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) {
    Serial.println(F("SSD1306 allocation failed"));
    for(;;);
  }
  delay(2000);
  display.clearDisplay();

  display.setTextSize(1);
  display.setTextColor(WHITE);
  display.setCursor(0, 10);
  display.println("Hello, world!");
  display.display(); 
}

void loop() {
  
}

Credits

the_electro_artist
30 projects • 3 followers

Comments