Zbotic Logo Zbotic Logo
  • Home
  • Shop
  • Sale
  • 3D Print Service
  • 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 Print Service
  • 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 Print Service
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
Home Sensor Modules Biometric/ECG/EMG Sensor
Return to previous page
AS608 Optical Fingerprint Sensor Fingerprint Module
mo8vf6xc
kqz5s81p
s6ed25nk
z4c2lmxl
pd54e6vq
  • AS608 Optical Fingerprint Sensor Fingerprint Module
  • 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

₹813.02 (₹689.00 + GST)

Purchase this product now and earn 14 Zbotic Points!
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 Heart Rate Click Sensor Module (Purple)KY-039 Finger Detection Heartbeat Measuring Sensor ModuleHeart Rate Pulse Sensor ModuleECG Electrode Biometric/ECG/EMG Sensor
Related Articles:
IR Proximity Sensor Calibration: Distance vs Voltage Curve

IR Proximity Sensor Calibration: Distance vs Voltage Curve

Infrared proximity sensors like the Sharp GP2Y series are widely used in robotics, obstacle avoidance, and automation projects...

Read More →
GPS Accuracy Comparison: NEO-6M vs NEO-M8N vs NEO-M9N

GPS Accuracy Comparison: NEO-6M vs NEO-M8N vs NEO-M9N

If you have ever shopped for a GPS module for your drone, robot, vehicle tracker, or IoT asset...

Read More →
DS18B20 Waterproof Sensor: Liquid Temperature Measurement

DS18B20 Waterproof Sensor: Liquid Temperature Measurement

The DS18B20 waterproof temperature sensor is one of the most popular and widely used components in the Arduino...

Read More →

Technical Specifications

ModelAS608
SKUAI2923
Weight0.02 kg
AvailabilityIn 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.02 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:
R307S Optical Fingerprint Reader Sensor ModuleKY-039 Finger Detection Heartbeat Measuring Sensor ModuleMAX30100 Pulse Oximeter Heart Rate Sensor ModuleMAX30100 Heart Rate Click Sensor Module (Purple)
Related Articles:
Color Sensor TCS3200 vs TCS34725: Complete Comparison Guide

Color Sensor TCS3200 vs TCS34725: Complete Comparison Guide

Table of Contents Introduction What Is a Color Sensor? TCS3200: Overview & Specs TCS34725: Overview & Specs Side-by-Side...

Read More →
HX711 Load Cell Interface: Weight Scale Project Step-by-Step

HX711 Load Cell Interface: Weight Scale Project Step-by-Step

Table of Contents What Is the HX711 and How Does It Work? Load Cell Basics: Strain Gauges and...

Read More →
Best Soil Moisture Sensors for Agriculture & Gardening

Best Soil Moisture Sensors for Agriculture & Gardening

Monitoring soil moisture is the single most impactful thing you can do for a smart garden or precision...

Read More →
Country Of Origin: China

Related products

In stock

Svg%3E
3V DC Toy Miniature Motor for DIY (Pack of 5)
Quick View

3V DC Toy Miniature Motor for DIY (Pack of 5)

SKU: AI0122 ₹86.14 (₹73.00 + GST) Add to cart Add to Compare

In stock

MAX30100 Pulse oximeter heart rate sensor module
Max30100 Module - MAX30100 Reflective Optical Sensor Module for Arduino
Quick View

MAX30100 Pulse Oximeter Heart Rate Sensor Module

SKU: AI0090 ₹100.30 (₹85.00 + GST) Add to cart Add to Compare

In stock

Rotating Propeller 1045 1045R For Quadrotor -Zbotic3
Counter Propeller - Counter Rotating Propeller 1045/1045R For Quadrotor-(Black)
Quick View

Counter Rotating Propeller 1045/1045R For Quadrotor-(Black)

SKU: AI0052 ₹72.45 (₹69.00 + GST) Add to cart Add to Compare

In stock

DS1307 RTC I2C Module AT24C32 without Battery
Real Module - DS1307 RTC I2C Module AT24C32 without Battery
Quick View

DS1307 RTC I2C Module AT24C32 without Battery

SKU: AI0106 ₹44.60 (₹37.80 + GST) Add to cart Add to Compare

In stock

Svg%3E
Uno R3 Beginners Kit for Arduino Uno- SECONDRY KIT
Quick View

Uno R3 Beginners Kit for Arduino Uno- SECONDRY KIT

SKU: AI0060 ₹1,656.72 (₹1,404.00 + GST) Add to cart Add to Compare

In stock

AI0087-2-removebg-preview
Dht22 Sensor 3850 - AI0087-removebg-preview
Quick View

Original DHT22 Digital Temperature and Humidity Sensor

SKU: AI0087 ₹372.88 (₹316.00 + GST) Add to cart Add to Compare

In stock

8nc951wd
ECG Electrode
Quick View

ECG Electrode Biometric/ECG/EMG Sensor

SKU: AI3013 ₹108.56 (₹92.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 Technical Supports Email: [email protected]
For Sales / Enquiries Email: [email protected]

  • 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