SlideShare ist ein Scribd-Unternehmen logo
1 von 9
RF Module Interfacing without
Microcontrollers
Going wireless always starts with a basic RF communication, using serial encoders and
decoders. This process and methodology is described here very aptly, doesn’t matter whether
you are a newbie or not!
Going Wireless
These days, the term wireless is very much hyped! Whenever we hear the term wireless, stuffs
like Mobile telecommunication (GSM), Wi-Fi, Bluetooth, RF Communication, Wireless
networks, Zigbee, I2C, SPI, DTMF, 802.11b, Simplicity’s etc etc etc. Well, fortunately or
unfortunately, all of these protocols can be interfaced with a microcontroller in one way or the
other. But what matters is the level of complexity.
To start off, for beginners, RF (Radio Frequency) Communication is the most preferred and
low cost solution. All you need is a RF Module (Transmitter-Receiver Pair). Now, that’s not all.
RF Communication works on the principle of Serial Communication. Thus, you need something
which converts the conventional n-bit (4-bit, 8-bit, 16-bit, etc) data into serial data. For this, we
have two choices:
 Use a microcontroller to convert the n-bit data into serial data and vice-versa
 Use serial encoders/decoders to do the same
Since the title of the post says that we shouldn’t use microcontrollers, the only option left for us
is to use the encoder/decoder.
RF Communication Block Diagram
RF Communication Block Diagram (Click to Enlarge)
A general RF communication block diagram is shown above. Since most of the
encoders/decoders/microcontrollers are TTL compatible, most of the inputs by the user will be
given in TTL logic level. Thus, this TTL input is to be converted into serial data input using an
encoder or a microcontroller. This serial data can be directly read using the RF Transmitter,
which then performs ASK (in some cases FSK) modulation on it and transmit the data through
the antenna.
In the receiver side, the RF Receiver receives the modulated signal through the antenna,
performs all kinds of processing, filtering, demodulation, etc and gives out a serial data. This
serial data is then converted to a TTL level logic data, which is the same data that the user has
input.
So now, let’s look into the hardware that are required.
RF Module
RF Modules are used wireless transfer data. This makes them most suitable for remote control
applications, as in where you need to control some machines or robots without getting in touch
with them (may be due to various reasons like safety, etc). Now depending upon the type of
application, the RF module is chosen. For short range wireless control applications, an ASK RF
Transmitter-Receiver Module of frequency 315 MHz or 433 MHz is most suitable. They are
quite compact and cheap! You can buy them from the following stores:
 Robokits
 Rhydolabz
 Sparkfun
A typical 315MHz (or) 433MHz ASK RF Module looks like this (courtesy EngineersGarage)
RF Module
Now, let’s have a look at it’s pinout (courtesy EngineersGarage)
RF Module Pins
Pin Description:
Features:
 Range in open space(Standard Conditions) : 100 Meters
 RX Receiver Frequency : 433 MHz
 RX Typical Sensitivity : 105 Dbm
 RX Supply Current : 3.5 mA
 RX IF Frequency : 1MHz
 Low Power Consumption
 Easy For Application
 RX Operating Voltage : 5V
 TX Frequency Range : 433.92 MHz
 TX Supply Voltage : 3V ~ 6V
 TX Out Put Power : 4 ~ 12 Dbm
This has single channel for data transfer, thus serial data communication is used.
Serial Encoder/Decoder
The most popular serial encoder/decoder used is the HT12D-HT12E pair. Their description is
given below. It’s okay if you don’t understand what is written there. Just make sure you go
through the pin configurations and the circuit implementation.
The HT12E Encoder ICs are series of CMOS LSIs for Remote Control system applications.
They are capable of Encoding 12 bit of information which consists of N address bits and 12-N
data bits. Each address/data input is externally trinary programmable if bonded out.
HT12E Pin
The HT12D Decoder ICs are series of CMOS LSIs for remote control system applications. This
ICs are paired with each other. For proper operation a pair of encoder/decoder with the same
number of address and data format should be selected. The Decoder receive the serial address
and data from its corresponding encoder, transmitted by a carrier using an RF transmission
medium and gives output to the output pins after processing the data.
Features - Encoder
 18 PIN DIP
 Operating Voltage : 2.4V ~ 12V
 Low Power and High Noise Immunity
 CMOS Technology
 Low Standby Current and Minimum Transmission Word
 Built-in Oscillator needs only 5% Resistor
 Easy Interface with and RF or an Infrared transmission medium
 Minimal External Components
HT12D Pin
Features - Decoder
 18 PIN DIP
 Operating Voltage : 2.4V ~ 12.0V
 Low Power and High Noise Immunity
 CMOS Technology
 Low Stand by Current
 Ternary address setting
 Capable of Decoding 12 bits of Information
 8 ~ 12 Address Pins and 0 ~ 4 Data Pins
 Received Data are checked 2 times, Built in Oscillator needs only 5% resistor
 VT goes high during a valid transmission
 Easy Interface with an RF of IR transmission medium
 Minimal External Components
Applications
 Burglar Alarm, Smoke Alarm, Fire Alarm, Car Alarm, Security System
 Garage Door and Car Door Controllers
 Cordless telephone
 Other Remote Control System
Compatibility
 Compatible with RF Modules 433 MHz Link RF Modules (Tx + Rx Pair) 433 Mhz ASK
Now let’s move on to the circuit implementation part.
Circuit Implementation
There isn’t much in circuit implementation. You just need to take a solderless breadboard and
make the connections… and snap! You are done!
Transmitter Section
Make the following circuit on a breadboard. You are requested to implement the following
circuit at your own risk! We will NOT be responsible for any damages caused due to
implementation of the circuit, physically, mentally or financially.
RF Transmitter Section (Click to Enlarge)
Here, we have used four switches S1, S2, S3 and S4 to give 4-bit parallel data (D0-D3). Since
the switches are in active low state (i.e. low signal is sent when the switch is pressed), we need to
add external pull-up resistors as shown, so as to provide a high signal by default. A resistance as
high as 1Mohm is required in between OSC1 and OSC2 pins. The Transmitter Enable (TE, pin
14) pin is an active low pin. Thus, it is permanently grounded, so as to enable the transistor
always. The output serial data DOUT is fed to the RF Transmitter Module directly.
The most important thing lies in the address pins (A0-A7, pin1-8). Suppose you have two
wireless devices (A and B) in your house, both have different remote controls (AA and BB) and
both implement the same type of RF module (say 433 MHz). AA is the remote control of A and
BB is of B. Now, you obviously wouldn’t want AA to control B (which is the most probable case
since both the devices use same kind of RF module, having same frequency!). This is where
address pins come into play. There are 8 address pins, thus giving you an opportunity to have 8!
(8 factorial) different and independent ways to connect to a device, so that there is no
interference. The address pins MUST have the same address in both transmitter and
receiver, or else the data won’t be transferred. Refer to the receiver circuit for more details.
Receiver Section
Now make the following circuit on a different breadboard. As mentioned earlier, you are
requested to implement the following circuit at your own risk! We will NOT be responsible
for any damages caused due to implementation of the circuit, physically, mentally or
financially.
RF Receiver Section (Click to Enlarge)
The circuit of the receiver is also quite simple. Capacitor C1 is used between Vcc and GND for
noise filtering. Apart from that, all the address pins (A0-A7, pin 1-8) are grounded, just as in
transmitter. This is to ensure that the transmitted data is being received. Both the
transmitter and the receiver MUST have the same address pins configuration. Pin 17 (VT)
is enabled whenever the receiver receives any data. The serial data received by the RF Receiver
module is directly fed to pin 14 (DIN), which is then converted into 4-bit parallel data (D0-D3).
A 33 kohm resistor is connected in between OSC1 and OSC2.
Antenna
Okay, so now that all the connections are made, you must choose an antenna for signal
transmission. Usually, a 20-30 cm wire serves best. It is sufficient to give a range of 80 meters in
open region. To improve the efficiency, you can also use a coiled wire (take a wire and make it
into a coil). It increases the signal strength.
Result – What you will get?
Once the circuit is made and powered up, the four LEDs on the receiver end will glow by
default. The LED corresponding to VT glows only when some data is received. Now whenever
you press any switch (on the transmitter end), that particular LED (on the receiver end) goes off!
Interesting, eh?!

Weitere ähnliche Inhalte

Ähnlich wie Rf module interfacing without microcontrollers

Wireless Remote using RF Module
Wireless Remote using RF ModuleWireless Remote using RF Module
Wireless Remote using RF Module
ijtsrd
 
Hart protocol physical and data link layer implementation project
Hart protocol physical and   data link layer implementation projectHart protocol physical and   data link layer implementation project
Hart protocol physical and data link layer implementation project
Mohan Patel
 
Electronic switch control through rf
Electronic switch control through rfElectronic switch control through rf
Electronic switch control through rf
Ritesh Kumar
 

Ähnlich wie Rf module interfacing without microcontrollers (20)

Home appliances control using RF communication
Home appliances control using RF communicationHome appliances control using RF communication
Home appliances control using RF communication
 
Wireless Remote using RF Module
Wireless Remote using RF ModuleWireless Remote using RF Module
Wireless Remote using RF Module
 
Hart protocol physical and data link layer implementation project
Hart protocol physical and   data link layer implementation projectHart protocol physical and   data link layer implementation project
Hart protocol physical and data link layer implementation project
 
Bluetooth based home appliances control
Bluetooth based home appliances controlBluetooth based home appliances control
Bluetooth based home appliances control
 
Secure Data Transmission
Secure Data TransmissionSecure Data Transmission
Secure Data Transmission
 
Tunnel robot ppt
Tunnel robot pptTunnel robot ppt
Tunnel robot ppt
 
Electronic switch control through rf
Electronic switch control through rfElectronic switch control through rf
Electronic switch control through rf
 
Remote Operated Spy Robot Circuit
Remote Operated Spy Robot CircuitRemote Operated Spy Robot Circuit
Remote Operated Spy Robot Circuit
 
3rd prize winningTechno conclave presentation at Dibrugarh University
3rd prize winningTechno conclave presentation at Dibrugarh University 3rd prize winningTechno conclave presentation at Dibrugarh University
3rd prize winningTechno conclave presentation at Dibrugarh University
 
Rf module
Rf moduleRf module
Rf module
 
Dtmf based home automation without micro-controller
Dtmf based home automation without micro-controllerDtmf based home automation without micro-controller
Dtmf based home automation without micro-controller
 
TV Remote Operated Domestic Appliances Control
TV Remote Operated Domestic Appliances ControlTV Remote Operated Domestic Appliances Control
TV Remote Operated Domestic Appliances Control
 
Project ppt
Project pptProject ppt
Project ppt
 
LS-U1000 rf module
LS-U1000 rf moduleLS-U1000 rf module
LS-U1000 rf module
 
Design and Implementation of Low Power High Speed Symmetric Decoder Structure...
Design and Implementation of Low Power High Speed Symmetric Decoder Structure...Design and Implementation of Low Power High Speed Symmetric Decoder Structure...
Design and Implementation of Low Power High Speed Symmetric Decoder Structure...
 
k10681
k10681k10681
k10681
 
23.pptx
23.pptx23.pptx
23.pptx
 
Unit 5 ppt-idc
Unit 5 ppt-idcUnit 5 ppt-idc
Unit 5 ppt-idc
 
XBeeMeshFeatures
XBeeMeshFeaturesXBeeMeshFeatures
XBeeMeshFeatures
 
LS-U1000P radio modem
LS-U1000P radio modemLS-U1000P radio modem
LS-U1000P radio modem
 

Mehr von Tauseef khan (12)

unit-6 pulse-de-modulation
unit-6 pulse-de-modulationunit-6 pulse-de-modulation
unit-6 pulse-de-modulation
 
Chapter 4 - multiple regression
Chapter 4  - multiple regressionChapter 4  - multiple regression
Chapter 4 - multiple regression
 
spread spectrum technique
 spread spectrum technique spread spectrum technique
spread spectrum technique
 
9. aircraft electrical systems
9. aircraft electrical systems9. aircraft electrical systems
9. aircraft electrical systems
 
2g,3g,4g technology
2g,3g,4g technology2g,3g,4g technology
2g,3g,4g technology
 
Principles of marketing
Principles of marketingPrinciples of marketing
Principles of marketing
 
Dense wavelength division multiplexing
Dense wavelength division multiplexingDense wavelength division multiplexing
Dense wavelength division multiplexing
 
Fundamentals of aircraft design
Fundamentals of aircraft designFundamentals of aircraft design
Fundamentals of aircraft design
 
Design of a microstrip bandpass filter
Design of a microstrip bandpass filter Design of a microstrip bandpass filter
Design of a microstrip bandpass filter
 
Design of a microstrip bandpass filter for 3.1 10.6 g hz uwb system
Design of a microstrip bandpass filter for 3.1 10.6 g hz uwb systemDesign of a microstrip bandpass filter for 3.1 10.6 g hz uwb system
Design of a microstrip bandpass filter for 3.1 10.6 g hz uwb system
 
network Addressing
network Addressingnetwork Addressing
network Addressing
 
Analysis of vertical and horizontal handoff
Analysis of vertical and horizontal handoff Analysis of vertical and horizontal handoff
Analysis of vertical and horizontal handoff
 

Kürzlich hochgeladen

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
dharasingh5698
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Kürzlich hochgeladen (20)

Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 

Rf module interfacing without microcontrollers

  • 1. RF Module Interfacing without Microcontrollers Going wireless always starts with a basic RF communication, using serial encoders and decoders. This process and methodology is described here very aptly, doesn’t matter whether you are a newbie or not! Going Wireless These days, the term wireless is very much hyped! Whenever we hear the term wireless, stuffs like Mobile telecommunication (GSM), Wi-Fi, Bluetooth, RF Communication, Wireless networks, Zigbee, I2C, SPI, DTMF, 802.11b, Simplicity’s etc etc etc. Well, fortunately or unfortunately, all of these protocols can be interfaced with a microcontroller in one way or the other. But what matters is the level of complexity. To start off, for beginners, RF (Radio Frequency) Communication is the most preferred and low cost solution. All you need is a RF Module (Transmitter-Receiver Pair). Now, that’s not all. RF Communication works on the principle of Serial Communication. Thus, you need something which converts the conventional n-bit (4-bit, 8-bit, 16-bit, etc) data into serial data. For this, we have two choices:  Use a microcontroller to convert the n-bit data into serial data and vice-versa  Use serial encoders/decoders to do the same Since the title of the post says that we shouldn’t use microcontrollers, the only option left for us is to use the encoder/decoder.
  • 2. RF Communication Block Diagram RF Communication Block Diagram (Click to Enlarge) A general RF communication block diagram is shown above. Since most of the encoders/decoders/microcontrollers are TTL compatible, most of the inputs by the user will be given in TTL logic level. Thus, this TTL input is to be converted into serial data input using an encoder or a microcontroller. This serial data can be directly read using the RF Transmitter, which then performs ASK (in some cases FSK) modulation on it and transmit the data through the antenna. In the receiver side, the RF Receiver receives the modulated signal through the antenna, performs all kinds of processing, filtering, demodulation, etc and gives out a serial data. This serial data is then converted to a TTL level logic data, which is the same data that the user has input. So now, let’s look into the hardware that are required. RF Module RF Modules are used wireless transfer data. This makes them most suitable for remote control applications, as in where you need to control some machines or robots without getting in touch with them (may be due to various reasons like safety, etc). Now depending upon the type of application, the RF module is chosen. For short range wireless control applications, an ASK RF Transmitter-Receiver Module of frequency 315 MHz or 433 MHz is most suitable. They are quite compact and cheap! You can buy them from the following stores:  Robokits  Rhydolabz  Sparkfun A typical 315MHz (or) 433MHz ASK RF Module looks like this (courtesy EngineersGarage)
  • 3. RF Module Now, let’s have a look at it’s pinout (courtesy EngineersGarage)
  • 4. RF Module Pins Pin Description:
  • 5. Features:  Range in open space(Standard Conditions) : 100 Meters  RX Receiver Frequency : 433 MHz  RX Typical Sensitivity : 105 Dbm  RX Supply Current : 3.5 mA  RX IF Frequency : 1MHz  Low Power Consumption  Easy For Application  RX Operating Voltage : 5V  TX Frequency Range : 433.92 MHz  TX Supply Voltage : 3V ~ 6V  TX Out Put Power : 4 ~ 12 Dbm This has single channel for data transfer, thus serial data communication is used. Serial Encoder/Decoder The most popular serial encoder/decoder used is the HT12D-HT12E pair. Their description is given below. It’s okay if you don’t understand what is written there. Just make sure you go through the pin configurations and the circuit implementation. The HT12E Encoder ICs are series of CMOS LSIs for Remote Control system applications. They are capable of Encoding 12 bit of information which consists of N address bits and 12-N data bits. Each address/data input is externally trinary programmable if bonded out.
  • 6. HT12E Pin The HT12D Decoder ICs are series of CMOS LSIs for remote control system applications. This ICs are paired with each other. For proper operation a pair of encoder/decoder with the same number of address and data format should be selected. The Decoder receive the serial address and data from its corresponding encoder, transmitted by a carrier using an RF transmission medium and gives output to the output pins after processing the data. Features - Encoder  18 PIN DIP  Operating Voltage : 2.4V ~ 12V  Low Power and High Noise Immunity  CMOS Technology  Low Standby Current and Minimum Transmission Word  Built-in Oscillator needs only 5% Resistor  Easy Interface with and RF or an Infrared transmission medium  Minimal External Components
  • 7. HT12D Pin Features - Decoder  18 PIN DIP  Operating Voltage : 2.4V ~ 12.0V  Low Power and High Noise Immunity  CMOS Technology  Low Stand by Current  Ternary address setting  Capable of Decoding 12 bits of Information  8 ~ 12 Address Pins and 0 ~ 4 Data Pins  Received Data are checked 2 times, Built in Oscillator needs only 5% resistor  VT goes high during a valid transmission  Easy Interface with an RF of IR transmission medium  Minimal External Components Applications  Burglar Alarm, Smoke Alarm, Fire Alarm, Car Alarm, Security System  Garage Door and Car Door Controllers  Cordless telephone  Other Remote Control System Compatibility  Compatible with RF Modules 433 MHz Link RF Modules (Tx + Rx Pair) 433 Mhz ASK Now let’s move on to the circuit implementation part. Circuit Implementation There isn’t much in circuit implementation. You just need to take a solderless breadboard and make the connections… and snap! You are done! Transmitter Section Make the following circuit on a breadboard. You are requested to implement the following circuit at your own risk! We will NOT be responsible for any damages caused due to implementation of the circuit, physically, mentally or financially.
  • 8. RF Transmitter Section (Click to Enlarge) Here, we have used four switches S1, S2, S3 and S4 to give 4-bit parallel data (D0-D3). Since the switches are in active low state (i.e. low signal is sent when the switch is pressed), we need to add external pull-up resistors as shown, so as to provide a high signal by default. A resistance as high as 1Mohm is required in between OSC1 and OSC2 pins. The Transmitter Enable (TE, pin 14) pin is an active low pin. Thus, it is permanently grounded, so as to enable the transistor always. The output serial data DOUT is fed to the RF Transmitter Module directly. The most important thing lies in the address pins (A0-A7, pin1-8). Suppose you have two wireless devices (A and B) in your house, both have different remote controls (AA and BB) and both implement the same type of RF module (say 433 MHz). AA is the remote control of A and BB is of B. Now, you obviously wouldn’t want AA to control B (which is the most probable case since both the devices use same kind of RF module, having same frequency!). This is where address pins come into play. There are 8 address pins, thus giving you an opportunity to have 8! (8 factorial) different and independent ways to connect to a device, so that there is no interference. The address pins MUST have the same address in both transmitter and receiver, or else the data won’t be transferred. Refer to the receiver circuit for more details. Receiver Section Now make the following circuit on a different breadboard. As mentioned earlier, you are requested to implement the following circuit at your own risk! We will NOT be responsible for any damages caused due to implementation of the circuit, physically, mentally or financially.
  • 9. RF Receiver Section (Click to Enlarge) The circuit of the receiver is also quite simple. Capacitor C1 is used between Vcc and GND for noise filtering. Apart from that, all the address pins (A0-A7, pin 1-8) are grounded, just as in transmitter. This is to ensure that the transmitted data is being received. Both the transmitter and the receiver MUST have the same address pins configuration. Pin 17 (VT) is enabled whenever the receiver receives any data. The serial data received by the RF Receiver module is directly fed to pin 14 (DIN), which is then converted into 4-bit parallel data (D0-D3). A 33 kohm resistor is connected in between OSC1 and OSC2. Antenna Okay, so now that all the connections are made, you must choose an antenna for signal transmission. Usually, a 20-30 cm wire serves best. It is sufficient to give a range of 80 meters in open region. To improve the efficiency, you can also use a coiled wire (take a wire and make it into a coil). It increases the signal strength. Result – What you will get? Once the circuit is made and powered up, the four LEDs on the receiver end will glow by default. The LED corresponding to VT glows only when some data is received. Now whenever you press any switch (on the transmitter end), that particular LED (on the receiver end) goes off! Interesting, eh?!