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 Pulse Oximeter Heart Rate Sensor ModuleWaveshare Round-Shaped All-In-One Capacitive Fingerprint Sensor (D), Cortex Processor, 360° VerificationMAX30100 Heart Rate Click Sensor Module (Purple)Heart Rate Pulse Sensor Module
Related Articles:
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 →
Atlas Scientific Sensors: Professional pH, EC and ORP Probes

Atlas Scientific Sensors: Professional pH, EC and ORP Probes

When a standard consumer pH sensor module simply is not accurate enough, professional projects and commercial systems turn...

Read More →
Wind Speed and Direction Sensor: Anemometer DIY Arduino Build

Wind Speed and Direction Sensor: Anemometer DIY Arduino Build

Whether you're building a home weather station, monitoring wind conditions for a rooftop solar installation, or creating an...

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:
Waveshare Round-Shaped All-In-One Capacitive Fingerprint Sensor (D), Cortex Processor, 360° VerificationKY-039 Finger Detection Heartbeat Measuring Sensor ModuleR307S Optical Fingerprint Reader Sensor ModuleMAX30100 Pulse Oximeter Heart Rate Sensor Module
Related Articles:
Sensor Fusion: Combine Accelerometer Gyroscope with Kalman Filter

Sensor Fusion: Combine Accelerometer Gyroscope with Kalman Filter

If you have ever built a drone, a self-balancing robot, or a robotic arm, you know the frustration:...

Read More →
Rain Sensor Module: Detection, Calibration and Projects

Rain Sensor Module: Detection, Calibration and Projects

Monsoon seasons across India bring months of unpredictable rainfall — and for electronics makers, that rainfall is an...

Read More →
How to Interface BMP280 Pressure Sensor with Arduino

How to Interface BMP280 Pressure Sensor with Arduino

The BMP280 is a high-precision barometric pressure and temperature sensor from Bosch Sensortec that has become a staple...

Read More →
Country Of Origin: China

Related products

In stock

ULN2003 Driver Board Stepper Motor
ULN2003 Stepper Motor Driver Module
Quick View

ULN2003 Stepper Motor Driver Board

SKU: AI0028 ₹38.00 (₹32.20 + 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

In stock

vlz6c2ox
Arduino Uno R3 CH340G ATMega328PB Development Board Compatible with Arduino
Quick View

Arduino Uno R3 CH340G ATMega328PB Development Board Compatible with Arduino

SKU: AI0002 ₹202.96 (₹172.00 + 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

cj68elsc
ESP WROOM 32 Wi-Fi Bluetooth Development Board -30 pin
Quick View

ESP WROOM 32 Wi-Fi Bluetooth Development Board -30 pin

SKU: AI0038 ₹410.64 (₹348.00 + GST) Add to cart Add to Compare

In stock

q7ezjc44
Ecg Ekg Emg Wire - ECG/EKG/EMG Wire
Quick View

ECG/EKG/EMG Wire

SKU: AI3608 ₹250.16 (₹212.00 + GST) Add to cart Add to Compare

In stock

IMG_4744
Ch340 Board - Nano CH340 Chip Board Compatible with Arduino (Soldered)
Quick View

Nano CH340 Chip Board Compatible with Arduino (Soldered)

SKU: AI0030 ₹283.20 (₹240.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