SlideShare a Scribd company logo
1 
Visit us @ www.thearyatechnologies.com 
Email: aryaprotech@gmail.com / 
info@thearyatechnologies.com 
Contact us@ 0253-2512131 
Wireless Serial Communication RF Modem, 2.4 GHz, 30 meter range 
Overview 
CC2500 RF Module is a Transreceiver module which provides easy to use RF communication at 2.4 GHz. It can be used to transmit and receive data at multiple baud rates from any standard CMOS/TTL source. It works in Half Duplex mode i.e. it provides communication in both directions, but only one direction at same time (not simultaneously). This switching from receiver to transmitter mode is done automatically. 
RF Module can be used for applications that need two way wireless data transmission. It features high data rate and longer transmission distance. The communication protocol is self controlled and completely transparent to user interface. The module can be embedded to your current design so that wireless communication can be set up easily.
2 
Features 
 Supports Multiple Baud rates (4800/9600/19200/38400). 
 Supports Multiple Channel Selection (CH0/CH1/CH2/CH3). 
 Works on ISM band (2.4 GHz) which is reserved internationally so no need to apply for license. 
 No complex wireless connection software or intimate knowledge of RF is required to connect your serial devices. 
 Designed to be as easy to use as cables. 
 No external Antenna required. 
 Plug and play device. 
 Works on 5-9v DC supply. 
 Standard UART Interface. 
Applications 
 Consumer electronics. 
 Wireless game controllers. 
 Wireless keyboard and mouse. 
 Weather stations. 
 Sensor Networks / Data collection. 
 Wireless metering. 
 RF enabled remote controls. 
 Access control / Identity discrimination. 
 Wireless data link (communication). 
 Wireless audio. 
 IT home appliance. 
 Smart house products / Security Systems. 
 Remote control / Remote measurement system.
3 
Specifications 
Parameter Min Typ Max Units 
Working Voltage 
4.5 
5 
9 
Volts 
Frequency 
2.4 
GHz 
Range 
30 
Meters 
UART baud rate (8 bit data, no parity, 1 stop bit) (1) 
4800/9600/19200/38400 
bps 
Frequency channel (1) 
CH0/CH1/CH2/CH3 
- 
Maximum Data Transmission (2) 
32 
Characters 
Note: 
1. Baud Rate & Frequency Channel Settings depends on DIP Switch Position. (Refer Page No. 5 &6) 
2. Carriage Return (CR) is required at the end of string for successful data transmission.
4 
Pin Diagram 
Pin Pin Name Pin Name 
RX 
Receive Input 
Input serial data of 3 to 5V logic level 
TX 
Transmit Output 
Output serial data of 3V logic level 
+5V 
Power Supply 
Regulated 5V supply input 
Gnd 
Ground 
Ground level of power supply 
Operation 
This module works in half-duplex mode. Means it can either transmit or receive but not both at same time. After each transmission, module will be switched to receiver mode automatically. The LED for TX and RX indicates whether IC is currently receiving or transmitting data. The data sent is checked for CRC error if any. The RX LED is directly on TX OUT pin to indicate that actual data is received and it is sent to output pin. 
Settings 
The module supports multiple baud rates and multiple frequency channels. The settings will take place only during power on i.e. you will have to restart the module every time you change the setting. Modifying during power up will have no effect on operation of module. 
DIP switch number 1 & 2 are used to set the baud rate whereas DIP switch number 3 & 4 are used to select channel frequency.
5 
Frequency Channel Setting 
Setting Frequency Channel can be used to have multiple sets operating at same time but without Interfering with each other. The pair having same Channel setting will be able to communicate with each other. Thus avoiding data collision between multiple set of modules. 
Frequency channel has to be set when module is OFF, as the switch positions are read only during power up. Modifying this setting during operation will have no effect on operation of module. 
Channel settings mentioned in table given below are for Baud rate 9600 bps. 
Switch Channel Setting 
Channel =0 
Channel =1 
Channel =2 
Channel =3
6 
Baud Rate Setting 
Baud rate has to be set when module is OFF, as the switch positions are read only 
during power up. Modifying this setting during operation will have no effect on 
operation of module. 
Baud rate settings mentioned in table given below are for Channel 0. 
Switch 
Baud Rate Setting 
9600 bps 
38400 bps 
19200 bps 
4800 bps
7 
Interfacing with 8051 Microcontroller
8 
Code 
LCD will display data received & send string “received” as an acknowledgement. Here baud rate setting is 9600. 
#include<reg52.h> 
#include <string.h> 
#define cmdport P2 
#define dataport P0 
unsigned char ntc[32]; 
unsigned char current_byte = 0; 
unsigned char icnt = 0; 
sbit rs = cmdport^6; //register select pin 
//sbit rw = cmdport^1; // read write pin 
sbit e = cmdport^7; //enable pin 
void ser_init(void); 
void Delay250us (void); 
void MsDelay (int n); 
void read_ntc(void); 
void lcdcmd(unsigned char item); 
void lcddata(unsigned char item); 
void lcdstr(unsigned char *s); 
void lcdinit(void); 
void Delay250us (void) 
{ 
int j ; 
for(j = 0 ; j < 100 ; j ++) 
{ 
} 
} 
void MsDelay (int n) 
{ 
int j ; 
for(j = 0 ; j < n ; j ++) 
{ 
Delay250us() ; 
Delay250us() ; 
Delay250us() ; 
Delay250us() ; 
} 
} 
void ser_init(void) 
{ 
TMOD=0x20; //Timer 1 Mode 2
9 
TH1=-3; // Bouad Rate-9600 
SCON=0x050; // 8 bit,1 stop bit 
TR1=1; // start timer 
ES = 1; // enable serial interrupts 
} 
void recieve() interrupt 4 using 1 // Function to recieve data serialy from RS232 
{ 
if (RI) 
{ 
ntc[ current_byte]=SBUF; 
RI=0; 
current_byte++; 
} 
} 
void Ser_Write_Text(unsigned char *str) 
{ 
unsigned char l,i; 
l = strlen(str)+1; // get the length of string 
for(i=1;i<l;i++) 
{ 
SBUF=*str; // send every char one by one 
while(TI==0); 
TI=0; 
str++; 
} 
} 
void ser_write_no(unsigned int no) 
{ 
SBUF=no; 
while(TI==0); 
TI=0; 
} 
void read_ntc(void) // Function to display the received string 
{ 
unsigned char count; 
lcdcmd(0x01); 
MsDelay(10); 
lcdcmd(0x80); 
MsDelay(10); 
for(count=0;count<current_byte;count++) 
{ 
lcddata(ntc[count]);
10 
if (count==15) 
{ 
lcdcmd(0xC0); 
MsDelay(10); 
} 
} 
current_byte=0; 
} 
//Function to send command to LCD 
void lcdcmd(unsigned char item) 
{ 
dataport = item; 
rs= 0; 
//rw=0; 
e=1; 
MsDelay(1); 
e=0; 
} 
//Function to send data to LCD 
void lcddata(unsigned char item) 
{ 
dataport = item; 
rs= 1; 
//rw=0; 
e=1; 
MsDelay(1); 
e=0; 
} 
//Function to display string 
void lcdstr(unsigned char *s) 
{ 
unsigned char l,i; 
l = strlen(s); // get the length of string 
for(i=1;i<=l;i++) 
{ 
lcddata(*s); // write every char one by one 
s++; 
} 
} 
//Function to initialise LCD 
void lcdinit(void) 
{
11 
lcdcmd(0x38); // for using 8-bit 2 row mode of LCD 
MsDelay(10); 
lcdcmd(0x0E); // turn display ON for cursor blinking 
MsDelay(10); 
lcdcmd(0x01); //clear screen 
MsDelay(10); 
lcdcmd(0x06); //display ON 
MsDelay(10); 
} 
void main() 
{ 
EA = 1; /* enable global interrupts */ 
lcdinit(); 
MsDelay(10); 
lcdcmd(0x80); 
MsDelay(10); 
lcdstr("CC2500"); 
lcdcmd(0xC0); 
MsDelay(10); 
lcdstr("Interface"); 
MsDelay(100); 
ser_init(); 
MsDelay(50); 
while(1) 
{ 
while(current_byte==0); 
read_ntc(); 
current_byte=0; 
Ser_Write_Text("Recieved"); 
ser_write_no(13); 
MsDelay(10); 
} 
}
12 
Interfacing with PC 
Code 
Code is written inVB.NET 2010 for transmitting & reception of data to & from 
CC2500 module. Here baud rate setting is 9600 bps.
13 
Imports System 
Imports System.IO.Ports 
Public Class Form1 
Dim WithEvents port As SerialPort = New _ 
System.IO.Ports.SerialPort("COM3", 9600, Parity.None, 8, StopBits.One) 
Private Sub Form1_Load(ByVal sender As Object, ByVal e As _ 
System.EventArgs) Handles Me.Load 
CheckForIllegalCrossThreadCalls = False 
If port.IsOpen = False Then port.Open() 
End Sub 
Private Sub port_DataReceived(ByVal sender As Object, ByVal e As _ 
System.IO.Ports.SerialDataReceivedEventArgs) Handles port.DataReceived 
Label1.Text = port.ReadExisting 
End Sub 
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 
port.Write(TextBox1.Text & vbCr) 
End Sub 
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click 
Application.Exit() 
End Sub 
End Class

More Related Content

What's hot

Labmannual
LabmannualLabmannual
Labmannual
Matiullah Jamil
 
Pt650 d英文说明书 (1)
Pt650 d英文说明书 (1)Pt650 d英文说明书 (1)
Pt650 d英文说明书 (1)
Toàn Năng group
 
Uart 16550
Uart 16550Uart 16550
Uart 16550
Aranta Chatterjee
 
8051 serial communication-UART
8051 serial communication-UART8051 serial communication-UART
8051 serial communication-UART
Pantech ProLabs India Pvt Ltd
 
FPGA implementation of synchronous and asynchronous counter and simulation of...
FPGA implementation of synchronous and asynchronous counter and simulation of...FPGA implementation of synchronous and asynchronous counter and simulation of...
FPGA implementation of synchronous and asynchronous counter and simulation of...
ASHIMA GUPTA
 
Imx53 uart- GUIDE BOOK
Imx53 uart- GUIDE BOOKImx53 uart- GUIDE BOOK
Imx53 uart- GUIDE BOOK
Shahrukh Javed
 
Uart
UartUart
Verification of uart ip core using uvm
Verification of uart ip core using uvmVerification of uart ip core using uvm
Verification of uart ip core using uvm
eSAT Publishing House
 
Serial Communication Uart soc
Serial Communication  Uart socSerial Communication  Uart soc
Serial Communication Uart soc
Satyam Sharma
 
Wireless UART Controller: XR18W750
Wireless UART Controller: XR18W750Wireless UART Controller: XR18W750
Wireless UART Controller: XR18W750
Premier Farnell
 
Llpc2148 sci
Llpc2148 sciLlpc2148 sci
Llpc2148 scianishgoel
 
Serial communication of microcontroller 8051
Serial communication of microcontroller 8051Serial communication of microcontroller 8051
Serial communication of microcontroller 8051
Nilesh Bhaskarrao Bahadure
 
Interface gsm module with pic
Interface gsm module with picInterface gsm module with pic
Interface gsm module with pic
Ravindra Saini
 
SEM88_Presentation
SEM88_PresentationSEM88_Presentation
SEM88_PresentationLuka Penger
 
Analog to Digital converter in ARM
Analog to Digital converter in ARMAnalog to Digital converter in ARM
Analog to Digital converter in ARM
Aarav Soni
 

What's hot (20)

Labmannual
LabmannualLabmannual
Labmannual
 
Pt650 d英文说明书 (1)
Pt650 d英文说明书 (1)Pt650 d英文说明书 (1)
Pt650 d英文说明书 (1)
 
Uart 16550
Uart 16550Uart 16550
Uart 16550
 
8051 serial communication-UART
8051 serial communication-UART8051 serial communication-UART
8051 serial communication-UART
 
FPGA implementation of synchronous and asynchronous counter and simulation of...
FPGA implementation of synchronous and asynchronous counter and simulation of...FPGA implementation of synchronous and asynchronous counter and simulation of...
FPGA implementation of synchronous and asynchronous counter and simulation of...
 
UART
UARTUART
UART
 
Imx53 uart- GUIDE BOOK
Imx53 uart- GUIDE BOOKImx53 uart- GUIDE BOOK
Imx53 uart- GUIDE BOOK
 
Uart
UartUart
Uart
 
Verification of uart ip core using uvm
Verification of uart ip core using uvmVerification of uart ip core using uvm
Verification of uart ip core using uvm
 
Serial Communication Uart soc
Serial Communication  Uart socSerial Communication  Uart soc
Serial Communication Uart soc
 
Intel Quark HSUART
Intel Quark HSUARTIntel Quark HSUART
Intel Quark HSUART
 
Wireless UART Controller: XR18W750
Wireless UART Controller: XR18W750Wireless UART Controller: XR18W750
Wireless UART Controller: XR18W750
 
Llpc2148 sci
Llpc2148 sciLlpc2148 sci
Llpc2148 sci
 
Uart
UartUart
Uart
 
Serial communication of microcontroller 8051
Serial communication of microcontroller 8051Serial communication of microcontroller 8051
Serial communication of microcontroller 8051
 
Naveen UART BATCH 43
Naveen UART BATCH 43Naveen UART BATCH 43
Naveen UART BATCH 43
 
NAVEEN UART BATCH 43
NAVEEN UART BATCH 43NAVEEN UART BATCH 43
NAVEEN UART BATCH 43
 
Interface gsm module with pic
Interface gsm module with picInterface gsm module with pic
Interface gsm module with pic
 
SEM88_Presentation
SEM88_PresentationSEM88_Presentation
SEM88_Presentation
 
Analog to Digital converter in ARM
Analog to Digital converter in ARMAnalog to Digital converter in ARM
Analog to Digital converter in ARM
 

Viewers also liked

October ieee sensor luncheon 2015
October ieee sensor luncheon 2015October ieee sensor luncheon 2015
October ieee sensor luncheon 2015
Connie L. Luthy, PhD, MBA
 
A Novel Color Image Fusion for Multi Sensor Night Vision Images
A Novel Color Image Fusion for Multi Sensor Night Vision ImagesA Novel Color Image Fusion for Multi Sensor Night Vision Images
A Novel Color Image Fusion for Multi Sensor Night Vision Images
Editor IJCATR
 
56210 proximity sensor-signed
56210 proximity sensor-signed56210 proximity sensor-signed
56210 proximity sensor-signedcambienhungphu
 
Using color sensor for user interaction
Using color sensor for user interaction Using color sensor for user interaction
Using color sensor for user interaction Alex Tien
 
Inductive proximity sensors
Inductive proximity sensorsInductive proximity sensors
Inductive proximity sensorsamitkahire
 
Color sensor
Color sensorColor sensor
Color sensor
aroosa khan
 
Tcs230
Tcs230Tcs230
Photoelectric Sensors With Applications
Photoelectric Sensors With ApplicationsPhotoelectric Sensors With Applications
Photoelectric Sensors With Applications
Vishakha Singhal
 
A report on Proximity Sensor
A report on Proximity SensorA report on Proximity Sensor
A report on Proximity Sensor
koustubhchakraborty_94
 
Robotics-Colour sensor
Robotics-Colour sensorRobotics-Colour sensor
Robotics-Colour sensor
Narayani Naresh Kumar
 
Colour sensor vivek
Colour sensor   vivekColour sensor   vivek
Colour sensor vivek
Vivek Srivastava
 
Ir sensor
Ir sensorIr sensor
Sensors-Interfacing Techniques
Sensors-Interfacing TechniquesSensors-Interfacing Techniques
Sensors-Interfacing Techniques
Dr.YNM
 
1569736195
15697361951569736195
1569736195
Fatoom Hashim
 

Viewers also liked (16)

Bh26391395
Bh26391395Bh26391395
Bh26391395
 
October ieee sensor luncheon 2015
October ieee sensor luncheon 2015October ieee sensor luncheon 2015
October ieee sensor luncheon 2015
 
A Novel Color Image Fusion for Multi Sensor Night Vision Images
A Novel Color Image Fusion for Multi Sensor Night Vision ImagesA Novel Color Image Fusion for Multi Sensor Night Vision Images
A Novel Color Image Fusion for Multi Sensor Night Vision Images
 
56210 proximity sensor-signed
56210 proximity sensor-signed56210 proximity sensor-signed
56210 proximity sensor-signed
 
Using color sensor for user interaction
Using color sensor for user interaction Using color sensor for user interaction
Using color sensor for user interaction
 
Inductive proximity sensors
Inductive proximity sensorsInductive proximity sensors
Inductive proximity sensors
 
Color sensor
Color sensorColor sensor
Color sensor
 
Tcs230
Tcs230Tcs230
Tcs230
 
Photoelectric Sensors With Applications
Photoelectric Sensors With ApplicationsPhotoelectric Sensors With Applications
Photoelectric Sensors With Applications
 
A report on Proximity Sensor
A report on Proximity SensorA report on Proximity Sensor
A report on Proximity Sensor
 
Robotics-Colour sensor
Robotics-Colour sensorRobotics-Colour sensor
Robotics-Colour sensor
 
Colour sensor vivek
Colour sensor   vivekColour sensor   vivek
Colour sensor vivek
 
Color detection
Color detectionColor detection
Color detection
 
Ir sensor
Ir sensorIr sensor
Ir sensor
 
Sensors-Interfacing Techniques
Sensors-Interfacing TechniquesSensors-Interfacing Techniques
Sensors-Interfacing Techniques
 
1569736195
15697361951569736195
1569736195
 

Similar to Product catlog

Sereial com. ppt
Sereial com. pptSereial com. ppt
Sereial com. pptgaurav5345
 
EC8691 - UNIT 5.pdf
EC8691 - UNIT 5.pdfEC8691 - UNIT 5.pdf
EC8691 - UNIT 5.pdf
SPonmalar1
 
8051 serial communication1
8051 serial communication1 8051 serial communication1
8051 serial communication1 vijaydeepakg
 
Analog to Digital Converter
Analog to Digital ConverterAnalog to Digital Converter
Analog to Digital Converter
Ariel Tonatiuh Espindola
 
8051 TIMER COUNTER SERIAL COMM. INTERUPT PROGRAMMING.pdf
8051 TIMER COUNTER SERIAL COMM. INTERUPT PROGRAMMING.pdf8051 TIMER COUNTER SERIAL COMM. INTERUPT PROGRAMMING.pdf
8051 TIMER COUNTER SERIAL COMM. INTERUPT PROGRAMMING.pdf
ShashiKiran664181
 
m.tech esd lab manual for record
m.tech esd lab manual for recordm.tech esd lab manual for record
m.tech esd lab manual for record
G Lemuel George
 
Micro c lab8(serial communication)
Micro c lab8(serial communication)Micro c lab8(serial communication)
Micro c lab8(serial communication)
Mashood
 
Mini plc-programmable logic controller
Mini plc-programmable logic controllerMini plc-programmable logic controller
Mini plc-programmable logic controller
PrasadPurohit1988
 
Radio frequency identification system
Radio frequency identification systemRadio frequency identification system
Radio frequency identification systemAminu Bugaje
 
8051 serial communication
8051 serial communication8051 serial communication
8051 serial communicationcanh phan
 
Study of Data sheet of 56824 DSP processors
Study of Data sheet of 56824 DSP processorsStudy of Data sheet of 56824 DSP processors
Study of Data sheet of 56824 DSP processors
Er. Ashish Pandey
 
Basic of Firmware & Embedded Software Programming in C
Basic of Firmware & Embedded Software Programming in CBasic of Firmware & Embedded Software Programming in C
Basic of Firmware & Embedded Software Programming in C
Kapil Thakar
 
ACIT - CCNA Training Course Topic - Switch Stp ACIT
ACIT - CCNA Training Course Topic - Switch Stp ACITACIT - CCNA Training Course Topic - Switch Stp ACIT
ACIT - CCNA Training Course Topic - Switch Stp ACIT
Sleek International
 
UART
UARTUART
LCD_Example.pptx
LCD_Example.pptxLCD_Example.pptx
LCD_Example.pptx
julioalexanderaguila
 
serial-200505101453.pdf
serial-200505101453.pdfserial-200505101453.pdf
serial-200505101453.pdf
KiranG731731
 
Serial Communication
Serial CommunicationSerial Communication
Serial Communication
UshaRani289
 
Datasheet RTC DS1307 untuk waktu yang tepat pada mikrokontroler
Datasheet RTC DS1307 untuk waktu yang tepat pada mikrokontrolerDatasheet RTC DS1307 untuk waktu yang tepat pada mikrokontroler
Datasheet RTC DS1307 untuk waktu yang tepat pada mikrokontroler
Muhammad Kennedy Ginting
 
Bluetooth based home appliances control
Bluetooth based home appliances controlBluetooth based home appliances control
Bluetooth based home appliances control
PROJECTRONICS
 
Chap10
Chap10Chap10
Chap10
manishappin
 

Similar to Product catlog (20)

Sereial com. ppt
Sereial com. pptSereial com. ppt
Sereial com. ppt
 
EC8691 - UNIT 5.pdf
EC8691 - UNIT 5.pdfEC8691 - UNIT 5.pdf
EC8691 - UNIT 5.pdf
 
8051 serial communication1
8051 serial communication1 8051 serial communication1
8051 serial communication1
 
Analog to Digital Converter
Analog to Digital ConverterAnalog to Digital Converter
Analog to Digital Converter
 
8051 TIMER COUNTER SERIAL COMM. INTERUPT PROGRAMMING.pdf
8051 TIMER COUNTER SERIAL COMM. INTERUPT PROGRAMMING.pdf8051 TIMER COUNTER SERIAL COMM. INTERUPT PROGRAMMING.pdf
8051 TIMER COUNTER SERIAL COMM. INTERUPT PROGRAMMING.pdf
 
m.tech esd lab manual for record
m.tech esd lab manual for recordm.tech esd lab manual for record
m.tech esd lab manual for record
 
Micro c lab8(serial communication)
Micro c lab8(serial communication)Micro c lab8(serial communication)
Micro c lab8(serial communication)
 
Mini plc-programmable logic controller
Mini plc-programmable logic controllerMini plc-programmable logic controller
Mini plc-programmable logic controller
 
Radio frequency identification system
Radio frequency identification systemRadio frequency identification system
Radio frequency identification system
 
8051 serial communication
8051 serial communication8051 serial communication
8051 serial communication
 
Study of Data sheet of 56824 DSP processors
Study of Data sheet of 56824 DSP processorsStudy of Data sheet of 56824 DSP processors
Study of Data sheet of 56824 DSP processors
 
Basic of Firmware & Embedded Software Programming in C
Basic of Firmware & Embedded Software Programming in CBasic of Firmware & Embedded Software Programming in C
Basic of Firmware & Embedded Software Programming in C
 
ACIT - CCNA Training Course Topic - Switch Stp ACIT
ACIT - CCNA Training Course Topic - Switch Stp ACITACIT - CCNA Training Course Topic - Switch Stp ACIT
ACIT - CCNA Training Course Topic - Switch Stp ACIT
 
UART
UARTUART
UART
 
LCD_Example.pptx
LCD_Example.pptxLCD_Example.pptx
LCD_Example.pptx
 
serial-200505101453.pdf
serial-200505101453.pdfserial-200505101453.pdf
serial-200505101453.pdf
 
Serial Communication
Serial CommunicationSerial Communication
Serial Communication
 
Datasheet RTC DS1307 untuk waktu yang tepat pada mikrokontroler
Datasheet RTC DS1307 untuk waktu yang tepat pada mikrokontrolerDatasheet RTC DS1307 untuk waktu yang tepat pada mikrokontroler
Datasheet RTC DS1307 untuk waktu yang tepat pada mikrokontroler
 
Bluetooth based home appliances control
Bluetooth based home appliances controlBluetooth based home appliances control
Bluetooth based home appliances control
 
Chap10
Chap10Chap10
Chap10
 

Recently uploaded

Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 

Recently uploaded (20)

Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 

Product catlog

  • 1. 1 Visit us @ www.thearyatechnologies.com Email: aryaprotech@gmail.com / info@thearyatechnologies.com Contact us@ 0253-2512131 Wireless Serial Communication RF Modem, 2.4 GHz, 30 meter range Overview CC2500 RF Module is a Transreceiver module which provides easy to use RF communication at 2.4 GHz. It can be used to transmit and receive data at multiple baud rates from any standard CMOS/TTL source. It works in Half Duplex mode i.e. it provides communication in both directions, but only one direction at same time (not simultaneously). This switching from receiver to transmitter mode is done automatically. RF Module can be used for applications that need two way wireless data transmission. It features high data rate and longer transmission distance. The communication protocol is self controlled and completely transparent to user interface. The module can be embedded to your current design so that wireless communication can be set up easily.
  • 2. 2 Features  Supports Multiple Baud rates (4800/9600/19200/38400).  Supports Multiple Channel Selection (CH0/CH1/CH2/CH3).  Works on ISM band (2.4 GHz) which is reserved internationally so no need to apply for license.  No complex wireless connection software or intimate knowledge of RF is required to connect your serial devices.  Designed to be as easy to use as cables.  No external Antenna required.  Plug and play device.  Works on 5-9v DC supply.  Standard UART Interface. Applications  Consumer electronics.  Wireless game controllers.  Wireless keyboard and mouse.  Weather stations.  Sensor Networks / Data collection.  Wireless metering.  RF enabled remote controls.  Access control / Identity discrimination.  Wireless data link (communication).  Wireless audio.  IT home appliance.  Smart house products / Security Systems.  Remote control / Remote measurement system.
  • 3. 3 Specifications Parameter Min Typ Max Units Working Voltage 4.5 5 9 Volts Frequency 2.4 GHz Range 30 Meters UART baud rate (8 bit data, no parity, 1 stop bit) (1) 4800/9600/19200/38400 bps Frequency channel (1) CH0/CH1/CH2/CH3 - Maximum Data Transmission (2) 32 Characters Note: 1. Baud Rate & Frequency Channel Settings depends on DIP Switch Position. (Refer Page No. 5 &6) 2. Carriage Return (CR) is required at the end of string for successful data transmission.
  • 4. 4 Pin Diagram Pin Pin Name Pin Name RX Receive Input Input serial data of 3 to 5V logic level TX Transmit Output Output serial data of 3V logic level +5V Power Supply Regulated 5V supply input Gnd Ground Ground level of power supply Operation This module works in half-duplex mode. Means it can either transmit or receive but not both at same time. After each transmission, module will be switched to receiver mode automatically. The LED for TX and RX indicates whether IC is currently receiving or transmitting data. The data sent is checked for CRC error if any. The RX LED is directly on TX OUT pin to indicate that actual data is received and it is sent to output pin. Settings The module supports multiple baud rates and multiple frequency channels. The settings will take place only during power on i.e. you will have to restart the module every time you change the setting. Modifying during power up will have no effect on operation of module. DIP switch number 1 & 2 are used to set the baud rate whereas DIP switch number 3 & 4 are used to select channel frequency.
  • 5. 5 Frequency Channel Setting Setting Frequency Channel can be used to have multiple sets operating at same time but without Interfering with each other. The pair having same Channel setting will be able to communicate with each other. Thus avoiding data collision between multiple set of modules. Frequency channel has to be set when module is OFF, as the switch positions are read only during power up. Modifying this setting during operation will have no effect on operation of module. Channel settings mentioned in table given below are for Baud rate 9600 bps. Switch Channel Setting Channel =0 Channel =1 Channel =2 Channel =3
  • 6. 6 Baud Rate Setting Baud rate has to be set when module is OFF, as the switch positions are read only during power up. Modifying this setting during operation will have no effect on operation of module. Baud rate settings mentioned in table given below are for Channel 0. Switch Baud Rate Setting 9600 bps 38400 bps 19200 bps 4800 bps
  • 7. 7 Interfacing with 8051 Microcontroller
  • 8. 8 Code LCD will display data received & send string “received” as an acknowledgement. Here baud rate setting is 9600. #include<reg52.h> #include <string.h> #define cmdport P2 #define dataport P0 unsigned char ntc[32]; unsigned char current_byte = 0; unsigned char icnt = 0; sbit rs = cmdport^6; //register select pin //sbit rw = cmdport^1; // read write pin sbit e = cmdport^7; //enable pin void ser_init(void); void Delay250us (void); void MsDelay (int n); void read_ntc(void); void lcdcmd(unsigned char item); void lcddata(unsigned char item); void lcdstr(unsigned char *s); void lcdinit(void); void Delay250us (void) { int j ; for(j = 0 ; j < 100 ; j ++) { } } void MsDelay (int n) { int j ; for(j = 0 ; j < n ; j ++) { Delay250us() ; Delay250us() ; Delay250us() ; Delay250us() ; } } void ser_init(void) { TMOD=0x20; //Timer 1 Mode 2
  • 9. 9 TH1=-3; // Bouad Rate-9600 SCON=0x050; // 8 bit,1 stop bit TR1=1; // start timer ES = 1; // enable serial interrupts } void recieve() interrupt 4 using 1 // Function to recieve data serialy from RS232 { if (RI) { ntc[ current_byte]=SBUF; RI=0; current_byte++; } } void Ser_Write_Text(unsigned char *str) { unsigned char l,i; l = strlen(str)+1; // get the length of string for(i=1;i<l;i++) { SBUF=*str; // send every char one by one while(TI==0); TI=0; str++; } } void ser_write_no(unsigned int no) { SBUF=no; while(TI==0); TI=0; } void read_ntc(void) // Function to display the received string { unsigned char count; lcdcmd(0x01); MsDelay(10); lcdcmd(0x80); MsDelay(10); for(count=0;count<current_byte;count++) { lcddata(ntc[count]);
  • 10. 10 if (count==15) { lcdcmd(0xC0); MsDelay(10); } } current_byte=0; } //Function to send command to LCD void lcdcmd(unsigned char item) { dataport = item; rs= 0; //rw=0; e=1; MsDelay(1); e=0; } //Function to send data to LCD void lcddata(unsigned char item) { dataport = item; rs= 1; //rw=0; e=1; MsDelay(1); e=0; } //Function to display string void lcdstr(unsigned char *s) { unsigned char l,i; l = strlen(s); // get the length of string for(i=1;i<=l;i++) { lcddata(*s); // write every char one by one s++; } } //Function to initialise LCD void lcdinit(void) {
  • 11. 11 lcdcmd(0x38); // for using 8-bit 2 row mode of LCD MsDelay(10); lcdcmd(0x0E); // turn display ON for cursor blinking MsDelay(10); lcdcmd(0x01); //clear screen MsDelay(10); lcdcmd(0x06); //display ON MsDelay(10); } void main() { EA = 1; /* enable global interrupts */ lcdinit(); MsDelay(10); lcdcmd(0x80); MsDelay(10); lcdstr("CC2500"); lcdcmd(0xC0); MsDelay(10); lcdstr("Interface"); MsDelay(100); ser_init(); MsDelay(50); while(1) { while(current_byte==0); read_ntc(); current_byte=0; Ser_Write_Text("Recieved"); ser_write_no(13); MsDelay(10); } }
  • 12. 12 Interfacing with PC Code Code is written inVB.NET 2010 for transmitting & reception of data to & from CC2500 module. Here baud rate setting is 9600 bps.
  • 13. 13 Imports System Imports System.IO.Ports Public Class Form1 Dim WithEvents port As SerialPort = New _ System.IO.Ports.SerialPort("COM3", 9600, Parity.None, 8, StopBits.One) Private Sub Form1_Load(ByVal sender As Object, ByVal e As _ System.EventArgs) Handles Me.Load CheckForIllegalCrossThreadCalls = False If port.IsOpen = False Then port.Open() End Sub Private Sub port_DataReceived(ByVal sender As Object, ByVal e As _ System.IO.Ports.SerialDataReceivedEventArgs) Handles port.DataReceived Label1.Text = port.ReadExisting End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click port.Write(TextBox1.Text & vbCr) End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Application.Exit() End Sub End Class