Fingerprint Identification Module - AJ155 - User Manual & Operation Guide

Size: px
Start display at page:

Download "Fingerprint Identification Module - AJ155 - User Manual & Operation Guide"

Transcription

1 Fingerprint Identification Module - AJ155 - User Manual & Operation Guide YANEN Technology. Page: 1/24

2 Table of Contents 1. INTRODUCTION OVERVIEW SPECIFICATION FEATURE HARDWARE INTERFACE PROTOCOL UART Format Command Set Register Fingerprint Compare Fingerprint Query Fingerprint Image Information Scan Fingerprint Image Check Registered Fingerprint Number Switch Baudrate Init Fingerprint Image Get Next Fingerprint Image EXAMPLE LED LIGHT DISPLAY INSTRUCTIONS CONNECTION MODE STANDALONE MODE OPERATION EXAMPLE CONNECTION TO ARDUINO Hardware Installation Arduino Source Code Arduino Command CONNECTION TO RASPBERRY PI Hardware Installation Raspberry Pi Source Code Raspberry Pi Command CONNECTION TO PC SIDE Hardware installation Tool installation Tool operation instruction Command Set...22 YANEN Technology. Page: 2/24

3 1. Introduction This document is the operation manual of the "Fingerprint Evaluation Board (AJ155)". The following instructions are called AJ155. The contents of the document contain the AJ155 introduction, specifications, communication protocols, operating instructions and usage examples in different environments. The operating examples in this manual also provide test tools and source code. The AJ155 is a high-performance fingerprint identification module that provides product developers with the need to develop fingerprint identification requirements (application areas such as fingerprint locks, safes, industrial controls, licensing, finance, etc.). In addition, the AJ155 can be used in development kits such as Arduino, Raspberry Pi, FPGA, ARM, pcduino, etc. in microprocessor control boards with UART (Serial Port) interface. This document provides the user with a complete description of the steps to easily complete the operation Overview AJ155 is a fingerprint identification sensor. The sensor consists of high-speed processor, high-performance fingerprint algorithm and FLASH chip. The sensor has stable performance and simple structure. The functions include fingerprint comparison, image scanning transmission, search, fingerprint storage and system unique internal code protection mechanism. The fingerprint matching display program can register two fingerprints for comparison, and the comparison speed is fast and the correct rate is high, which can provide developers to develop various applications. The system-specific XOM mechanism protects the code from "execution" and cannot be "read" to protect important intellectual property code. Functional characteristics: Independently complete fingerprint acquisition, fingerprint storage, fingerprint comparison (1:1) and fingerprint search (1: N) functions. Small size: The product size is small, and the built-in fingerprint algorithm chip board is convenient for installation. Low power consumption: Low power consumption and suitable for most applications. Simple application development: Developers can develop fingerprint-related products based on control instructions without the need for professional fingerprint identification knowledge. AJ155 Fingerprint Sensor YANEN Technology. Page: 3/24

4 1.2. Specification EVB Size:65x19x1(mm) MCU:Nuvoton M2351, ARM-M0 Plus, 32-bit, 64 MHz Sensor Module:A172 FAR:<0.001%(Security Level, 3) Active area:176*176pixels FRR:<0.1%(Security Level, 3) Resolution:508 Dpi Operating environment:-20 to +60 / <RH 90% Sample rate:40 frames/s Storage environment:-40 to +70 / <RH 90% Matching mode:1:1, 1:N Matching time:< 0.3s Enrollment time:< 0.2s 1.3. Feature USB 2.0 full speed device LED and push buttons SD card socket Fingerprint sensor Crypto acceleraor Emulating drivers - HID protocol - Storage class - Biometric class Communication interface:uart Power:UART 3.3V or USB 1.4. Hardware Interface The communication interface of AJ155 module is UART. The AJ155 hardware description and wiring diagram are shown below. In the figure, the oval red frame is the USB interface, the square red frame is the fingerprint sensor, the round red frame is the reset button, the rectangle red frame is the UART interface, and the UART pin is from left to right for VCC (3.3V), GND, RX, and TX are defined as follows. When the AJ155 module communicates with user device, definition of pin is as follows: Name Type Description VCC In Power input (3.3V) GND -- Signal ground. Connected to power ground RX In Data input. TX Out Data output. YANEN Technology. Page: 4/24

5 Vcc GND RX TX AJ155 hardware description and wiring diagram 2. Protocol The communication protocol between the AJ155 and the connected control board. The control board (such as Arduino ) is the master (Master) and the AJ155 is the slave (Slave). Slave are powered by UART and USB. Slave(AJ155) Power Master (Arduino/Raspberry/PC) MA UART/USB The channel used by this communication protocol is UART. The initial transfer rate of the UART is 9600, N, 8, and 1. This setting can be changed by command UART 9600/19200/38400/57600/ N,8,1(No parity, 8-bit data, 1-bit Stop). YANEN Technology. Page: 5/24

6 Format The protocol format is done in string form and defines the format of the instruction. Basically, the command string for the Master is given to the slave. The command string is encapsulated with <C> and </C>, and then all the strings from the Slave are scanned and the response string is parsed therefrom. The Slave response string is as follows: Command string OK: NG: FINISHED: PASS: FAIL: OK: INFO: Response string <R>OK</R> <R>NG</R> <R>FINISHED</R> <R>PASS</R> or <R>PASS_0</R>, <R>PASS_1</R> <R>FAIL</R> <R>OK</R> <R>W=(width),H=(height)</R>, (width) and (height) are the width and length of the fingerprint image, and Slave responds according to the actual value. In addition, for fingerprint image data, Slave is especially transmitted back and forth by a plurality of binary bytes (bytes) encapsulated by <I> and </I>. The Master must wait for the previous command to complete before the next command string can be given to the Slave Command Set Register Fingerprint Command string:<c>registerfingerprint</c> After the Master commands the Slave to complete the fingerprint registration, the previously registered data will be overwritten. After the Master commands the Slave to complete the fingerprint registration, the previously registered data will be overwritten. A total of 2 fingerprints will be registered, and each fingerprint will be pressed 3 times to register. (After registering the fingerprint press, see the green light is on, the finger can move away from the pressing area) The Slave response is as follows: 1> Return OK_string first. 2> Slave will give an indication of pressing the fingerprint, and the user will press according to the instruction. 3> Return FINISHED_ string Compare Fingerprint Command string:<c>comparefingerpring</c> Master commands Slave to do fingerprint matching. If there are no registered fingerprints available for comparison, Slave will return the NG_ string, otherwise it will return to the YANEN Technology. Page: 6/24

7 OK_ string as follows: 1> Return OK_string first. 2> Slave will give an indication of pressing the fingerprint, and the user will press according to the instruction. 3> After the comparison, respond to the FAIL_ string (match failure) or PASS_ string (match success), Also shows the details as follows: <R>PASS_0</R> <= Successful comparison with the first fingerprint (record starts from 0). <R>PASS_1</R> <= Successfully compared with the second fingerprint Query Fingerprint Image Information Command string:<c>fpimageinformation</c> The Master asks for fingerprint image information, and the Slave responds to the INFO_ string, for example: <R>W=300, H=600</R> The fingerprint images are 8-bit grayscale images. This response indicates that the fingerprint image width is 300 pixels and the height is 600 pixels Scan Fingerprint Image Command string:<c>scanfpimage</c> The Master sends a command to the Slave to scan the fingerprint image and upload it to the Master. The steps are as follows: 1> Return OK_string first. 2> Slave transmits an indication of the fingerprint pressing action, and the user presses according to the instruction, and the step is ended after the valid fingerprint is scanned. 3> All image data uploaded to the Master is encapsulated by <I> and </I>. In the current version of the fingerprint module image, the length and width of the image size are 176 pixels, so there will be 176*176=30976 bytes of image data between <I> and </I> Check Registered Fingerprint Number Command string:<c>checkregisteredno</c> Slave responds with <R> and </R> to encapsulate the number, for example: <R>0<R> Indicates no registration data. <R>2<R> Indicates that there are 2 registration data. YANEN Technology. Page: 7/24

8 Switch Baudrate Command string:<c>baudrate=(baudrate)</c> From the Master command to the Slave, change the Baudrate transmission rate, the current system supports the following speeds: <C>Baudrate=9600</C> Set the transmission rate to 9600, N, 8, 1 <C>Baudrate=19200</C> Set the transmission rate to 19200, N, 8, 1 <C>Baudrate=38400</C> Set the transmission rate to 38400, N, 8, 1 <C>Baudrate=57600</C> Set the transmission rate to 57600, N, 8, 1 <C>Baudrate=115200</C> Set the transmission rate to , N, 8, 1 Note: If the Master setting is not within the supported rate, the Slave will have no response. For example, if the Master is <C>Baudrate=50000</C>, the Slave will have no response. Within the baudrate speed supported by the system, when the Slave is changed to baudrate, the Slave will respond to the OK_ string and execute at the changed rate until it is changed again. Therefore, the Master must confirm the supported speed before the modification. Otherwise, the Master will not be able to communicate with Slave after the change. After changing the baudrate, Slave will reset and restart at the new rate Init Fingerprint Image Command string:<c>initfpimage</c> Master commands Slave to scan the fingerprint image. If Slave does not support this function, it will return to the NG_ string, otherwise it will respond according to the following steps: 1> Return OK_string first. 2> Slave transmits an indication of the fingerprint pressing action, and the user presses according to the instruction, and the step is ended after the valid fingerprint is scanned. 3> Return FINISHED_ string Get Next Fingerprint Image Command string:<c>getnextfpimage</c> This command must be used in conjunction with the scan fingerprint image command. The Master commands the slave to upload the next fingerprint image to the Master. One segment is a 512-bit tuple. If less than 512 bytes, the remaining data is uploaded. If Slave does not support this function or if there is no data to return, it will return to the NG_ string, otherwise it will respond according to the following steps: 1> Return OK_string first. 2> Slave encapsulates the image data of each segment with <I> and </I> and uploads it to the Master. YANEN Technology. Page: 8/24

9 2.2. Example <UART> Check Registered Fingerprint Number Master <C>CheckRegisteredNo</C> Slave // Slave responds to the current number of registrations. Master <R>0<R> Slave Register Fingerprint Master <C>RegisterFingerprint</C> Slave // Slave responds to the OK_ string. Master <R>OK<R> Slave // Slave returns the registration action indication to the user, and the Master displays the indication to the user. // After the registration is successful, Slave responds to the FINISHED_ string. Master <R>FINISHED<R> Slave Compare Fingerprint Master <C>CompareFingerprint</C> Slave // Slave responds to the OK_ string. Master <R>OK</R> Slave // Slave returns the fingerprint indication to the user, and the Master displays the indication to the user. // After the comparison is completed, Slave responds to the PASS_string or FAIL_ string. Master <R>FAIL</R> Slave or Master <R>PASS</R> Slave or Master <R>PASS_0</R> Slave or Master <R>PASS_1</R> Slave Query Fingerprint Image Information Master <C>FpImageInformation</C> Slave // Slave responds to fingerprint image data. Master <R>W=176, H=176</R> Slave This response indicates that the fingerprint image has a width of 176 pixels and a height of 176 pixels. The fingerprint image size is 176x176 = bytes. Scan Fingerprint Image Master <C>ScanFpImage</C> Slave // Slave responds to the OK_ string. Master <R>OK</R> Slave // Slave returns the fingerprint indication to the user, and the Master displays the indication to the user. // When the valid fingerprint image is scanned successfully, Slave returns the fingerprint image. YANEN Technology. Page: 9/24

10 Master <I> (Fingerprint image data total bytes) </I> Slave Init Fingerprint Image Master <C>InitFpImage</C> Slave // Slave responds to the OK_ string. Master <R>OK</R> Slave // Slave returns the fingerprint indication to the user, and the Master displays the indication to the user. // After the valid fingerprint image is scanned successfully, Slave responds to the FINISHED_ string. Master <R>FINISHED<R> Slave // Upload the next segment fingerprint image data command. // first time Master <C>GetNextFpImage</C> Slave // Slave responds to the OK_ string. Master <R>OK</R> Slave //Slave returns fingerprint image. (Byte 0 ~ Byte 511, a total of 512 bytes) Master <I> (fingerprint image data total 512 bytes) </I> Slave // Upload the next segment fingerprint image data command. // second time Master <C>GetNextFpImage</C> Slave // Slave responds to the OK_ string. Master <R>OK</R> Slave //Slave returns the fingerprint image. (Byte 512 ~ Byte 1023, a total of 512 bytes) Master <I> (fingerprint image data total 512 bytes) </I> Slave // Upload the next segment fingerprint image data command. // 60th Master <C>GetNextFpImage</C> Slave // Slave responds to the OK_ string. Master <R>OK</R> Slave //Slave returns the fingerprint image. (Byte ~ Byte 30719, a total of 512 bytes) Master <I> (fingerprint image data total 512 bytes) </I> Slave // Upload the next segment fingerprint image data command. // 61th Master <C>GetNextFpImage</C> Slave // Slave responds to the OK_ string. Master <R>OK</R> Slave //Slave returns the fingerprint image. (Byte ~ Byte 30975, a total of 256 bytes) Master <I> (256 bytes of fingerprint image data) </I> Slave // Upload the next segment fingerprint image data command. // 62th Master <C>GetNextFpImage</C> Slave //Slave responds to the NG_ string because no remaining image data can be transmitted unless the scan fingerprint image command is executed again. Master <R>NG</R> Slave YANEN Technology. Page: 10/24

11 // Set transfer rate command. Master <C>Baudrate=115200</C> Slave // Slave responds to the OK_ string. Master <R>OK</R> Slave Slave will operate with the , N, 8, and 1 setting. At this point, the Master must confirm that it can support this rate. 3. Led light display instructions The LED light of the AJ155 shows the current working status. After the AJ155 is powered or reset, if the red LED and the green LED flash in turn, it means that the operation is in the connection mode. If the red LED or the green LED is blinking alone, it means that the work is in the standalone mode Connection mode After power supply or reset, if the red LED and the green LED flash in turn, it means that it is receiving the command status, and the master (Arduino or Raspberry PI) can command it to perform related functions. The LED light display shows the following. The red and green LEDs flash in turn: Indicates the status of the received command and waits for the command from the master. The red LED and the green LED are ON (light) at the same time: In the reminder state, it will enter the registration state after two or three seconds. The red LED flashes: In the registration state, waiting for the fingerprint to press to register, if you register two fingerprints, each fingerprint needs to be pressed 3 times. After each successful pressing of the fingerprint, the green LED will light for two or three seconds. The green LED flashes: In the input fingerprint state, wait for the fingerprint to press to scan the fingerprint image to compare with the registered fingerprint or upload the fingerprint image. If the fingerprint is compared, the green LED is on for two or three seconds when the comparison is successful, and the red LED is on for two or three seconds when the comparison fails. If the fingerprint image is uploaded, the red LED and the green LED alternately flash twice during image uploading. The red LED and the green LED flash twice in turn: Indicates the fingerprint image upload status. YANEN Technology. Page: 11/24

12 3.2. Standalone mode After power or reset, if the red LED or the green LED is flashing alone, it means that it is working in standalone mode. The LED lights are described as follows. The red LED and the green LED are ON (light) at the same time: In the reminder state, it will enter the registration state after two or three seconds. The red LED flashes: In the registration state, waiting for the fingerprint to press to register, if you register two fingerprints, each fingerprint needs to be pressed 3 times. After each successful pressing of the fingerprint, the green LED will light for two or three seconds. The green LED flashes: In the comparison state, waiting for the fingerprint to press and compare with the registered fingerprint. If the comparison is successful, the green LED is on for two or three seconds, and if the comparison fails, the red LED is on for two or three seconds. If the continuous comparison fails 3 times, it will enter the reminder state. 4. Operation Example Example of connection test environment in Arduino, Raspberry Pi and PC as follow Connection to Arduino Example operation based on Arduino UNO Hardware Installation The cable line connection between AJ155 and Arduino UNO is as follows. YANEN Technology. Page: 12/24

13 Arduino AJ155 Cable color: Red 3.3V Vcc Cable color: Black GND GND Cable color: Blue GPIO10 RX Cable color: Green GPIO9 TX Arduino Source Code The source code please refer to Fingerprint_Demo.ino file Arduino Command After executing Fingerprint_Demo.ino in the Arduino IDE, the following items will appear on the screen. ================================== 1. Register Fingerprint 2. Compare Fingerprint 3. Query Fingerprint Image Information 4. Scan Fingerprint Image 5. Check Registered Fingerprint Number ================================== 1) Register Fingerprint: Register fingerprint (enter number 1), the user must register two fingerprints in the fingerprint sensing area, and each fingerprint registration must be pressed 3 times. (When each press is successful, the light will turn green.). After successful execution, the response is as follows: YANEN Technology. Page: 13/24

14 2) Compare Fingerprint: Register fingerprint (enter number 2), When the user presses the fingerprint in the fingerprint sensing area, the matching error or the correct message will be displayed. After successful execution, the response is as follows: YANEN Technology. Page: 14/24

15 Comparison error (error fingerprint) <R>OK</R> Please input fingerprint to compare. Unmatched! <R>FAIL</R> or Correct (correct fingerprint) <R>OK</R> Please input fingerprint to compare. Matched! <R>PASS</R> 3) Query Fingerprint Image Information: Register fingerprint (enter number 3),,After successful execution, the response is as follows: 4) Scan Fingerprint Image: Register fingerprint (enter number 4), The user must press the fingerprint in the fingerprint sensing area After successful execution, the response is as follows. YANEN Technology. Page: 15/24

16 (Note: Most of the built-in SRAM in Arduino is less than Bits (30KBytes), so all image data cannot be displayed. Users should confirm the hardware specifications used.) 5) Check Registered Fingerprint Number: Register fingerprint (enter number 5), Slave responds with <R> and </R> to encapsulate the number, for example: <R>0<R> Indicates no registration data. <R>2<R> Indicates that there are 2 registration data. YANEN Technology. Page: 16/24

17 4.2. Connection to Raspberry Pi Example operation based on Raspberry Pi 3 B Hardware Installation The cable line connection between AJ155 and Raspberry Pi is as follows. Raspberry Pi AJ155 Cable color: Red 3.3V Vcc Cable color: Black GND GND Cable color: Blue GPIO14 RX Cable color: Green GPIO15 TX Raspberry Pi Source Code Test version: Python The source code please refer to Fingerprint_Demo.py file Raspberry Pi Command After executing Fingerprint_Demo.py in the Python environment, the following items will appear on the screen. ================= 1. Register Fingerprint 2. Compare Fingerprint 3. Query Fingerprint Image Information YANEN Technology. Page: 17/24

18 4. Scan Fingerprint Image 5. Check Registered Fingerprint Number 0. End Please enter the function code: ================= 1) Register Fingerprint: Register fingerprint (enter number 1), the user must register two fingerprints in the fingerprint sensing area, and each fingerprint registration must be pressed 3 times. (When each press is successful, the light will turn green.). After successful execution, the response is as follows: <R>OK</R> Fingerprint registration state. Input fingerprint #1 for capture #1. Move finger away from sensor. Input fingerprint #1 for capture #2. Move finger away from sensor. Input fingerprint #1 for capture #3. Move finger away from sensor. Input fingerprint #2 for capture #1. Move finger away from sensor. Input fingerprint #2 for capture #2. Move finger away from sensor. Input fingerprint #2 for capture #3. Move finger away from sensor. <R>FINISHED</R> Registration is complete 2) Compare Fingerprint: Register fingerprint (enter number 2), When the user presses the fingerprint in the fingerprint sensing area, the matching error or the correct message will be displayed. After successful execution, the response is as follows: Comparison error (error fingerprint) <R>OK</R> Please input fingerprint to compare. Unmatched! <R>FAIL</R> or Correct (correct fingerprint) <R>OK</R> Please input fingerprint to compare. YANEN Technology. Page: 18/24

19 Matched! <R>PASS</R> 3) Query Fingerprint Image Information: Register fingerprint (enter number 3),,After successful execution, the response is as follows: <R>W=176, H=176</R> 4) Scan Fingerprint Image: Register fingerprint (enter number 4), The user must press the fingerprint in the fingerprint sensing area After successful execution, the response is as follows. Please input fingerprint to scan. Receiving data Total Bytes=30983 Data reception completed Please enter the storage path and file name, such as /home/pi/finger/image1.pgm, and the fingerprint image will be stored in the specified path. 5) Check Registered Fingerprint Number: Register fingerprint (enter number 5), Slave responds with <R> and </R> to encapsulate the number, for example: <R>0<R> Indicates no registration data. <R>2<R> Indicates that there are 2 registration data Connection to PC side Note: In this test case, the user needs to have a USB to UART (or USB to TTL) line Hardware installation Connect the USB to UART (or USB to TTL) cable to the AJ155 and PC. When the USB to UART cable is connected to the AJ155, the TX/RX pin of the AJ155 needs to be exchanged. AJ155 PC side (USB to UART line) Description VCC (3.3V) VCC (3.3V) Powered by USB. TX RX Exchange docking RX TX Exchange docking GND GND -- After power supply, the AJ155 LED will flash in turn. For the LED display in the connected mode, please refer to the section: Led light display instructions. YANEN Technology. Page: 19/24

20 Tool installation The executable file name is BNCom.exe Tool operation instruction First confirm that the hardware connection is OK and the power is supplied. The red LED and the green LED will flash in turn, indicating that the command status is being received. At this time, the BNCom is started, and the command can be executed by the Master (BNCom) to perform related functions. (If other software has occupied the COM port, you must first close the software.) 1) COM port Setting When the USB to UART cable is connected to the PC, Windows will generate a virtual COM port. Please make sure to select the COM port, otherwise the communication with the AJ155 will not work properly. 2) Baudrate Setting YANEN Technology. Page: 20/24

21 This is the speed of setting BNCom. The baudrate of BNCom and AJ155 must be the same, otherwise it will not be able to communicate. The AJ155 default value is 9600, but may change to other values after the command is changed, so you may have to test the current baudrate first. You can select 9600, N, 8, 1 and then press the reset button to check if you can see the following message. If you set 9600 and can't see the correct message, you can switch to other speeds one by one, and then press the reset button of AJ155 until you can see the boot message correctly. At the bottom left of the screen, you can see the currently set speed. At the bottom right, you can see that the currently set COM port display setting is OK. 3) Command execution YANEN Technology. Page: 21/24

22 Select the command to execute. When the selected command is executed, if you want to execute the next command again, you must wait for the previous command to end Command Set // Command string:fpimageinformation Query Fingerprint Image Information: Currently, it will respond to <R>W=176, H=176</R>, indicating that the fingerprint image size is an 8-bit grayscale image and its image width is 176 pixels, and the image height is also 176 pixels. // Command string:checkregisteredno Check Registered Fingerprint Number: Currently, it will respond to <R>0</R>, <R>1</R> or <R>2</R>, indicating that the number of fingerprints that have been registered is 0, 1, or 2. // Command string:registerfingerprint Register fingerprint: If there is already a registered fingerprint, it will be cleared first. In total, the user will register 2 fingerprints in succession. Each fingerprint must be pressed 3 times. Please follow the message displayed on the screen. // Command string:comparefingerprint Compare Fingerprint: Compare with the registered fingerprint. If there is no registered fingerprint, AJ155 will respond to <R>NG</R>. If there is already registered fingerprint, it will respond to pressing the fingerprint message. Please press the fingerprint according to the instructions. If the comparison fails, it will respond to <R>FAIL</R>. If the comparison is successful, it will respond as follows: <R>PASS_0</R> Indicates that the comparison with the first registered fingerprint is successful. or <R>PASS_1</R> Indicates that the comparison with the second registered fingerprint is successful. YANEN Technology. Page: 22/24

23 // Command string:scanimage Scan fingerprint image: Please press the fingerprint according to the instructions. After the test is successful, the image will be transmitted to the PC. During the transmission, the red and green LEDs will flash twice. After the image upload is completed, you will see the following screen: The uploaded fingerprint image will be stored in the same data as BNCom. The file name is fixed to FpImage.pgm. You can view the fingerprint by using the software (CxImage/InfraView, etc.) that can view the format. Note:When the red and green lights on the AJ155 board flash once, but the upload end screen cannot be displayed, the reason is that the AJ155 will upload the image data according to the set speed (baudrate), and the USB to UART used (or USB to TTL) line will lose data due to too fast speed, please reduce the speed and then scan the image. For example, you can execute the BPS 9600 command, and then reduce the baudrate speed to 9600, and then execute the ScanImage command. YANEN Technology. Page: 23/24

24 FpImage.pgm uses the CxImage software to open the file as above. BPS 9600 BPS BPS BPS BPS The above BPS commands are used to change the baudrate speed of the AJ155. After the AJ155 responds to <R>OK</R>, it will immediately switch to the new baudrate speed. At this time, be sure to set the BNBCom baudrate speed to the same value. Otherwise, Communication with the AJ155 will not be successful due to the speed of the two sides. YANEN Technology. Page: 24/24

NITGEN FIM5360. Datasheet FIM5360. Version Supported Firmware Version: 1.11 or above

NITGEN FIM5360. Datasheet FIM5360. Version Supported Firmware Version: 1.11 or above NITGEN FIM5360 Stand-Alone Fingerprint Identification Device with Built-in CPU Datasheet Supported Firmware Version: 1.11 or above Version 1.04 NITGEN Page: 1 Copyright 2011 NITGEN Co., Ltd. ALL RIGHTS

More information

NITGEN FIM40 Series. Datasheet FIM40N. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU

NITGEN FIM40 Series. Datasheet FIM40N. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU NITGEN FIM40 Series Stand-Alone Fingerprint Identification Device with Built-in CPU Datasheet Version 1.01 NITGEN Page: 1 Copyright 2011 NITGEN Co., Ltd. ALL RIGHTS RESERVED Serial Number: Specifications

More information

Innovati s Bluetooth 100M Universal Wireless Bluetooth Module

Innovati s Bluetooth 100M Universal Wireless Bluetooth Module Innovati s Bluetooth 100M Universal Wireless Bluetooth Module Bluetooth 100M module is a simple to use Bluetooth module, command control through a simple UART Tx and Rx which are connected to other Bluetooth

More information

Pmod ESP32 Reference Manual

Pmod ESP32 Reference Manual Pmod ESP32 Reference Manual The Digilent Pmod ESP32 features a radio with support for 802.11 b/g/n Wifi and dualmode Bluetooth. This module is perfect for connecting your FPGA or microcontroller projects

More information

8:1 Serial Port Expander

8:1 Serial Port Expander 8:1 Serial Port Expander V 1.3 This is an evolving document check back for updates. Features Expand a single UART (RX / TX) serial port into 8 additional serial ports On-board LEDs indicate which channel

More information

Grove - Fingerprint Sensor

Grove - Fingerprint Sensor Grove - Fingerprint Sensor The Finger Print Sensor is one optical fingerprint sensor which will make fingerprint detection and verification adding super simple.there's a high powered DSP chip AS601 that

More information

NITGEN FIM50 Series. Datasheet FIM50N. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU

NITGEN FIM50 Series. Datasheet FIM50N. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU NITGEN FIM50 Series Stand-Alone Fingerprint Identification Device with Built-in CPU Datasheet Version 1.00 NITGEN Page: 1 Copyright 2010 NITGEN Co., Ltd. ALL RIGHTS RESERVED Serial Number: Specifications

More information

NITGEN FIM5360. Datasheet FIM5360. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU

NITGEN FIM5360. Datasheet FIM5360. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU NITGEN FIM5360 Stand-Alone Fingerprint Identification Device with Built-in CPU Datasheet Version 1.00 NITGEN Page: 1 Copyright 2010 NITGEN Co., Ltd. ALL RIGHTS RESERVED Serial Number: Specifications can

More information

Capacitive Fingerprint Reader User Manual

Capacitive Fingerprint Reader User Manual OVERVIEW Capacitive Fingerprint Reader User Manual The Capacitive Fingerprint Reader is a standard fingerprinting module designed for secondary development, allows fast and stable fingerprint verification.

More information

Adafruit Optical Fingerprint Sensor

Adafruit Optical Fingerprint Sensor Adafruit Optical Fingerprint Sensor Created by lady ada Last updated on 2017-11-27 12:27:09 AM UTC Guide Contents Guide Contents Overview Enrolling vs. Searching Enrolling New Users with Windows Searching

More information

Wireless-Tag WT51822-S4AT

Wireless-Tag WT51822-S4AT Description: WT51822-S4AT is a high performance,low power radio transmit and receive system module use Nordic BLE 4.1 nrf51822 as the controller chips. It has the smallest volume package in the industry,

More information

Arduino UNO R3 ESP8266 Web Server Serial Port WiFi Shield ESP13

Arduino UNO R3 ESP8266 Web Server Serial Port WiFi Shield ESP13 Arduino UNO R3 ESP8266 Web Server Serial Port WiFi Shield ESP13 1. Pin Explanation G: GND 5V: 5V Power Output D:connecting to digital port(d2-d13)of arduino control board 1 Control Switch: to control the

More information

User Manual. ESP8266 Wifi Shield

User Manual. ESP8266 Wifi Shield User Manual Of ESP8266 Wifi Shield Description The shield is designed based on esp8266 by Espressif Systems, pin-compatible with Arduino UNO/Mega2560 DevBorad. Which can be used as two independent part,

More information

ARDUINO INDUSTRIAL 1 01 Code: A000126

ARDUINO INDUSTRIAL 1 01 Code: A000126 ARDUINO INDUSTRIAL 1 01 Code: A000126 The Industrial 101 is a small form-factor YUN designed for product integration. OVERVIEW: Arduino Industrial 101 is an Evaluation board for Arduino 101 LGA module.

More information

ARDUINO M0 PRO Code: A000111

ARDUINO M0 PRO Code: A000111 ARDUINO M0 PRO Code: A000111 The Arduino M0 Pro is an Arduino M0 with a step by step debugger With the new Arduino M0 Pro board, the more creative individual will have the potential to create one s most

More information

ARDUINO YÚN Code: A000008

ARDUINO YÚN Code: A000008 ARDUINO YÚN Code: A000008 Arduino YÚN is the perfect board to use when designing connected devices and, more in general, Internet of Things projects. It combines the power of Linux with the ease of use

More information

ARDUINO YÚN MINI Code: A000108

ARDUINO YÚN MINI Code: A000108 ARDUINO YÚN MINI Code: A000108 The Arduino Yún Mini is a compact version of the Arduino YUN OVERVIEW: Arduino Yún Mini is a breadboard PCB developed with ATmega 32u4 MCU and QCA MIPS 24K SoC CPU operating

More information

DF BluetoothV3 Bluetooth module (SKU:TEL0026)

DF BluetoothV3 Bluetooth module (SKU:TEL0026) DF BluetoothV3 Bluetooth module (SKU:TEL0026) From Robot Wiki Contents 1 Introduction 2 Specification 3 PinOut 4 Set module in AT mode o 4.1 How to enter into AT mode o 4.2 Preparation o 4.3 Steps 5 Tutorial

More information

JP2380 Sensor Module. JP Sensor. Features: MCU Embedded. Specifications. Sensor with total solution

JP2380 Sensor Module. JP Sensor. Features: MCU Embedded. Specifications.   Sensor with total solution JP Sensor Sensor with total solution JP2380 is an ultra-thin CMOS fingerprint sensor combined with MCU which can be widely applied in smart card since it is neat and compact. Cermet-like coating provides

More information

Electronics Single Board Computers

Electronics Single Board Computers Electronics Single Board Computers Wilfrid Laurier University November 23, 2016 Single Board Computers Single Board Computers As electronic devices get smaller and more sophisticated, they often contain

More information

IDUINO for maker s life. User Manual. For IDUINO Mega2560 Board(ST1026)

IDUINO for maker s life. User Manual. For IDUINO Mega2560 Board(ST1026) User Manual For IDUINO Mega2560 Board(ST1026) 1.Overview 1.1 what is Arduino? Arduino is an open-source prototyping platform based on easy-to-use hardware and software. Arduino boards are able to read

More information

DEMO XTR-8LR100 DEMO XTR-8LR10 User Manual

DEMO XTR-8LR100 DEMO XTR-8LR10 User Manual 0 Picture 1: Demo board XTR-8LR100 Picture 2: Demo board XTR-8LR10 DEMO-BOARD XTR-8LR100 (Picture 1) e DEMO-BOARD XTR-8LR10 (Picture 2) is an evaluation board of the transceiver module XTR-8LR100 and module

More information

Name: Serial MP3 Player A manual

Name: Serial MP3 Player A manual OPEN-SMART Name: Serial MP3 Player A manual Version: v1.1 Date: 2018.01.13 OPEN-SMART 1 / 13 1 Description 2 / 13 The module is a kind of simple MP3 player device which is based on a high-quality MP3 audio

More information

Bluetooth Embedded Module

Bluetooth Embedded Module Bluetooth Embedded Module FB755AC & FB755AS User Guide Version 1.1 FIRMTECH Co., Ltd. Homepage : http://www.firmtech.co.kr Mail : contact@firmtech.co.kr Tel : +82-31-719-4812 Fax : +82-31-719-4834 Revision

More information

F6-Fingerprint. Access Control/Reader. User Manual. F6 - Simplified Instruction. (Master Code) # (Factory default:1234) Enter the Programming Mode

F6-Fingerprint. Access Control/Reader. User Manual. F6 - Simplified Instruction. (Master Code) # (Factory default:1234) Enter the Programming Mode -Fingerprint Access Control/Reader Function Description Enter the Programming Mode - Simplified Instruction Operation (Factory default:1234) Change the Master Code Add Fingerprint User Add Card User Add

More information

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT I Contents Overview TA0139... 1 Getting started: Arduino 2 Wheel Drive Wireless Bluetooth Robot Kit using Arduino UNO... 1 2.1. What

More information

+ (5~27 VDC) GND. Bluetooth V4.1 BLE RS-232 Serial Adapter. Model: BLE-232B. 1. Package content: BLE RS-232 adapter

+ (5~27 VDC) GND. Bluetooth V4.1 BLE RS-232 Serial Adapter. Model: BLE-232B. 1. Package content: BLE RS-232 adapter Bluetooth V4.1 BLE RS-232 Serial Adapter 1. Package content: BLE RS-232 adapter Model: BLE-232B Package Contents: BLE RS-232 adapter x 1 Screw x2, Screw nut x 2 A4 User manual x 1 Mini USB Cable x 1 White

More information

IDUINO for maker s life. User Manual. For IDUINO development Board.

IDUINO for maker s life. User Manual. For IDUINO development Board. User Manual For IDUINO development Board 1.Overview 1.1 what is Arduino? Arduino is an open-source prototyping platform based on easy-to-use hardware and software. Arduino boards are able to read inputs

More information

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-232 Serial Adapter. Model: BLE-232D-E. 1. Package content: BLE RS-232 adapter

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-232 Serial Adapter. Model: BLE-232D-E. 1. Package content: BLE RS-232 adapter 1. Package content: BLE RS-232 adapter Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232D-E Package Contents: BLE RS-232 adapter x 1 A4 User manual x 1 Mini USB Cable x 1 White Box: 11 x 6 x 5 (cm)

More information

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-422/485 Serial Adapter. Model: BLE-485C. 1. Package content: BLE RS-422/485 adapter

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-422/485 Serial Adapter. Model: BLE-485C. 1. Package content: BLE RS-422/485 adapter Bluetooth V4.2 BLE RS-422/485 Serial Adapter 1. Package content: BLE RS-422/485 adapter Model: BLE-485C Package Contents: BLE 422/485 adapter x 1 Screw x2, Screw nut x 2 A4 User manual x 1 Mini USB Cable

More information

Beetle SKU:DFR0282. Contents. Introduction

Beetle SKU:DFR0282. Contents. Introduction Beetle SKU:DFR0282 From Robot Wiki Beetle Contents 1 Introduction 2 Specification 3 PinOut 4 Tutorial o 4.1 Power o 4.2 Programming o 4.3 Example Code 5 Trouble shooting Introduction The Beetle is a minimalized

More information

Fingerprint Access Control F1. User Manual

Fingerprint Access Control F1. User Manual Fingerprint Access Control F1 User Manual 1. Introduction F1 is a metal shell standalone fingerprint access control, using the America Atmel s MCU, with precise electron circuit and good productive technology.

More information

ARDUINO LEONARDO ETH Code: A000022

ARDUINO LEONARDO ETH Code: A000022 ARDUINO LEONARDO ETH Code: A000022 All the fun of a Leonardo, plus an Ethernet port to extend your project to the IoT world. You can control sensors and actuators via the internet as a client or server.

More information

Firmware Reprogramming Guide

Firmware Reprogramming Guide 8 July. 2016 1 UART Connection Hardware Setup Modules and adaptors may be reprogrammed using the procedure detailed in this document. Normally, our platforms will be delivered with the final firmware already

More information

DFRobot BLE4.1 Module SKU: TEL0120

DFRobot BLE4.1 Module SKU: TEL0120 DFRobot BLE4.1 Module SKU: TEL0120 Introduction BLE4.1 Module is DFRobot newly developed Bluetooth 4.1 transmission module, adhering to the same usage of Bluno, and increasing the star network function,

More information

BV4531U. I2C or Serial 6 Way Relay

BV4531U. I2C or Serial 6 Way Relay BV4533 Date February 2018 11 Feb. 2018 Firmware Revision 1.0.4 Preliminary 1.1.0 Serial Updated I2C or Serial 6 Way Relay 3 Sep. 2018 1.1.0 I2C corrections, trigger is not used Introduction This is an

More information

PI Scanner User Guide

PI Scanner User Guide PI Scanner User Guide Table of Contents 1. Highlights 2. Overview 3. Installation 3.1. PI Scanner Software Installation 3.2. USB to Serial Interface Board Installation 3.3. Programming the PI Scanner IP

More information

TrueSecure TM GTM-5110Cxx Series Embedded Fingerprint Module

TrueSecure TM GTM-5110Cxx Series Embedded Fingerprint Module TrueSecure TM GTM-5110Cxx Series Revision: V1.00 Date: July 10, 2014 Table of Contents 1 Features... 3 2 Applications... 3 3 Selection Table... 3 4 Block Diagram... 4 5 General Description... 4 6 Pin Description...

More information

Arduino Dock 2. The Hardware

Arduino Dock 2. The Hardware Arduino Dock 2 The Arduino Dock 2 is our supercharged version of an Arduino Uno R3 board. These two boards share the same microcontroller, the ATmel ATmega328P microcontroller (MCU), and have identical

More information

IO Expansion Shield User Manual

IO Expansion Shield User Manual IO Expansion Shield User Manual 1 Features 3-pin & 4-pin sensor interfaces, supports connecting sensors directly without complicate custom connections XBee module connector WIFI-LPT100 wireless module

More information

WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107

WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107 WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107 Introduction The WiFi Bee MT7681 is an Arduino WiFi XBee module based on the MT7681 serial Wi-Fi module. It is compatible with an XBee slot,

More information

Catalog 1. Overview Feature Application Block Diagram

Catalog 1. Overview Feature Application Block Diagram - 1 - Catalog 1. Overview... - 3-2. Feature... - 3-3. Application... - 3-4. Block Diagram... - 3-5. Electrical Characteristics...- 4-6. Operation... - 4-1) Power on Reset...- 4-2) Working Mode...- 5-3)

More information

CANgineBerry. Active CAN and CANopen interface for embedded computers. for revision 1.0 or higher COPYRIGHT BY EMBEDDED SYSTEMS ACADEMY GMBH

CANgineBerry. Active CAN and CANopen interface for embedded computers. for revision 1.0 or higher COPYRIGHT BY EMBEDDED SYSTEMS ACADEMY GMBH Module Overview 1 CANgineBerry Active CAN and CANopen interface for embedded computers for revision 1.0 or higher Rev. 1.00 of 1 st February 2018 Published by Embedded Systems Academy GmbH Bahnhofstraße

More information

FIM30xx. Stand-Alone Fingerprint Identification Device with Built-in CPU. Datasheet. NITGEN Page: 1 FIM30xx DataSheet

FIM30xx. Stand-Alone Fingerprint Identification Device with Built-in CPU. Datasheet. NITGEN Page: 1 FIM30xx DataSheet Stand-Alone Fingerprint Identification Device with Built-in CPU Datasheet NITGEN Page: 1 Copyright 2006 NITGEN Co., Ltd. NITGEN Page: 2 Revision History Date of Revision Version Description 2006-05-15

More information

ITM-MKR680. User s Guide. Document ITM-MKR680 User s Guide 02/11/2018

ITM-MKR680. User s Guide. Document ITM-MKR680 User s Guide 02/11/2018 ITM-MKR680 User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and is subject to change

More information

ESPino - Specifications

ESPino - Specifications ESPino - Specifications Summary Microcontroller ESP8266 (32-bit RISC) WiFi 802.11 (station, access point, P2P) Operating Voltage 3.3V Input Voltage 4.4-15V Digital I/O Pins 9 Analog Input Pins 1 (10-bit

More information

Bluetooth Serial Adapter

Bluetooth Serial Adapter Bluetooth Serial Adapter FB100AS User Guide Version 1.0 FIRMTECH Co., Ltd. B-606, Ssangyong IT Twin Tower, Sangdaewon-dong, 442-5 Jungwon-gu, Seongnam-si, Gyeonggi-do, Korea 462-120 Tel : +82-31-719-4812

More information

ARDUINO MICRO WITHOUT HEADERS Code: A000093

ARDUINO MICRO WITHOUT HEADERS Code: A000093 ARDUINO MICRO WITHOUT HEADERS Code: A000093 Arduino Micro is the smallest board of the family, easy to integrate it in everyday objects to make them interactive. The Micro is based on the ATmega32U4 microcontroller

More information

USER GUIDE EDBG. Description

USER GUIDE EDBG. Description USER GUIDE EDBG Description The Atmel Embedded Debugger (EDBG) is an onboard debugger for integration into development kits with Atmel MCUs. In addition to programming and debugging support through Atmel

More information

Bluetooth V4.1 BLE RS-232 Serial Adapter Model: BLE-232B Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232C

Bluetooth V4.1 BLE RS-232 Serial Adapter Model: BLE-232B Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232C Bluetooth V4.1 BLE RS-232 Serial Adapter Model: BLE-232B Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232C Applications: MSR card reader reader, RFID reader, IC card reader, Specifications: 1. Baud

More information

keyestudio Keyestudio MEGA 2560 R3 Board

keyestudio Keyestudio MEGA 2560 R3 Board Keyestudio MEGA 2560 R3 Board Introduction: Keyestudio Mega 2560 R3 is a microcontroller board based on the ATMEGA2560-16AU, fully compatible with ARDUINO MEGA 2560 REV3. It has 54 digital input/output

More information

GammaTron USB Module

GammaTron USB Module GammaTron USB Module Product ID. : 710 Board Rev. : 1.00 Date : June 24, 2007 Firmware Rev. : 1.11 Beta Innovations (c) 2006 http://www.betainnovations.com Table of Contents Main Features...5 Introduction...6

More information

T9 Fingerprint Machine Hardware User Manual. Date: Version: 1.1

T9 Fingerprint Machine Hardware User Manual. Date: Version: 1.1 T9 Fingerprint Machine Hardware User Manual Date: 2010.07.27 Version: 1.1 (c)2010 Copyright Pegasus Equipments Ltd. All Rights Reserved. 1 Table of Content Introduction... 3 Installation... 3 Menu Structure...

More information

FINGERPRINT TERMINAL HARDWARE USER'S MANUAL

FINGERPRINT TERMINAL HARDWARE USER'S MANUAL http://www.epordo.com 1 FINGERPRINT TERMINAL HARDWARE USER'S MANUAL or email us at info@securiticn.com 1 1. INTRODUCTION 1.1 SUPPLIED PART LIST 1.2 ABOUT 1.3 HARDWARE SPECIFICATION 2. PRODUCT OVERVIEW

More information

ARB-0612 Converter USB RS 232/422/485/485-4W/TTL Manual

ARB-0612 Converter USB RS 232/422/485/485-4W/TTL Manual Converter USB RS 232/422/485/485-4W/TTL Manual _v1_01 Update date: 10/2018r. 10/2018 _v1_01 1 Table of Contents Symbols & Marks...3 General installation and safety rules...3 1.Destination of device...4

More information

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232C

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232C Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232C Package content: BLE RS-232 adapter x 1 Screws for DB9 connector x 2 Nuts for DB9 connector x 2 User

More information

MOD-RFID125 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved

MOD-RFID125 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved MOD-RFID125 User Manual All boards produced by Olimex are ROHS compliant Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved INTRODUCTION: FEATURES: MOD-RFID125 is an RFID station,

More information

How a 2d barcode scan engine to be integrated with your. I. The imager engine itself with TTL serial interface :

How a 2d barcode scan engine to be integrated with your. I. The imager engine itself with TTL serial interface : How a 2d barcode scan engine to be integrated with your Kiosk, POS terminal or others system? By RTscan, June 2014 We have been often asked by our customers about how to integrate the 2d barc ode scan

More information

DL-10. User Manual. RS-485 Remote Temperature and Humidity. English Ver. 1.0, Jul. 2017

DL-10. User Manual. RS-485 Remote Temperature and Humidity. English Ver. 1.0, Jul. 2017 DL-10 User Manual RS-485 Remote Temperature and Humidity English Ver. 1.0, Jul. 2017 WARRANTY All products manufactured by ICP DAS are warranted against defective materials for a period of one year from

More information

MOD-RFID125-BOX User Manual

MOD-RFID125-BOX User Manual MOD-RFID125-BOX User Manual All boards produced by Olimex are ROHS compliant Rev.B, May 2011 Copyright(c) 2011, OLIMEX Ltd, All rights reserved Page 1 INTRODUCTION: FEATURES: MOD-RFID125-BOX is an RFID

More information

Compatible with Bluetooth V2.0 + EDR (Enhanced Data Rate). Data transfer rate is 3Mbit per sesond. Opearted in SPP device class and slave mode only

Compatible with Bluetooth V2.0 + EDR (Enhanced Data Rate). Data transfer rate is 3Mbit per sesond. Opearted in SPP device class and slave mode only BlueStick : Bluetooth serial module 1 BlueStick Bluetooth Serial module This is a Bluetooth Serial Port Profile (SPP) device for wireless serial data communications via the bluetooth radio system. It is

More information

ARDUINO LEONARDO WITH HEADERS Code: A000057

ARDUINO LEONARDO WITH HEADERS Code: A000057 ARDUINO LEONARDO WITH HEADERS Code: A000057 Similar to an Arduino UNO, can be recognized by computer as a mouse or keyboard. The Arduino Leonardo is a microcontroller board based on the ATmega32u4 (datasheet).

More information

MICRO-1356 MULTI-PROTOCOL READER

MICRO-1356 MULTI-PROTOCOL READER MICRO-1356 MULTI-PROTOCOL READER Unique Features: The datasheet for the Micro-1356- USB and Micro-1356 readers are the same. The Micro-1356-USB reader is a USB version of the Micro-1356 embedded RFID reader

More information

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM-1.0 Version /8/2011 USER MANUAL

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM-1.0 Version /8/2011 USER MANUAL RN-WIFLY-EVAL-UM WiFly Evaluation Kit 0 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM-.0 Version.0 //0 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks

More information

Omega MP. Multi-Programming Shield for Atmel Microcontrollers. User Manual

Omega MP. Multi-Programming Shield for Atmel Microcontrollers. User Manual Omega MP Multi-Programming Shield for Atmel Microcontrollers User Manual Ω - Omega MCU Systems Copyright 2012 Contents Introduction...2 Omega MP main features:...2 Getting Started...3 Assumptions...3 1.

More information

A3-TFFCBL-02 USB-to-UART Adapter User Manual

A3-TFFCBL-02 USB-to-UART Adapter User Manual A3-TFFCBL-02 USB-to-UART Adapter User Manual Introduction The A3-TFFCBL-02 provides a convenient method for adapting UART data to USB signaling; it provides the following features: Converts from USB to

More information

T-7 FINGERPRINT TERMINAL. HARDWARE USER'S MANUAL Rev 1.1

T-7 FINGERPRINT TERMINAL. HARDWARE USER'S MANUAL Rev 1.1 T-7 FINGERPRINT TERMINAL HARDWARE USER'S MANUAL Rev 1.1 1 Table of Contents 1. INTRODUCTION 1.1 SUPPLIED PART LIST 1.2 ABOUT PEGASUS T-7 1.3 HARDWARE SPECIFICATION 2. PRODUCT OVERVIEW 2.1 COMMUNICATION

More information

MIFARE Secure OEM Reader Module Data Sheet

MIFARE Secure OEM Reader Module Data Sheet 724-10 MIFARE Secure OEM Reader Module Data Sheet General Description The 724-10 MIFARE Secure OEM Reader Module is a fully encapsulated device containing all the electronics required to perform a secure

More information

EDBG. Description. Programmers and Debuggers USER GUIDE

EDBG. Description. Programmers and Debuggers USER GUIDE Programmers and Debuggers EDBG USER GUIDE Description The Atmel Embedded Debugger (EDBG) is an onboard debugger for integration into development kits with Atmel MCUs. In addition to programming and debugging

More information

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.1 BLE Datasheet and Quick Reference for BLE232V2

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.1 BLE Datasheet and Quick Reference for BLE232V2 Serial Bluetooth Smart Adapter - RS232, Low Energy 4.1 BLE Datasheet and Quick Reference for BLE232V2 Package content: BLE RS-232 adapter x 1 Screws for DB9 connector x 2 Nuts for DB9 connector x 2 User

More information

Lesson 5 Arduino Prototype Development Platforms. Chapter-8 L05: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 5 Arduino Prototype Development Platforms. Chapter-8 L05: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 5 Arduino Prototype Development Platforms 1 Arduino Boards, Modules And Shields Popular AVR MCU based products Each board has clear markings on the connection pins, sockets and in-circuit connections

More information

LM058 Bluetooth Serial Adapter

LM058 Bluetooth Serial Adapter LM058 Bluetooth Serial Adapter with external antenna The LM058 Bluetooth Serial Adapter eliminates your conventional RS232 serial cables, providing an easy-to-use, invisible connection with freedom of

More information

1.6inch SPI Module user manual

1.6inch SPI Module user manual 1.6inch SPI Module user manual www.lcdwiki.com 1 / 10 Rev1.0 Product Description The 1.6 module is tested using the ESP8266MOD D1 Mini development board, Both the test program and the dependent libraries

More information

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232DEXA

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232DEXA Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232DEXA Package content: BLE RS-232 adapter x 1 User manual x 1 Mini USB Cable x 1 DB9 (male) Reset to

More information

JDY-40 wireless serial port module

JDY-40 wireless serial port module JDY-40 wireless serial port module Brief function introduction JDY-40 is developed by 2.4G technology, with a distance of 120 meters. It uses serial communication interface, which is simple and quick to

More information

RN-171-EK Evaluation Board

RN-171-EK Evaluation Board RN -17 1-E K-DS RN-171-EK Evaluation Board Features Ultra-low power: 4-uA sleep, 40-mA Rx, 180-mA Tx at 10 dbm Configurable transmit power: 0 to +12 dbm UART hardware interfaces and SPI slave Up to 1 Mbps

More information

1.5inch OLED Module User Manual

1.5inch OLED Module User Manual 1.5inch OLED Module User Manual OVERVIEW This is a general OLED display module, 1.5inch diagonal, 128*128 pixels, 16-bit grey level, with embedded controller, communicating via SPI or I2C interface. FEATURES

More information

CMOS CAMERA MODULE JC418M-J01

CMOS CAMERA MODULE JC418M-J01 CMOS CAMERA MODULE JC418M-J01 Deqing Jiahe Electronic Technology Co., Ltd. TEL: +86-572-8051676 ext. 803 FAX: +86-572-8051676 ext. 801 sales@jiahe-electronic.com Application The JC418M-J01 JPEG compression

More information

TrueSecure TM GTM-5110Cxx Series Embedded Fingerprint Module

TrueSecure TM GTM-5110Cxx Series Embedded Fingerprint Module TrueSecure TM Revision: V1.10 Date: October 14, 2014 Table of Contents 1 Features... 3 2 Applications... 3 3 Selection Table... 3 4 Block Diagram... 4 5 General Description... 4 6 Pin Description... 5

More information

F-X20FO Fingerprint safe

F-X20FO Fingerprint safe F-X20FO Fingerprint safe Preface Thank you for purchasing F-X20FO Fingerprint safe. Please read this User Manual carefully before unpacking. Store this User Manual for future reference (Do not discard).

More information

User s Manual Closer to Real, Zigbee Module ZIG-100. Wireless Communication. ROBOTIS CO.,LTD

User s Manual Closer to Real, Zigbee Module ZIG-100. Wireless Communication. ROBOTIS CO.,LTD User s Manual 2006-07-06 Closer to Real, Wireless Communication ROBOTIS CO.,LTD. www.robotis.com +82-2-2168-8787 Contents 1. Page 02 2. Zigbee Setting Page 06 3. PC Interface Zig Board Schematic Page 10

More information

0.3 Mega Pixels Serial JPEG Camera with NTSC Video

0.3 Mega Pixels Serial JPEG Camera with NTSC Video SC03MPD: 0.3 Mega Pixels Serial JPEG Camera User Manual 0.3 Mega Pixels Serial JPEG Camera with NTSC Video SC03MPD User Manual, Rev. D For latest user manual, please visit: www.jpegcamera.com Introduction

More information

SH1030 Rev Introduction. Ultra low power DASH7 Arduino Shield Modem. Applications. Description. 868 MHz. Features

SH1030 Rev Introduction. Ultra low power DASH7 Arduino Shield Modem. Applications. Description. 868 MHz. Features SH1030 Rev. 1.2 Applications Wireless sensor network Data acquisition equipment Security systems Industrial monitor and control Internet of things (IoT) Ultra low power DASH7 Arduino Shield Modem 868 MHz

More information

Fingerprint Identification Proximity Reader. Quick Installation Guide

Fingerprint Identification Proximity Reader. Quick Installation Guide Fingerprint Identification Proximity Reader Quick Installation Guide 1. WHAT S INCLUDED Please unpack and check the contents of the box. If any of these parts are missing, please contact a nearby distributor

More information

PLC Stamp micro EVB Datasheet

PLC Stamp micro EVB Datasheet PLC Stamp micro EVB Datasheet I2SE GmbH March 23, 2016 1/13 CONTENTS CONTENTS Contents 1 Revisions 3 2 Introduction 3 2.1 Handling................................................ 3 3 Reference Documents

More information

Device: MOD This document Version: 1.0. Matches module version: v3 [29 June 2016] Date: 23 October 2017

Device: MOD This document Version: 1.0. Matches module version: v3 [29 June 2016] Date: 23 October 2017 Device: MOD-1025 This document Version: 1.0 Matches module version: v3 [29 June 2016] Date: 23 October 2017 Description: UART (async serial) to I2C adapter module MOD-1025 v3 datasheet Page 2 Contents

More information

User Guide. Date Apr BlueEva+C11/G2. Stollmann. E + V GmbH. User Guide

User Guide. Date Apr BlueEva+C11/G2. Stollmann. E + V GmbH. User Guide Version r02 Date Apr 2009 Author: ta Date saved: 06.04.09 Ref: BlueEva+C11G2_User_Guide_r02.doc Revision: r02 Page 1 of 22 Note This device was developed for the purpose of communication in an office environment.

More information

ELET114A Bluetooth Module DATASHEET. Website:http://www.elinketone.com / 7

ELET114A Bluetooth Module DATASHEET. Website:http://www.elinketone.com / 7 Bluetooth Module DATASHEET Website:http://www.elinketone.com 2013 06 09 1 / 7 A. Overview Bluetooth Module is designed by ShenZhen ElinkEtone Technology Company for intelligent wireless transmission, with

More information

Product Datasheet: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits

Product Datasheet: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits Product Datasheet: DWM1001-DEV DWM1001 Module Development Board Plug-and-Play Development Board for evaluating the performance of the Decawave DWM1001 module Easily assemble a fully wireless RTLS system,

More information

TrueSecure TM GTU Series USB Fingerprint Module

TrueSecure TM GTU Series USB Fingerprint Module TrueSecure TM GTU Series Revision: V1.00 Date: July 10, 2014 Table of Contents 1 Features... 3 2 Applications... 3 3 Selection Table... 3 4 Block Diagram... 4 5 General Description... 4 6 Pin Description...

More information

ED1021 I/O Expander with UART interface & analog inputs

ED1021 I/O Expander with UART interface & analog inputs Preliminary Highlights 4.5V 5.5V power supply range. 12 GPIOs. Up to 40mA maximum current in each output except GPIO8 (up to a total device current of 175mA). Most GPIOs can be an input to a 10bit ADC.

More information

Product Overview: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits

Product Overview: DWM1001-DEV DWM1001 Module Development Board. Key Features and Benefits Product Overview: DWM1001-DEV DWM1001 Module Development Board Plug-and-Play Development Board for evaluating the performance of the Decawave DWM1001 module Easily assemble a fully wireless RTLS system,

More information

Click-A-Tune. User Manual

Click-A-Tune. User Manual Contents Configuring the...2 Transferring data to the...2 with switch configuration...3 with switch matrix up to 3 switches...4 Changing the playback volume...5 Connections... Power requirements (Vin)...

More information

FPC2020 Fingerprint Processor Product Specification

FPC2020 Fingerprint Processor Product Specification Features Extremely easy to integrate minimizing time-to-market Supports area sensor FPC1011F One-To-One verification mode One-To-Many identification mode Flash interface for program and template storage

More information

Flash Microcomputer Programmer

Flash Microcomputer Programmer Flash Microcomputer Programmer User's Manual Tessera Technology Inc. Date published: August 2017 (6th Edition) TABLE OF CONTENTS CHAPTER 1 OVERVIEW... 5 1.1 System Configuration... 6 CHAPTER 2 INSTALLATION...

More information

KNJN I2C bus development boards

KNJN I2C bus development boards KNJN I2C bus development boards 2005, 2006, 2007, 2008 KNJN LLC http://www.knjn.com/ Document last revision on December 5, 2008 R22 KNJN I2C bus development boards Page 1 Table of Contents 1 The I2C bus...4

More information

S32K118 EVB QUICK START GUIDE APPLIES FOR: S32K118 EVB (SCH_29945 REV B) EXTERNAL USE

S32K118 EVB QUICK START GUIDE APPLIES FOR: S32K118 EVB (SCH_29945 REV B) EXTERNAL USE S32K118 EVB QUICK START GUIDE APPLIES FOR: S32K118 EVB (SCH_29945 REV B) Contents: Get to Know S32K118 EVB Out of the Box Setup Introduction to OpenSDA Creating a new S32DS project for S32K118: Download

More information

400 Fingerprint Door Lock User Manual

400 Fingerprint Door Lock User Manual 400 Fingerprint Door Lock User Manual 1,Specialty Easy to learn, easy to operate To be more useful with LCD MENU To enroll finger or delete finger on lock stand alone directly To be supplied power by battery,

More information

S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH REV A/B) EXTERNAL USE

S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH REV A/B) EXTERNAL USE S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH-29644 REV A/B) Contents: Get to Know S32K148 EVB Out of the Box Setup Introduction to OpenSDA S32DS IDE basics: Download Create a project

More information

WICE-SPI Hardware Operation Manual

WICE-SPI Hardware Operation Manual WICE-SPI Hardware Operation Manual 1. Hardware Instruction 1. WICE-SPI processes data transmission, programming or emulation through USB 2.0 interface and does not need external power. 2. WICE-SPI is equipped

More information