- Wired Link
- Wireless Link
- RF link
- Bluetooth Link
- WiFi Link
- IR Link
- DTMF Link
In this we send Serial Data via RF module to rover. RF Modules are available in the market in pairs. A pair has one transmitter and one receiver. Transmitter has a data in line and Receiver has a data out line. To generate serial data you are going to need serial encoder and serial decoder (HT12E and HT12D download data sheet from right side). At the end of the data sheets the test circuits are given those are the best for our purpose.
Now lets go to the PC part, all PCs has a Parallel Port mostly called Printer port or LPT port. Each printer port consists of three port addresses; data, status and control port. These addresses are in sequential order. That is, if the data port is at address 0x0378, the corresponding status port is at 0x0379 and the control port is at 0x037a.
Printer-------- Data Port ----------Status -----------Control
LPT1 --------- 0x03bc ------------ 0x03bd ----------0x03be
LPT2 ----------0x0378-------------0x0379-----------0x037a
LPT3 ----------0x0278-------------0x0279-----------0x027a
*Go to BIOS setup and set the address of your Printer port to 0x0378 and port type to LPT.
Pin Description
First define the port
outportb(p+2, 3); //Write 3 on control port 0x37a
z=inportb(p+1); //read status port 0x379 and store in variable z
*status port is internally pulled up so it detects 0 as an input
for more details (regarding hardware or software) you can contact me by leaving comments.
Sci. Shashwat Ratan

