Zbotic Logo Zbotic Logo
  • Home
  • Shop
  • Sale
  • 3D Printing
    • Multicolor FDM
    • FDM
    • SLA Resin
    • MJF Nylon
    • SLS Nylon
    • SLM Metal
    • Binder Jetting
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
0 0

View Wishlist Add all to cart

0 0
0 Shopping Cart
Shopping cart (0)
Subtotal: ₹0.00

View cartCheckout

  • Shop
  • About Us
  • Contact Us
  • Reseller
  • Blogs
020 69134444
1800 209 0998
[email protected]
Help Desk
Facebook Twitter Instagram Linkedin YouTube
Zbotic Logo Zbotic Logo
0 0

View Wishlist Add all to cart

0 0
0 Shopping Cart
Shopping cart (0)
Subtotal: ₹0.00

View cartCheckout

All departments
  • 3D Printing
  • 3D Printer
  • Batteries & Chargers
  • Development Boards
  • Drone Parts
  • EBike parts
  • Sensor Modules
  • Electronic Components
  • Electronic Modules
  • IoT and Wireless
  • Mechanical Parts and Workbench Tools
  • Motors & Drivers & Pumps & Actuators
  • DIY and Robot Kits
  • Show more
  • Home
  • Shop
  • Sale
  • 3D Printing
    • Multicolor FDM
    • FDM
    • SLA Resin
    • MJF Nylon
    • SLS Nylon
    • SLM Metal
    • Binder Jetting
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
Home Sensor Modules Biometric/ECG/EMG Sensor
Return to previous page
V 1 13
mo8vf6xc
kqz5s81p
s6ed25nk
z4c2lmxl
pd54e6vq
  • V 1 13
  • mo8vf6xc
  • kqz5s81p
  • s6ed25nk
  • z4c2lmxl
  • pd54e6vq

AS608 Optical Fingerprint Sensor Fingerprint Module

Rated 4.70 out of 5 based on 30 customer ratings
Share: Facebook Twitter Tumblr Linkedin Houzz Vk Pinterest Whatsapp
Add to wishlist
Add to compare

QUICK OVERVIEW:

  • Resolution: 500dpi
  • Supply current: <60mA
  • Supply voltage: 3.3V
  • Fingerprint image entry time: <1.0 seconds
  • Peak current: <60mA
Brand: Generic SKU: AI2923
Category: Biometric/ECG/EMG Sensor
Tags: Biometric sensor, Buy Online India, Health Sensor, Zbotic

₹782.34 (₹663.00 + GST)

Description
Additional information
Warranty
COO

AS608 Optical Fingerprint Sensor Fingerprint Module

A fingerprint algorithm extracts features from a fingerprint image and encodes them as fingerprint information. The features are used for storing, comparing, and searching fingerprints.
Fingerprint processing consists of two steps: fingerprint registration and fingerprint matching. Fingerprint matching can be either fingerprint comparison (1:1) or fingerprint search (1:N).

During fingerprint registration, two images are captured for each finger and processed twice. The resulting feature module is stored in the device.
During fingerprint matching, a fingerprint image is captured and processed, and then compared with the feature modules in the device. If it is compared with a specific module, it is called fingerprint comparison mode or 1:1 mode. If it is compared with multiple modules, it is called fingerprint search mode or 1:N mode. The device returns the matching result (pass or fail).

Low power consumption, low cost, small size, excellent performance, Professional optical technology, precise module manufacturing technics. Good image processing capabilities can successfully capture an image up to resolution 500 dpi Finger detection function.

Code For Fingerprint:

*/
#include

SoftwareSerial mySerial(2, 3); // TX/RX

Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial);

uint8_t id;

void setup()  
{
  Serial.begin(9600);
  while (!Serial);  // For Yun/Leo/Micro/Zero/...
  delay(100);
  Serial.println("nnAdafruit Fingerprint sensor enrollment");

  // set the data rate for the sensor serial port
  finger.begin(57600);
  
  if (finger.verifyPassword()) {
    Serial.println("Found fingerprint sensor!");
  } else {
    Serial.println("Did not find fingerprint sensor :(");
    while (1) { delay(1); }
  }
}

uint8_t readnumber(void) {
  uint8_t num = 0;
  
  while (num == 0) {
    while (! Serial.available());
    num = Serial.parseInt();
  }
  return num;
}

void loop()                     // run over and over again
{
  Serial.println("Ready to enroll a fingerprint!");
  Serial.println("Please type in the ID # (from 1 to 127) you want to save this finger as...");
  id = readnumber();
  if (id == 0) {// ID #0 not allowed, try again!
     return;
  }
  Serial.print("Enrolling ID #");
  Serial.println(id);
  
  while (!  getFingerprintEnroll() );
}

uint8_t getFingerprintEnroll() {

  int p = -1;
  Serial.print("Waiting for valid finger to enroll as #"); Serial.println(id);
  while (p != FINGERPRINT_OK) {
    p = finger.getImage();
    switch (p) {
    case FINGERPRINT_OK:
      Serial.println("Image taken");
      break;
    case FINGERPRINT_NOFINGER:
      break;
    case FINGERPRINT_PACKETRECIEVEERR:
      Serial.println("Communication error");
      break;
    case FINGERPRINT_IMAGEFAIL:
      Serial.println("Imaging error");
      break;
    default:
      Serial.println("Unknown error");
      break;
    }
  }

  // OK success!

  p = finger.image2Tz(1);
  switch (p) {
    case FINGERPRINT_OK:
      Serial.println("Image converted");
      break;
    case FINGERPRINT_IMAGEMESS:
      Serial.println("Image too messy");
      return p;
    case FINGERPRINT_PACKETRECIEVEERR:
      Serial.println("Communication error");
      return p;
    case FINGERPRINT_FEATUREFAIL:
      Serial.println("Could not find fingerprint features");
      return p;
    case FINGERPRINT_INVALIDIMAGE:
      Serial.println("Could not find fingerprint features");
      return p;
    default:
      Serial.println("Unknown error");
      return p;
  }
  
  Serial.println("Remove finger");
  delay(2000);
  p = 0;
  while (p != FINGERPRINT_NOFINGER) {
    p = finger.getImage();
  }
  Serial.print("ID "); Serial.println(id);
  p = -1;
  Serial.println("Place same finger again");
  while (p != FINGERPRINT_OK) {
    p = finger.getImage();
    switch (p) {
    case FINGERPRINT_OK:
      Serial.println("Image taken");
      break;
    case FINGERPRINT_NOFINGER:
      break;
    case FINGERPRINT_PACKETRECIEVEERR:
      Serial.println("Communication error");
      break;
    case FINGERPRINT_IMAGEFAIL:
      Serial.println("Imaging error");
      break;
    default:
      Serial.println("Unknown error");
      break;
    }
  }

  // OK success!

  p = finger.image2Tz(2);
  switch (p) {
    case FINGERPRINT_OK:
      Serial.println("Image converted");
      break;
    case FINGERPRINT_IMAGEMESS:
      Serial.println("Image too messy");
      return p;
    case FINGERPRINT_PACKETRECIEVEERR:
      Serial.println("Communication error");
      return p;
    case FINGERPRINT_FEATUREFAIL:
      Serial.println("Could not find fingerprint features");
      return p;
    case FINGERPRINT_INVALIDIMAGE:
      Serial.println("Could not find fingerprint features");
      return p;
    default:
      Serial.println("Unknown error");
      return p;
  }
  
  // OK converted!
  Serial.print("Creating model for #");  Serial.println(id);
  
  p = finger.createModel();
  if (p == FINGERPRINT_OK) {
    Serial.println("Prints matched!");
  } else if (p == FINGERPRINT_PACKETRECIEVEERR) {
    Serial.println("Communication error");
    return p;
  } else if (p == FINGERPRINT_ENROLLMISMATCH) {
    Serial.println("Fingerprints did not match");
    return p;
  } else {
    Serial.println("Unknown error");
    return p;
  }   
  
  Serial.print("ID "); Serial.println(id);
  p = finger.storeModel(id);
  if (p == FINGERPRINT_OK) {
    Serial.println("Stored!");
  } else if (p == FINGERPRINT_PACKETRECIEVEERR) {
    Serial.println("Communication error");
    return p;
  } else if (p == FINGERPRINT_BADLOCATION) {
    Serial.println("Could not store in that location");
    return p;
  } else if (p == FINGERPRINT_FLASHERR) {
    Serial.println("Error writing to flash");
    return p;
  } else {
    Serial.println("Unknown error");
    return p;
  }   
}

Features:

  1. Integrated image collecting and algorithm chip together, ALL-in-One.
  2. The fingerprint reader can conduct secondary development, can be embedded into a variety of end products.
  3. Low power consumption, low cost, small size, excellent performance.
  4. Resolution: 500dpi
  5. Fingerprint image entry time: <1.0 seconds
  6. Window area: 15.3×18.2MM
  7. Communication Interface: USB/UART

Package Includes:

1 x AS608 Optical Fingerprint Sensor Fingerprint Module

1 x Connecting Cable(6-pin).

Tutorial:

Tags: Biometric sensor Buy Online India Health Sensor Zbotic
Also in Biometric/ECG/EMG Sensor:
MAX30100 Pulse Oximeter Heart Rate Sensor ModuleHeart Rate Pulse Sensor ModuleWaveshare Round 2D Barcode/QR code Reader Scanner Module, With LED IndicatorWaveshare Barcode Scanner Module, 1D/2D Codes Reader
Related Articles:
Capacitor Bank Design: Filter Noise in Sensor Power Rails

Capacitor Bank Design: Filter Noise in Sensor Power Rails

Sensor circuits are only as accurate as the power rail feeding them. A noisy supply voltage corrupts ADC...

Read More →
HCSR501 PIR Sensor: Sensitivity and Time Delay Tuning

HCSR501 PIR Sensor: Sensitivity and Time Delay Tuning

Table of Contents Introduction to HC-SR501 PIR Sensor How PIR Sensors Detect Motion Hardware Overview and Pinout Sensitivity...

Read More →
Color Sensor TCS34725: Detect RGB and Hex Values with Arduino

Color Sensor TCS34725: Detect RGB and Hex Values with Arduino

The TCS34725 color sensor is one of the most popular light-to-digital converters for Arduino projects. It senses red,...

Read More →

Technical Specifications

ModelAS608
SKUAI2923
Weight0.020001 kg
AvailabilityOut of Stock

Applications & Use Cases

The AS608 Optical Fingerprint Sensor Fingerprint Module is a versatile biometric/ecg/emg sensor used across a wide range of applications including electronics projects, DIY builds, prototyping, and educational experiments.

Common use cases:

  • Integrating into a custom electronics project
  • Learning and experimenting with circuits
  • Replacing or upgrading components in existing setups

This product is ideal for electronics enthusiasts, engineers, and students.

Technical Tip: Always verify voltage and current requirements before connecting to your circuit. Check datasheets for detailed specifications and pin configurations.

Shipping & Delivery

  • Free shipping on orders above ₹999 across India
  • Dispatched within 1-3 business days
  • Expected delivery: 3-7 business days depending on location
  • Secure packaging to ensure safe transit of electronic components
Weight 0.020001 kg
15 Days Warranty

Please note that this item is only covered by a standard supplier warranty against manufacturing defects for a period of 15days from the time of delivery. It is important to understand that only manufacturing defects are covered under this warranty, and any other issues will not be considered for reimbursement or replacement. We strongly advise inspecting the product upon delivery to ensure it meets your expectations. In case of any manufacturing defects, we guarantee reimbursement or replacement.


What voids warranty:

If the product is subject to misuse, tampering, static discharge, accident, water or fire damage, use of chemicals & soldered or altered in any way.

Tags: Biometric sensor Buy Online India Health Sensor Zbotic
Also in Biometric/ECG/EMG Sensor:
MAX30100 Heart Rate Click Sensor Module (Purple)Heart Rate Pulse Sensor ModuleWaveshare Round-Shaped All-In-One Capacitive Fingerprint Sensor (D), Cortex Processor, 360° VerificationBiometric Signal Electrode Sensor
Related Articles:
Sound Pressure Sensor: Build a Clap Switch and Noise Meter

Sound Pressure Sensor: Build a Clap Switch and Noise Meter

Sound sensors open up a fascinating category of human-machine interaction. A light clap turns on a lamp. A...

Read More →
IoT Weather Station Build: Complete Multi-Sensor Project

IoT Weather Station Build: Complete Multi-Sensor Project

A personal IoT weather station is one of the most rewarding electronics projects you can build. Unlike commercial...

Read More →
INA3221 Triple-Channel Power Monitor for Multi-Rail Systems

INA3221 Triple-Channel Power Monitor for Multi-Rail Systems

Managing power across multiple voltage rails simultaneously is a daily challenge in embedded systems, single-board computers, robotics, and...

Read More →
Country Of Origin: China

Related products

In stock

Svg%3E
Piezoelectric Sensor Transducer 35mm Dia (Pack of 3)
Quick View

Piezoelectric Sensor Transducer 35mm Dia (Pack of 3)

SKU: AI0131 ₹44.25 (₹37.50 + GST) Add to cart Add to Compare

In stock

Svg%3E
Biometric Signal Electrode Sensor
Quick View

Biometric Signal Electrode Sensor

SKU: AI3013 ₹132.16 (₹112.00 + GST) Add to cart Add to Compare

In stock

nq1bgers
MAX30100 Heart Rate Click Sensor Module (Purple)
Quick View

MAX30100 Heart Rate Click Sensor Module (Purple)

SKU: AI3607 ₹142.78 (₹121.00 + GST) Add to cart Add to Compare

In stock

Svg%3E
Original DHT22 Digital Temperature and Humidity Sensor
Quick View

Original DHT22 Digital Temperature and Humidity Sensor

SKU: AI0087 ₹522.74 (₹443.00 + GST) Add to cart Add to Compare

In stock

AI0040..2
Max7219 Module 3419 - MAX7219 Dot Led Matrix Module MCU Control LED Display Module
Quick View

MAX7219 Dot Led Matrix Module MCU Control LED Display Module

SKU: AI0040 ₹185.26 (₹157.00 + GST) Add to cart Add to Compare

In stock

7kvpq3bq
Waveshare Round 2D Barcode/QR code Reader Scanner Module, With LED Indicator
Quick View

Waveshare Round 2D Barcode/QR code Reader Scanner Module, With LED Indicator

SKU: AI6680 ₹2,527.56 (₹2,142.00 + GST) Add to cart Add to Compare

In stock

IMG_5787
Mq-6 Module - MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor Module
Quick View

MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor Module

SKU: AI0105 ₹114.46 (₹97.00 + GST) Add to cart Add to Compare

Free Shipping

On orders above ₹999

COD Available

Min. order ₹250 for COD

GST Invoice

Available on all orders

1,50,000+ Orders

Delivered across India

Expert Support

Toll Free: 1800 209 0998

PCB Manufacturing

Get instant quote →

›

3D Printing Service

Upload design, get quote →

›

Product categories

  • 3D Printers and Parts
  • Batteries, Chargers and Accessories
  • Development Boards
  • DIY Learning and Robot Kits
  • Drone Parts
  • EBike parts
  • Electronic Components
  • Electronic Modules and Displays
  • IoT and Wireless
  • Mechanical Parts and Workbench Tools
  • Motors & Drivers & Pumps & Actuators
  • Sensor Modules
    • Biometric/ECG/EMG Sensor
    • Current and Voltage Sensor
    • Distance Sensor
    • Environmental Sensors
    • Flame Sensor
    • Gas and Dust Sensor
    • Hall Sensor
    • IMU, Accelerometer, Magnetometer & Gyroscope
    • LiDAR Sensor
    • Light/color Sensor
    • Line Sensor
    • Load / Pressure / Force / Flex Sensor
    • Other Sensors
    • PIR / IR and Optical Sensor
    • Proximity Sensor
    • Radar Sensor
    • RFID card, Tags & Reader
    • Rotary Encoder
    • Sensor Kits
    • Sound Sensor
    • Temperature & Humidity Sensor
    • Thermoelectric Peltier Elements
    • Ultrasonic Sensors and Modules
    • Vibration/Tilt Sensor and Modules
    • Water TDS, pH, Flow, Level and Pressure Sensor
Facebook Twitter Instagram Pinterest Linkedin Youtube

Get the latest deals and more.

Download on Google Play Download on the App Store

Call us: 020 69134444 / 1800 209 0998

Monday - Saturday 09:30 AM - 06:00 PM
For Customer Support Email: [email protected]
WhatsApp: 020 6913 4444

  • My Account

    • Cart

    • Wishlist

    • Checkout

    • My Orders

    • Track Order

    • My Account

  • Information

    • FAQs

    • Blogs

    • Career

    • About Us

    • Contact Us

    • Payment Options

  • Policies

    • Privacy Policy

    • Terms & Conditions

    • GST Input Tax Credit

    • Shipping Return Policy

    • E-Waste Collection Points

    • Our Sitemap

© Zbotic.in is registered trademark of Moxie Supply Pvt Ltd – All Rights Reserved
Login
Use Phone Number
Use Email Address
Not a member yet? Register Now
Reset Password
Use Phone Number
Use Email Address
Register
Already a member? Login Now
Chat with us