RFID Door Unlocking System

Size: px
Start display at page:

Download "RFID Door Unlocking System"

Transcription

1 RFID Door Unlocking System Evan VanMersbergen Project Description ETEC 471 Professor Todd Morton December 7,

2 Introduction In this age of rapid technological advancement, radio frequency (or RF) communication is emerging as one of the more promising and useful forms of data transfer. It is getting more and more difficult to find a person who has never talked on a cell phone, listened to the radio, or even logged onto wireless internet. One new technology that is on its way to becoming another common everyday use of RF communication, is Radio Frequency Identification (RFID). This is a relatively old technology, but new advancements within the last ten years have drawn quite an interest to those who need anything from a quick inventory count to instant price checks. Similar to bar codes, but much more powerful, RFID is a system of storing information on a tag and having the ability to read it from distances of up to forty feet. This year I propose to develop my own RFID system. I am planning to build an RFID Door-Access system. This project will use the ability of an RFID tag to signal a door to unlock. When one of these tags gets close enough to communicate with the antenna the reader will react and unlock a door if the tag contains the correct information. This system will also have the ability to accept new tags into the system, and remove them. The finished product will be composed of a reader, antenna, LCD screen, and a door lock indicator. Not everyone is familiar with this new technology, so I will briefly describe the two main parts of an RFID system. The reader is the heart of the system. It is the device that communicates with the tags through the antenna to unlock the door as well as communicate with the door lock and PC. There will be three transponder tags which hold data to send to the reader. These tags look like a credit card, but they contain an integrated circuit inside with 2k bits of memory and an antenna. -2-

3 Description The final product will be a stand alone system that receives a signal from a tag to unlock a door. Figure 1 shows an idea of what it will look like. Now not just any tag will be able to gain access. They will have to be programmed. Through a computer program the reader will receive the desired information and in turn send it to the tag to be stored. This data will be the name of the card holder. From that point on, any time that card is held near the antenna, the reader will display the card holder s name, and the time of entry on the LCD screen as well as unlock the door. The door will remain unlocked for five seconds, and then it will relock. To further ensure security, cards can be removed from clearance. All these programming of tags can be done through the computer after a security code is entered. RFID Tag Door Lock LCD Screen Antenna Reader Figure 1-3-

4 The reader will be controlled by the MC9S12DP256 microcontroller. Figure 2 displays which parts of the microcontroller will be used. This device was selected due to its sufficient memory capacity, my familiarity with its behavior, and its numerous other assets. The 256 K bytes of Flash EEPROM will contain all the software for operation. There are also 12 K bytes of available RAM that will be used for temporary variables. The microcontroller will run with a 16 MHz crystal. One of the major resources that will be utilized from this microcontroller will include the BDM input. This will be used through the software development process so I can save as much memory as possible for the actual code. There will also be an external reset circuit consisting of a pull-up resistor at the reset pin because the microcontroller already has internal reset circuitry. When it is set up, the microcontroller will receive tag programming information from the keypad. With keypad the user can program data onto cards, or delete cards from the system. A security code needs to be entered in order to do anything. This ensures security. There will be an LCD screen connected to the microcontroller through Port A (PA0- PA7) and Port K (PK0-PK2). This will display to the user the name on the card being read, whether or not access is granted, and the time of entry. Port B (PB0-PB2) will be used to unlock the door. The door lock is an electric dead bolt that is locked and unlocked base on an electric pulse. Each time a card checks in, it will unlock for five seconds before relocking. -4-

5 256 K Flash EEPROM 4 K EEPROM MC9S12DP256 Antenna Transponder 2 K RAM Key Pad Port B PTB 0-7 Port P PTP 0-2 S MHz XTAL Port T PTT 0-2 Lock Reset Circuitry RESET BDM Port A PTA 0-7 Port K PTK V AC BDM Connector LCD Wall Transformer Power Supply 5 V 1 A 24 V 1 A Figure 2 Typical RFID applications communicate on one of three frequency ranges. There is low frequency ( khz), high frequency (13.56 MHz), and ultra high frequency ( MHz). This system will operate on the high frequency spectrum. The RFID tags have been manufactured to communicate with the transceiver IC using the ISO protocol. The microcontroller is responsible for sending serial data to the transceiver. The transmit encoder then converts the data into the ISO RF protocol. In order for the reader to communicate with the transponding tags, it will amplitude modulate the desired MHz RF signal using Texas Instruments S6700 Multi-Protocol Transceiver IC. The S6700, shown in Figure 3, is an integrated circuit -5-

6 designed precisely for RFID. It contains both an RF transmitter and receiver to communicate with the transponding tags, and it also contains a binary decoder for the transmitter and a binary encoder for the receiver. This enables the microcontroller to communicate with binary code. The S6700 will be connected to the microcontroller through Port P. It will require some external circuitry for operation. This requires a MHz crystal, various capacitors, resistors, inductors, coaxial cable, and an antenna. Figure 3 After some searching and decision making, I have decided not to buy an antenna. An antenna for this application can be built without too much difficulty. Antenna prices were way too high (about $200 and up), but I will be prepared by winter to build an antenna with the help of a manual. An example of what it will look like can be seen in Figure 4. Figure 4 The last parts of this project are the transponding tags. These are cards manufactured by Texas Instruments and are compatible with the S6700 IC. The cards and the transceiver communicate using the ISO/IEC standard for wireless communication at MHz. Figure 5 shows what they will look like. -6-

7 Figure 5 The power supply for this design requires a 5 volt source and a maximum current of 263 ma for the circuitry not including the electric bolt lock. A 24 volt source with a current of 110 ma is required for the electric bolt lock. The power supply will be accounted for by a wall transformer. It will take in 120 volts AC and output 5 and 24 volts and a maximum current of 1 amp. Software Requirements The software for RFID system will be programmed in C. I selected this language because it is just as capable as assembly language, but easier to read. The software will contain several different modules to make the device work. They are described in the following table. Module KERNEL Description The center of operation; a pre-emptive kernel that controls all the software modules through a time slicing routine. The user interface. It is a program that collects basic I/O data INTERFACE from the computer. A four digit security code must be entered in order to access this program. TAGREAD Master/Slave module that sends, receives and stores data from the SPI. -7-

8 UNLOCK A module to signal LEDs and unlock the door when a card is recognized. A prewritten module that sends messages to the LCD screen. It LCD_DISP will display information such as the card name, the time of check in, and when a card is deleted or added. TIME An internal real time clock that will display the time of a check in. A program that acts upon the information received through the INPUT_APP SCI. It initiates the application of other modules based on the input from the computer interface. The KERNEL, TAGREAD, UNLOCK AND LCD_DISP modules are the main modules. The modules that need input from the user are COMP_INT and TAGWRITE. They are primarily just for setting up the system. Once everything is set up, the system pretty much runs itself. Just a swipe of the card is all that is needed from the user. Of course these modules are needed later if changes are desired. User Interface The largest part of the user interface comes with the setup of the system. Cards will have to be saved, and the clock will have to be set. The computer interface will start with the LCD displaying as is seen in Figure

9 Figure 6 The user can press the A, B, C, or D buttons for one of four options: Add a card, delete a card, change the security code, or set the clock. Once the user selects an option the security code must be entered. It will look like Figure 7. The program will then prompt the user for information and complete the task. The user is automatically logged out at the completion of each of these tasks. A flow diagram is shown below in Figure 8. Figure 7 Once all cards are saved to the reader, the system is extremely easy to operate. All that is required is a sweep of the card and the reader will know what to do. This easy operation is one main advantage over key lock entry. -9-

10 Reset Incorrect Code Incorrect Entry A, B, C, or D A: Add New Card B: Delete Card C: Change Code D: Set Clock Enter code Correct Code Correct Code S C Set Hour Enter Set Minut Enter AM or PM Correct Code D Enter Correct Code N Enter New Name Enter Added Enter Name to Delete Enter Deleted Enter New Code Enter Code Changed Figure 8 The card will have to be waved within a few inches of the antenna in order for transmission to take place and gain access. One of three things will happen when a card is sensed by the system. The card can be recognized as a saved card and therefore unlock the door, the card can be read and not recognized as a saved card, or the card can have a read error. Each of these outcomes will be prepared for by a signaling LED on the door lock. A green LED will blink when the door is unlocked. A yellow LED will blink if the card is not identified on the system. A red LED will blink to indicate a read error. The -10-

11 lock will remain unlocked for a five second span when a good card is read. A flow diagram for the LCD and lock interface can be seen below. Reset Known Card Locked Read Error Unknown Card Flash Green LED Flash Yellow LED Flash Red LED LCD Display: Unlocked Name Time LCD Display: Read Error LCD Display: Unknown Card Unlock 1 Second 1 Second 5 Seconds Figure 9 Development Plan The sequence of development will begin over winter break. During this time I am responsible for reading and learning as much as I can about the microcontroller and the S6700. Understanding how these work and work together will be the key to how efficiently the system is constructed. By the beginning of winter quarter, I will have acquired all the major components: the microcontroller, the S6700 Transceiver IC, transponding tags, antenna parts, and various crystals, resistors, capacitors, and inductors. I want to start right away building the power supply. The next part to construct will be the antenna because the other hardware cannot be implemented until there is an antenna -11-

12 in the mix. It will be a loop antenna built out of conductive copper tape with resistive and reactive components soldered at the seam of the loop. A spectrum analyzer will be needed in testing the frequencies of the S6700 and the tags, as well as other noises. Antenna design will be followed by the transceiver setup. Setup includes building the crystal oscillator, attaching the antenna, mounting the IC, and constructing other external circuitry. They will initially be assembled on a solderless board, and will later be mounted on a PCB using point-to-point soldering. RF circuits can be tricky at high frequencies, so I allow two weeks for this task. A week will be given to build the power supply. The lock hardware will be the last of the hardware to build. I will acquire a full size door and transfer the LEDs and lock into it as is shown in figure 10. This will conclude the construction of the physical system right around week six of winter quarter. At this time the various software modules will be developed. This is a sketch of what the door knob will look like: Figure

13 The UNLOCK, LCD_DISP, TIME, are able to be developed in about a week each. COMPUTER will be given two weeks to build. TAGREAD is the biggest challenge, so I allow the most time for its development. The final module, KERNEL, will be made at the end and will tie all the software together. The debugging process will be assisted by Motorola s BDM (Background Debugging Mode) circuitry. Assuming this all goes exactly according to the schedule shown below, there will be about three weeks to finalize all preparations. I will use this time to ensure that the system is as faultless as possible. I will also prepare materials for the presentation. There will be a full size door with the lock installed and the antenna attached in the center. I will have a poster that has pictures and diagrams explaining what RFID technology is and how it works. Visitors will be able to participate in programming their own cards, unlocking the door, and deleting their card so others can experiment. Winter 2006 Week 1 Week 2 Week 3 Week 4 Week 5 Week 6 Week 7 Week 8 Week 9 Week 10 Antenna Design Transceiver Hardware Setup Transceiver Hardware Setup Lock Hardware Design Assemble Hardware Assemble Hardware Develop UNLOCK module Develop LCD_DISP module Transceiver Protocol Code Transceiver Protocol Code -13-

14 Spring 2006 Week 1 Week 2 Week 3 Week 4 Week 5 Week 6 Week 7 Week 8 Week 9 Week 10 Transceiver Protocol Code Transceiver Protocol Code Hardware Review, Develop KERNEL Develop KERNEL Software Review, Final Software Assembly Final Prototype Assembly Preparation Testing Preparation Testing Code Review, Final Testing and Building Project Presentation Specifications Parameter Condition Units RFID Communications Protocol ISO Frequency Range 13.56* MHz Transponding Distance 2 Ft Supply Voltage V I max 263 ma Max Power Dissipation 1.32 W Operating Temperature 0 o 50 o o C PCB Size 6 x 4 x 2 Inches Number of RFID Cards 3-14-

15 Number of Characters per Name 8 Serial Communication Protocol Asynchronous Master/Slave Security Code Electric Bolt Lock Voltage V Electric Bolt Lock Current 110 ma *13.56 MHz is found in a non-restricted band allocated by the FCC. Preliminary Parts Item Part Number Quantity Price Lead Time Distributor I q Microcontroller MC9S12C32 1 $ week Digikey 35mA Transceiver IC RI-R6C-001A 1 $ weeks Digikey 120mA Transponder RI-TH1-CB1A-00 3 $ weeks Digikey N/A 2x16 LCD DMC-16207H 1 $ week 3mA MHz Crystal ND 1 $ week Digikey N/A 16 MHz Crystal ND 1 $ week Digikey N/A Resistors Variable 15 $ week Digikey 5mA Capacitors Variable 15 $ week Digikey Inductors Variable 5 $ week Digikey Coaxial Cable C _ND 1 $ week Digikey N/A Copper Tape N/A 1 $ weeks Stewart- N/A MacDonald LED LT $ week Digikey 30mA RS232 MAX232A 1 $ weeks Maxim 4mA Transceiver Electric Bolt HT $ weeks Fuzing 110mA Lock Totals $ mA -15-

The Guitar Chord Learning System

The Guitar Chord Learning System The Guitar Chord Learning System Calvin A. Sessions Hardware Description April 19, 2005 Western Washington University Electronics Engineering Technology ETEC 474, Professor Morton INTRODUCTION The Guitar

More information

Operational Description

Operational Description Operational Description Wallterminal WT2000 ISO Tagit The Wallterminal WT2000 consists of the two components control unit and reader unit. The control unit is usually mounted in a save area inside the

More information

Many people in their spare time try to find interesting activities to do to keep them

Many people in their spare time try to find interesting activities to do to keep them Introductory Description Many people in their spare time try to find interesting activities to do to keep them occupied. One of these activities is a remote controlled hobby. This hobby involves many vehicles

More information

RF4432 wireless transceiver module

RF4432 wireless transceiver module 1. Description www.nicerf.com RF4432 RF4432 wireless transceiver module RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity

More information

The Skiidometer. Hardware Description By: Adam Lee ; Etec474; Prof. Morton; WWU

The Skiidometer. Hardware Description By: Adam Lee ; Etec474; Prof. Morton; WWU The Skiidometer Hardware Description By: Adam Lee 04.26.2003; Etec474; Prof. Morton; WWU General Description The Skiidometer is a portable meter which serves as a digital companion on the ski slopes. By

More information

6.115 Final Project Proposal: An RFID Access Control System

6.115 Final Project Proposal: An RFID Access Control System 6.115 Final Project Proposal: An RFID Access Control System Christopher Merrill April 24, 2012 Abstract The goal of this nal project is to implement a device to read standard 125 khz RFID cards using the

More information

Adjustable Parametric Equalizer Hardware Description

Adjustable Parametric Equalizer Hardware Description Adjustable Parametric Equalizer Hardware Description Adam Grunke April 27, 2004 ETEC 474 Professor Morton Introduction The Adjustable Parametric Equalizer (APE) allows the professional audio engineer to

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

DR-TRC105-EV Evaluation Kit. User s Guide

DR-TRC105-EV Evaluation Kit. User s Guide DR-TRC105-EV Evaluation Kit User s Guide DR-TRC105-304-EV DR-TRC105-315-EV DR-TRC105-345-EV DR-TRC105-372-EV DR-TRC105-390-EV DR-TRC105-403-EV DR-TRC105-434-EV DR-TRC105-450-EV 2010-2015 by Murata Electronics

More information

Complete 2.4 GHz RF Transceiver Module with Built-In RFDP8 Application Protocol Part Numbers RFD21733, RFD21735, RFD21737, RFD21738, RFD21739

Complete 2.4 GHz RF Transceiver Module with Built-In RFDP8 Application Protocol Part Numbers RFD21733, RFD21735, RFD21737, RFD21738, RFD21739 Complete 2.4 GHz RF Transceiver Module with Built-In Application Protocol Part Numbers,,,, Optional Configuration For use with External Antenna 15mm x 15mm (0.600 inch x 0.600 inch) / is a complete, READY-TO-USE

More information

TRXQ1 RXQ1 FM NARROW BAND TRANSCEIVERS. RXQ1 Version. Applications. TRXQ1 Version

TRXQ1 RXQ1 FM NARROW BAND TRANSCEIVERS. RXQ1 Version. Applications. TRXQ1 Version RF Transceiver or Intelligent Modem Versions Host Data Rate upto 19,200 Baud Data Rates to 20 K baud. 2 Selectable RF Channels Narrowband Crystal Controlled Optimal Range 200m Supply Voltage 3-5V Very

More information

2.0 Discussion: 2.1 Approach:

2.0 Discussion: 2.1 Approach: 2.0 Discussion: 2.1 Approach: The design for a Power Monitor and Data Logging System is comprised of two major components: the Power Meter and the Data Logger. The Power Meter is the package that plugs

More information

RF RECEIVER DECODER RDF1. Features Complete FM Receiver and Decoder. Applications

RF RECEIVER DECODER RDF1. Features Complete FM Receiver and Decoder. Applications Features Complete FM Receiver and Decoder. Small Form Factor Range up to 200 Metres* Easy Learn Transmitter Feature. Learns 40 transmitter Switches 4 Digital and 1 Serial Data outputs Outputs, Momentary

More information

RF4463F30 High Power wireless transceiver module

RF4463F30 High Power wireless transceiver module RF4463F30 High Power wireless transceiver module 1. Description RF4463F30 adopts Silicon Lab Si4463 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity

More information

TRC EV DR TRC EV DR TRC EV

TRC EV DR TRC EV DR TRC EV DR-TRC103-EV Evaluation Kit User s Guide DR TRC103 868 EV DR TRC103 915 EV DR TRC103 950 EV DR-TRC103-EV User s Guide (2015/04/17) Page 1 of 11 www.murata.com Introduction The DR TRC103 series evaluation

More information

SynthNV - Signal Generator / Power Detector Combo

SynthNV - Signal Generator / Power Detector Combo SynthNV - Signal Generator / Power Detector Combo The Windfreak SynthNV is a 34.4MHz to 4.4GHz software tunable RF signal generator controlled and powered by a PC running Windows XP, Windows 7, or Android

More information

EEL5666C IMDL Spring 2006 Student: Andrew Joseph. *Alarm-o-bot*

EEL5666C IMDL Spring 2006 Student: Andrew Joseph. *Alarm-o-bot* EEL5666C IMDL Spring 2006 Student: Andrew Joseph *Alarm-o-bot* TAs: Adam Barnett, Sara Keen Instructor: A.A. Arroyo Final Report April 25, 2006 Table of Contents Abstract 3 Executive Summary 3 Introduction

More information

What s In The Box. 1x, 2x, or 4x Indoor Antenna(s)* Coaxial Cable. Other Parts. 2x, 3x, or 5x 30 ft RS400 Cable* 1x 1 ft RS240 Cable** Panel Antenna

What s In The Box. 1x, 2x, or 4x Indoor Antenna(s)* Coaxial Cable. Other Parts. 2x, 3x, or 5x 30 ft RS400 Cable* 1x 1 ft RS240 Cable** Panel Antenna Read This First CEL-FI GO X Installation Guide 26081 Merit Circle, Suite 118 Laguna Hills, CA 92653 +1 (800) 761-3041 www.repeaterstore.com contact@repeaterstore.com What s In The Box Cel-Fi GO X Amplifier

More information

Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng

Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng International Conference on Applied Science and Engineering Innovation (ASEI 2015) Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng Beijing Key Laboratory of

More information

WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING RF COMMUNICATION

WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING RF COMMUNICATION WIRELESS DC MOTOR SPEED AND DIRECTION CONTROL USING RF COMMUNICATION Title of the project : Wireless DC motor speed and direction control using RF (PWM) Domain : Wireless Communication, Electrical & Embedded

More information

OEM 100. User Manual. Figure 1: OEM 100 Module with HG Rectangular Antenna Board

OEM 100. User Manual. Figure 1: OEM 100 Module with HG Rectangular Antenna Board OEM 100 User Manual Figure 1: OEM 100 Module with HG Rectangular Antenna Board Revision History Revision History Release Version Date Revision Description Authors Version 1.0 07/20/09 Initial Release Bryan

More information

Frequency Synthesizer Project ECE145B Winter 2011

Frequency Synthesizer Project ECE145B Winter 2011 Frequency Synthesizer Project ECE145B Winter 2011 The goal of this last project is to develop a frequency synthesized local oscillator using your VCO from Lab 2. The VCO will be locked to a stable crystal

More information

THEORY OF OPERATION. TM308EUL for Cobra Nov 06,2006

THEORY OF OPERATION. TM308EUL for Cobra Nov 06,2006 THEORY OF OPERATION TM308EUL for Cobra Nov 06,2006 This PLL controlled VHF marine mobile transceiver provides an accurate and stable multi-channel operation. The transceiver consists of 15 main sections

More information

EMBEDDED SYSTEM DESIGN FOR A DIGITAL MULTIMETER USING MOTOROLA HCS12 MICROCONTROLLER

EMBEDDED SYSTEM DESIGN FOR A DIGITAL MULTIMETER USING MOTOROLA HCS12 MICROCONTROLLER EMBEDDED SYSTEM DESIGN FOR A DIGITAL MULTIMETER USING MOTOROLA HCS12 MICROCONTROLLER A Thesis Submitted in partial Fulfillment Of the Requirements of the Degree of Bachelor of Technology In Electronics

More information

Lab 3: Embedded Systems

Lab 3: Embedded Systems THE PENNSYLVANIA STATE UNIVERSITY EE 3OOW SECTION 3 FALL 2015 THE DREAM TEAM Lab 3: Embedded Systems William Stranburg, Sean Solley, Sairam Kripasagar Table of Contents Introduction... 3 Rationale... 3

More information

SAE Formula Car Data Acquisition & Display System. Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag

SAE Formula Car Data Acquisition & Display System. Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag SAE Formula Car Data Acquisition & Display System Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag Agenda Problem Background Problem Statement System Diagram Project Functional

More information

LC-10 Chipless TagReader v 2.0 August 2006

LC-10 Chipless TagReader v 2.0 August 2006 LC-10 Chipless TagReader v 2.0 August 2006 The LC-10 is a portable instrument that connects to the USB port of any computer. The LC-10 operates in the frequency range of 1-50 MHz, and is designed to detect

More information

Build this Direct Digital Synthesizer "Development Kit" By: Diz Gentzow, W8DIZ

Build this Direct Digital Synthesizer Development Kit By: Diz Gentzow, W8DIZ Build this Direct Digital Synthesizer "Development Kit" By: Diz Gentzow, W8DIZ A great tutorial for adding a keypad to the DDS Kit by Bruce, W8BH This manual has been prepared to be read directly on screen.

More information

CHAPTER 1 INTRODUCTION...

CHAPTER 1 INTRODUCTION... GSE 460 and 465 Technical Reference Manual Manual TABLE OF CONTENTS CHAPTER 1 INTRODUCTION...1-1 INTRODUCTION...1-2 About This Manual...1-2 Conventions...1-2 CHAPTER 2 INSTALLATION...2-1 INSTALLATION...2-1

More information

DS1307ZN. 64 X 8 Serial Real Time Clock

DS1307ZN. 64 X 8 Serial Real Time Clock 64 X 8 Serial Real Time Clock www.dalsemi.com FEATURES Real time clock counts seconds, minutes, hours, date of the month, month, day of the week, and year with leap year compensation valid up to 2100 56

More information

Robotic Development Kit. Powered using ATMEL technology

Robotic Development Kit. Powered using ATMEL technology Robotic Development Kit Powered using ATMEL technology Index 1. System overview 2. Technology overview 3. Individual dev-kit components I. Robot II. Remote III. IR-Pod IV. Base-Station V. RFID 4. Robonii

More information

UHF RFID Micro Reader Reference Design Hardware Description

UHF RFID Micro Reader Reference Design Hardware Description Application Micro Note Reader Reference Design AS399x UHF RFID Reader ICs UHF RFID Micro Reader Reference Design Hardware Description Top View RF Part Bottom View RF Part www.austriamicrosystems.com/rfid

More information

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz Operating Frequency Tolerance khz

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz Operating Frequency Tolerance khz DEVELOPMENT KIT (Info Click here) 2.4 GHz ZigBee Transceiver Module Small Size, Light Weight, Low Cost Sleep Current less than 3 µa FCC and ETSI Certified for Unlicensed Operation The ZMN2405 2.4 GHz transceiver

More information

RF NiceRF Wireless Technology Co., Ltd. Rev

RF NiceRF Wireless Technology Co., Ltd. Rev - 1 - Catalog 1. Description...- 3-2. Features...- 3-3. Application...- 3-4. Electrical Specifications...- 4-5. Schematic...- 4-6. Pin Configuration...- 5-7. Antenna... - 6-8. Mechanical dimensions(unit:

More information

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board IXDP610 Digital PWM Controller IC Evaluation Board General Description The IXDP610 Digital Pulse Width Modulator (DPWM) is a programmable CMOS LSI device, which accepts digital pulse width data from a

More information

Design of the distributed data server using PIC_SERVER v3.7

Design of the distributed data server using PIC_SERVER v3.7 Author: Che-Chang Yang (2010-06-22); recommend: Yeh-Liang Hsu (2010-06-26). This document describes the design of the distributed data server (DDS) using PIC_SERVER v3.7. The DDS consists of two parts:

More information

Index Terms-Emergency vehicle clearance, Higher density, IR sensor, Micro controller, RFID Technology.

Index Terms-Emergency vehicle clearance, Higher density, IR sensor, Micro controller, RFID Technology. Design of an Intelligent Auto Traffic Signal Controller with Emergency Override * Geetha.E 1, V.Viswanadha 2, Kavitha.G 3 Abstract- The main objective of this project is to design an intelligent auto traffic

More information

SMARTALPHA RF TRANSCEIVER

SMARTALPHA RF TRANSCEIVER SMARTALPHA RF TRANSCEIVER Intelligent RF Modem Module RF Data Rates to 19200bps Up to 300 metres Range Programmable to 433, 868, or 915MHz Selectable Narrowband RF Channels Crystal Controlled RF Design

More information

AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL

AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL Document : AVL-10000T Version: 1.00 Author: Henry S Date: 25 July 2008 This module contains protection circuitry to guard against damage due to

More information

Master Op-Doc/Test Plan

Master Op-Doc/Test Plan Power Supply Master Op-Doc/Test Plan Define Engineering Specs Establish battery life Establish battery technology Establish battery size Establish number of batteries Establish weight of batteries Establish

More information

Keycards come with an imbedded RFID chip and antenna, there is no battery in the keycards. The keycards are encrypted and only

Keycards come with an imbedded RFID chip and antenna, there is no battery in the keycards. The keycards are encrypted and only Index Keycards 02 The following is a description of the type of Keycards and function 03 Programming and Initialization of the RFID Lock 04 Procedure for Initialization 05 Programming- Adding Keycards

More information

International Research Journal of Engineering and Technology (IRJET) e-issn: Volume: 03 Issue: 01 Jan p-issn:

International Research Journal of Engineering and Technology (IRJET) e-issn: Volume: 03 Issue: 01 Jan p-issn: HI-TECH HOSPITAL 1 Kalyanee Sharma, 2 Hemendra Singh, 3 Divya Verma, 4 Deepti Modi, Department of Electronics and Communication Engineering, Poornima College of Engineering, Jaipur, Rajasthan, India ---------------------------------------------------------------------***---------------------------------------------------------------------

More information

WSPR Audio Signal Source v2.0

WSPR Audio Signal Source v2.0 WSPR Audio Signal Source v2.0 A stand-alone WSPR signal source that generates audio WSPR tones to drive a SSB transmitter or transceiver. Features: - Internal timing or NMEA GPS timing for UTC synchronization

More information

Multi Frequency RFID Read Writer System

Multi Frequency RFID Read Writer System Multi Frequency RFID Read Writer System Uppala Sunitha 1, B Rama Murthy 2, P Thimmaiah 3, K Tanveer Alam 1 PhD Scholar, Department of Electronics, Sri Krishnadevaraya University, Anantapur, A.P, India

More information

AA-35 ZOOM. RigExpert. User s manual. Antenna and cable analyzer

AA-35 ZOOM. RigExpert. User s manual. Antenna and cable analyzer AA-35 ZOOM Antenna and cable analyzer RigExpert User s manual . Table of contents Introduction Operating the AA-35 ZOOM First time use Main menu Multifunctional keys Connecting to your antenna SWR chart

More information

VisorTrac A Tracking System for Mining

VisorTrac A Tracking System for Mining VisorTrac A Tracking System for Mining Marco North America, Inc. SYSTEM APPLICATION The VISORTRAC system was developed to allow tracking of mining personnel as well as mining vehicles. The VISORTRAC system

More information

In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics:

In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics: In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics: Links between Digital and Analogue Serial vs Parallel links Flow control

More information

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz Operating Frequency Tolerance khz

Characteristic Sym Notes Minimum Typical Maximum Units Operating Frequency Range MHz Operating Frequency Tolerance khz DEVELOPMENT KIT (Info Click here) 2.4 GHz ZigBee Transceiver Module Small Size, Light Weight, +18 dbm Transmitter Power Sleep Current less than 3 µa FCC and ETSI Certified for Unlicensed Operation The

More information

WSPR Audio Signal Source

WSPR Audio Signal Source WSPR Audio Signal Source A stand-alone WSPR signal source that generates audio WSPR tones to drive a SSB transmitter or transceiver. Features: - Internal timing or NMEA GPS timing for UTC synchronization

More information

I2C Demonstration Board I 2 C-bus Protocol

I2C Demonstration Board I 2 C-bus Protocol I2C 2005-1 Demonstration Board I 2 C-bus Protocol Oct, 2006 I 2 C Introduction I ² C-bus = Inter-Integrated Circuit bus Bus developed by Philips in the early 80s Simple bi-directional 2-wire bus: serial

More information

Catalog

Catalog Catalog 1. Description... - 3-2. Features... - 3-3. Application... - 3-4. Electrical specifications...- 4-5. Schematic... - 4-6. Pin Configuration... - 5-7. Antenna... - 6-8. Mechanical Dimension(Unit:

More information

Assembly Manual for VFO Board 2 August 2018

Assembly Manual for VFO Board 2 August 2018 Assembly Manual for VFO Board 2 August 2018 Parts list (Preliminary) Arduino 1 Arduino Pre-programmed 1 Faceplate Assorted Header Pins Full Board Rev A 10 104 capacitors 1 Rotary encode with switch 1 5-volt

More information

CEEN Bot Lab Design A SENIOR THESIS PROPOSAL

CEEN Bot Lab Design A SENIOR THESIS PROPOSAL CEEN Bot Lab Design by Deborah Duran (EENG) Kenneth Townsend (EENG) A SENIOR THESIS PROPOSAL Presented to the Faculty of The Computer and Electronics Engineering Department In Partial Fulfillment of Requirements

More information

RFID Integrated Teacher Monitoring

RFID Integrated Teacher Monitoring RFID Integrated Teacher Monitoring Introduction Article by Adewopo Adeniyi M.Sc, Texila American University, Nigeria Email: preciousadewopon@yahoo.com Radio Frequency Identification (RFID) is a generic

More information

RFID ACCESS CONTROL. SRðAN LALE FACULTY OF ELECTRICAL ENGINEERING EASTERN SARAJEVO

RFID ACCESS CONTROL. SRðAN LALE FACULTY OF ELECTRICAL ENGINEERING EASTERN SARAJEVO RFID ACCESS CONTROL SRðAN LALE FACULTY OF ELECTRICAL ENGINEERING EASTERN SARAJEVO 1 INTRODUCTION RFID (RADIO - FREQUENCY IDENTIFICATION) systems use RF signals for identification of people, animals and

More information

CHAPTER 11 NORTHERN ILLINOIS UNIVERSITY

CHAPTER 11 NORTHERN ILLINOIS UNIVERSITY CHAPTER 11 NORTHERN ILLINOIS UNIVERSITY Department of Electrical Engineering DeKalb, IL 60115 Principal Investigators: Mansour Tahernezhadi (815)-753-8568 Xuan Kong (815)-753-9942 123 124 NSF 2001 Engineering

More information

AAØZZ Control Board for Si570 Daughtercard

AAØZZ Control Board for Si570 Daughtercard AAØZZ Control Board for Si570 Daughtercard Complete Signal Generator for 10 to 157 MHz By Craig Johnson, AAØZZ AAØZZ@CBJOHN.COM www.cbjohn.com/aaøzz TABLE OF CONTENTS 1 Introduction... 2 2 Hardware Description...

More information

Stensat Transmitter Module

Stensat Transmitter Module Stensat Transmitter Module Stensat Group LLC Introduction The Stensat Transmitter Module is an RF subsystem designed for applications where a low-cost low-power radio link is required. The Transmitter

More information

Maintenance Manual. MTD SERIES 900 MHz, 10-WATT, DATA ONLY MOBILE RADIO. Mobile Communications LBI TABLE OF CONTENTS

Maintenance Manual. MTD SERIES 900 MHz, 10-WATT, DATA ONLY MOBILE RADIO. Mobile Communications LBI TABLE OF CONTENTS Mobile Communications MTD SERIES 900 MHz, 10-WATT, DATA ONLY MOBILE RADIO TABLE OF CONTENTS RF BOARD............................... LBI-38545 AUDIO BOARD............................ LBI-38546 LOGIC BOARD............................

More information

DESIGN AND DEVELOPMENT OF A MICROCONTROLLER BASED WIRELESS SECURITY ACCESS SYSTEM

DESIGN AND DEVELOPMENT OF A MICROCONTROLLER BASED WIRELESS SECURITY ACCESS SYSTEM DESIGN AND DEVELOPMENT OF A MICROCONTROLLER ASED WIRELESS SECURITY ACCESS SYSTEM 1 Adewale A. A., 2 Abdulkareem A., 3 Agbetuyi A. F., 4 Dike Ike Department of Electrical and Information Engineering, Covenant

More information

VDE Testing and Certification Institute. Contents Directory

VDE Testing and Certification Institute. Contents Directory Contents Directory 1 Description of the sample (EUT)...3 1.1 General description...3 1.2 Technical Specifications...4 1.2.1 Transmitter...4 2 Summary of test results...8 2.1 Transmitter test results...8

More information

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications AT-XTR-7020A-4 Multi-Channel Micro Embedded Transceiver Module The AT-XTR-7020A-4 radio data transceiver represents a simple and economical solution to wireless data communications. The employment of an

More information

Week 2 Lecture 1. Introduction to Communication Networks. Review: Analog and digital communications

Week 2 Lecture 1. Introduction to Communication Networks. Review: Analog and digital communications Week 2 Lecture 1 Introduction to Communication Networks Review: Analog and digital communications Topic: Internet Trend, Protocol, Transmission Principle Digital Communications is the foundation of Internet

More information

The "FISH" Quad Hand Sensor

The FISH Quad Hand Sensor The "FISH" Quad Hand Sensor Physics and Media Group MIT Media Laboratory 20 Ames Street E15-022 Cambridge, Mass 02139-4307 (617) 253-2383 phm@media.mit.edu ** U S E R S G U I D E ********* TABLE OF CONTENTS

More information

Brian Hanna Meteor IP 2007 Microcontroller

Brian Hanna Meteor IP 2007 Microcontroller MSP430 Overview: The purpose of the microcontroller is to execute a series of commands in a loop while waiting for commands from ground control to do otherwise. While it has not received a command it populates

More information

LBI-38392C IC DATA MAINTENANCE MANUAL LOGIC BOARD U707 OCTAL DATA LATCH 19D902172G1 & G2 TABLE OF CONTENTS

LBI-38392C IC DATA MAINTENANCE MANUAL LOGIC BOARD U707 OCTAL DATA LATCH 19D902172G1 & G2 TABLE OF CONTENTS LBI-38392C MAINTENANCE MANUAL LOGIC BOARD 19D902172G1 & G2 U707 OCTAL DATA LATCH IC DATA TABLE OF CONTENTS Page DESCRIPTION........................................... Front.. Cover CIRCUIT ANALYSIS........................................

More information

G3P-R232. User Manual. Release. 2.06

G3P-R232. User Manual. Release. 2.06 G3P-R232 User Manual Release. 2.06 1 INDEX 1. RELEASE HISTORY... 3 1.1. Release 1.01... 3 1.2. Release 2.01... 3 1.3. Release 2.02... 3 1.4. Release 2.03... 3 1.5. Release 2.04... 3 1.6. Release 2.05...

More information

Training Schedule. Robotic System Design using Arduino Platform

Training Schedule. Robotic System Design using Arduino Platform Training Schedule Robotic System Design using Arduino Platform Session - 1 Embedded System Design Basics : Scope : To introduce Embedded Systems hardware design fundamentals to students. Processor Selection

More information

ID Timer / Annunciator

ID Timer / Annunciator NØXAS ID Timer / Annunciator ID-O-Matic The ID-O-Matic is a single chip ID timer/annunciator intended for Amateur Radio and other applications. Several modes of operation make it suitable for use in the

More information

Re: Design Specifications for a Voice Activated Remote Control System (ENSC 340 Project)

Re: Design Specifications for a Voice Activated Remote Control System (ENSC 340 Project) October 31, 2002 Dr. Andrew Rawicz School of Engineering Science Simon Fraser University Burnaby, British Columbia V5A 1S6 Re: Design Specifications for a Voice Activated Remote Control System (ENSC 340

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

Revision RCT-433-UTR DATASHEET

Revision RCT-433-UTR DATASHEET Revision 1.1.0 RCT-433-UTR DATASHEET RADIOTRONIX, INC. RCT-433-UTR DATASHEET Radiotronix 905 Messenger Lane Moore, Oklahoma 73160 Phone 405.794.7730 Fax 405.794.7477 www.radiotronix.com 1 Document Control

More information

Power and ground is applied to the nrf401 Loop Module via connector footprint J1. Voltage range on this input must be restricted to +2.7V to +5.25V.

Power and ground is applied to the nrf401 Loop Module via connector footprint J1. Voltage range on this input must be restricted to +2.7V to +5.25V. nrf401-loopkit 1. Introduction The Loop Kit for the nrf401 Single chip 433MHz RF transceiver has been developed to enable customers to get hands-on experience with the functionality of the device combined

More information

Functional Description / User Manual

Functional Description / User Manual Functional Description / User Manual of SIEMENS VDO Immobilization system HONDA RxM Type 5WK49210 / 5WK49215 Functional description_rxm.doc Page 1 of 5 1. FUNCTIONAL DESCRIPTION The immobilizer system

More information

DS1307/DS X 8 Serial Real Time Clock

DS1307/DS X 8 Serial Real Time Clock DS1307/DS1308 64 X 8 Serial Real Time Clock www.dalsemi.com FEATURES Real time clock counts seconds, minutes, hours, date of the month, month, day of the week, and year with leap year compensation valid

More information

HF Power Amplifier (Reference Design Guide) RFID Systems / ASP

HF Power Amplifier (Reference Design Guide) RFID Systems / ASP 16 September 2008 Rev A HF Power Amplifier (Reference Design Guide) RFID Systems / ASP 1.) Scope Shown herein is a HF power amplifier design with performance plots. As every application is different and

More information

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many RXQ2 - XXX GFSK MULTICHANNEL RADIO TRANSCEIVER Intelligent modem Transceiver Data Rates to 100 kbps Selectable Narrowband Channels Crystal controlled design Supply Voltage 3.3V Serial Data Interface with

More information

Frequency 434=434MHz 868=868MHz 915=915MHz

Frequency 434=434MHz 868=868MHz 915=915MHz Ultra Low Power sub GHz Multichannels Transceiver The module is based on Texas Instruments CC0F component. This device combines a flexible, very low power RF transceiver with a powerful MHz Cortex M microcontroller

More information

Marantec bi linked Radio Accessories Service

Marantec bi linked Radio Accessories Service Marantec bi linked Radio Accessories 1 45 Service 2015.08 Impressions transmitters 2 45 Service 2015.08 Impressions wall controls 3 45 Service 2015.08 bi linked technology Simple encoding (e. g. Multi-Bit)

More information

DISCONTINUED. Modulation Type Number of RF Channels 15

DISCONTINUED. Modulation Type Number of RF Channels 15 RFM Products are now Murata products. 2.4 GHz Spread Spectrum Transceiver Module Small Size, Light Weight, Built-In Antenna Sleep Current less than 3 µa FCC, Canadian IC and ETSI Certified for Unlicensed

More information

LoRa1278 Wireless Transceiver Module

LoRa1278 Wireless Transceiver Module LoRa1278 Wireless Transceiver Module 1. Description LoRa1278 adopts Semtech RF transceiver chip SX1278, which adopts LoRa TM Spread Spectrum modulation frequency hopping technique. The features of long

More information

MPR kHz Reader

MPR kHz Reader MPR-5005 Page 1 Doc# 041326 MPR-5005 125kHz Reader Installation & Operation Manual - 041326 MPR-5005 Page 2 Doc# 041326 COPYRIGHT ACKNOWLEDGEMENTS The contents of this document are the property of Applied

More information

Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding

Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding Using the HT66F016L and the HT66F50 to Implement Remote Encoding and Decoding D/N:AN0327E Introduction This application note describes how to implement a 4 3 Key NEC remote encoding Demo Board using the

More information

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP ( 1

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (  1 Biomimetic Based Interactive Master Slave Robots T.Anushalalitha 1, Anupa.N 2, Jahnavi.B 3, Keerthana.K 4, Shridevi.S.C 5 Dept. of Telecommunication, BMSCE Bangalore, India. Abstract The system involves

More information

Handy dandy little circuit #17 #17

Handy dandy little circuit #17 #17 Handy dandy little circuit #17 #17 Download # 17 in PDF There are a lot of alarm systems on the market but you might be inclined to build your own. This little project can be put together using inexpensive

More information

Features. Haltronics Ltd (http://www.haltronicsltd.com/)

Features. Haltronics Ltd (http://www.haltronicsltd.com/) Embedding the wireless future.. Low-Cost SAW-stabilized surface mount OOK RF transmitter Typical Applications Remote Keyless Entry (RKE) Remote Lighting Controls On-Site Paging Asset Tracking Wireless

More information

AN0504 Tag Design with swarm bee LE

AN0504 Tag Design with swarm bee LE AN0504 Tag Design with swarm bee LE 1.4 NA-14-0267-0005-1.4 Document Information Document Title: Document Version: 1.4 Current Date: 2016-05-31 Print Date: 2016-05-31 Document ID: Document Author: Disclaimer

More information

JUMA-TRX2 DDS / Control Board description OH2NLT

JUMA-TRX2 DDS / Control Board description OH2NLT JUMA-TRX2 DDS / Control Board description OH2NLT 22.08.2007 General Key functions of the JUMA-TRX2 DDS / Control board are: - provide user interface functions with LCD display, buttons, potentiometers

More information

RF4432PRO wireless transceiver module

RF4432PRO wireless transceiver module wireless transceiver module RF4432PRO 1. Description RF4432PRO adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity (-121

More information

DEC-001 Installation Instructions

DEC-001 Installation Instructions DEC-001 Installation Instructions Skill Level: The installation of this assembly requires a medium level of expertise in working with modern electronic equipment. The use of appropriate tools, correct

More information

LBI-31564A. Mobile Communications. DELTA - SX MHz RADIO COMBINATIONS (NEGATIVE GROUND ONLY) Maintenance Manual

LBI-31564A. Mobile Communications. DELTA - SX MHz RADIO COMBINATIONS (NEGATIVE GROUND ONLY) Maintenance Manual A Mobile Communications DELTA - SX 136-174 MHz RADIO COMBINATIONS (NEGATIVE GROUND ONLY) Maintenance Manual TABLE OF CONTENTS MILITARY AND SYSTEM SPECIFICATIONS................................. 2-3 COMBINATION

More information

CAT-260 Repeater Controller Computer Automation Technology, Inc

CAT-260 Repeater Controller Computer Automation Technology, Inc CAT-260 Repeater Controller Computer Automation Technology, Inc 7378 W. Atlantic Blvd. #239 Margate, Florida 33063 Phone: (954) 978-6171 Fax: (561) 465-5891 Internet: http://www.catauto.com Table of Contents

More information

1 UAT Test Procedure and Report

1 UAT Test Procedure and Report 1 UAT Test Procedure and Report These tests are performed to ensure that the UAT Transmitter will comply with the equipment performance tests during and subsequent to all normal standard operating conditions

More information

AUTOMATIC ELECTRICITY METER READING AND REPORTING SYSTEM

AUTOMATIC ELECTRICITY METER READING AND REPORTING SYSTEM AUTOMATIC ELECTRICITY METER READING AND REPORTING SYSTEM Faris Shahin, Lina Dajani, Belal Sababha King Abdullah II Faculty of Engineeing, Princess Sumaya University for Technology, Amman 11941, Jordan

More information

SNIOT702 Specification. Version number:v 1.0.1

SNIOT702 Specification. Version number:v 1.0.1 Version number:v 1.0.1 Catelog 1 Product introduction... 1 1.1 Product introduction... 1 1.2 Product application... 1 1.3 Main characteristics... 2 1.4 Product advantage... 3 2 Technical specifications...

More information

Small RF Budget SRB MX145

Small RF Budget SRB MX145 Small RF Budget SRB MX145 V 1.0.0 Thank you for choosing the SRB Module Transmitter as an addition to your ham radio equipment! We hope it will turn into an important tool for you in the years to come.

More information

Digital-to-Analog Converter. Lab 3 Final Report

Digital-to-Analog Converter. Lab 3 Final Report Digital-to-Analog Converter Lab 3 Final Report The Ion Cannons: Shrinand Aggarwal Cameron Francis Nicholas Polito Section 2 May 1, 2017 1 Table of Contents Introduction..3 Rationale..3 Theory of Operation.3

More information

DNT2400. Low Cost 2.4 GHz FHSS Transceiver Module with I/O

DNT2400. Low Cost 2.4 GHz FHSS Transceiver Module with I/O 2.4 GHz Frequency Hopping Spread Spectrum Transceiver Point-to-point, Point-to-multipoint, Peer-to-peer and Tree-routing Networks Transmitter Power Configurable from 1 to 63 mw RF Data Rate Configurable

More information

RFID circuit with read/write functions

RFID circuit with read/write functions RFID circuit with read/write functions IZ2803-5 The IZ2803-5 (equivalent of EM4100 EM Microelectronic Marin SA) is chip for multifunction contactless read/write cards with 64 bit EEPROM The IZ2803-5 is

More information

Value Units -0.3 to +4.0 V -50 to

Value Units -0.3 to +4.0 V -50 to Designed for Short-Range Wireless Data Communications Supports 2.4-19.2 kbps Encoded Data Transmissions 3 V, Low Current Operation plus Sleep Mode Ready to Use OEM Module The DR3100 transceiver module

More information