SlideShare uma empresa Scribd logo
1 de 14
ASSIGNMENT
MICROCNOTROLLER
Kashif Ayyaz Abbasi
Reg Number : 09f-beit-58
Q : 1 Write a program to to out 1KHZ frequency by using CCP(compare mode) ?
void interrupt(void);
void main() {
CCP1CON=0x02;
PIR1.CCP1IF=0;
PIE1.CCP1IE=1;
CCPR1L=0xC4;
CCPR1H=0X09; //set value (2500 dec) annd in 9c4 in HEX
INTCON=0xc0;
TRISC.F2=0;
T1CON=0x08;
INTCON.TMR1IE=1;
INTCON.TMR1IF=0;
TMR1L=0x00; //we set as a counter
TMR1H=0X00;
T1CON.TMR1ON=1;
while(1){}
}
void interrupt(void){
if(PIR1.CCP1IF)
{
PIR1.CCP1IF=0;
}
}
Q: 2 Write a program to Out different Frequencies using Switch ?
If Sw1==1 frequency out = 1KHZ
Sw2 == 1 Frequency out = 2KHZ
Sw3== 1 Frequency out = 3Khz
int count = 0;
void main()
{
TRISD.F0=0;
T0CON=0x08;
INTCON.TMR0IE=1;
INTCON.TMR0IF=0;
TMR0L=0XF0;
TMR0H=0XD8;
PORTD.F0=1;
count=1;
T0CON.TMR0ON=1;
INTCON.GIE=1;
TRISB.F0=1;
TRISB.F1=1;
TRISB.F2=1;
PORTB=0X00;
while(1)
{
if(portb.f0=1)
{
count=0;
}
if(portb.f1=1)
{
count=1;
}
if(portb.f2=1)
{
count=2;
}
}
}
void interrupt()
{
if( INTCON.TMR0IF==1)
{
if(count==0)
{
INTCON.TMR0IF=0;
T0CON.TMR0ON=0;
PORTD.F0=0;
TMR0L=0XF0;
TMR0H=0XD8;
T0CON.TMR0ON=1;
//delay_ms(1000);
/ /count=1;
}
if(count==1)
{
INTCON.TMR0IF=0;
T0CON.TMR0ON=0;
PORTD.F0=0;
TMR0L=0XE0;
TMR0H=0XB1;
T0CON.TMR0ON=1;
//delay_ms(1000);
//count=2;
}
else if (count==2)
{
INTCON.TMR0IF=0;
T0CON.TMR0ON=0;
PORTD.F0=1;
TMR0L=0X78;
TMR0H=0XEC;
T0CON.TMR0ON=1;
//delay_ms(1000);
//count=3;
}
else
{
}
}
}
Q : 3 write a program to ON OFF LED 1SEC delay through Timer.
# define led PORTD.F0
int count=0;
void main (){
TRISD.F0=0;
T0CON=0X08;
INTCON.TMR0IE=1;
INTCON.TMR0IF=0;
TMR0L=0XF0;
TMR0H=0XD8;
led=1;
INTCON.TMR0ON=1;
INTCON.GIE=1;
INTCON.PEIE=1;
while(1){
if(count==249){
count=0;
INTCON.TMR0ON=0;
TMR0L=0XF0;
TMR0H=0XD8;
led=~led;
delay_ms(1000);
INTCON.TMR0ON=1;
//INTCON.TMR0IF=0;
}
}
}
void interrupt()
{
if(INTCON.TMR0IF){
INTCON.TMR0IF=0;
INTCON.TMR0ON=0;
TMR0L=0XF0;
TMR0L=0XD8;
count=count+1;
INTCON.TMR0ON=1;
}
}
Q: 4 write a program to transmit KICSIT on PC And receive data From PC
and Display IT on LCD?
unsigned char data[10];
unsigned char temp[50];
int i=0;
void interrupt(void);
void main()
{
int i,length;
char X[]={"KICSIT"};
RCSTA=0x90;
TXSTA=0X20;
RCSTA.SPEN=1;
Lcd_Config(&PORTD, 3,2, 0, 7, 6, 5,4);
TRISD=0;
PORTD=0;
TRISC.F6 = 0; //TX Pin
TRISC.F7 = 1; //RX Pin
PIE1.RCIE=1;
PIR1.RCIF=0;
INTCON=0xC0;
length=strlen(X);
while(1){
for(i=0;i<length;i++){
TXREG=X[i];
delay_ms(1000);
}
lcd_out(1,1,data);
}
}
void interrupt(void)
{
if(PIR1.TXIF)
{
PIR1.TXIF=0;
}
if(PIR1.RCIF==1)
{
data[i]= RCREG;
PIR1.RCIF=0;
}
}
Q 5 : write a program to generate frequency of
4ms 8ms 2ms 4ms
int count=0;
void main(void){
TRISD.F0=0;
T0CON=0X08;
INTCON.TMR0IE=1;
INTCON.TMR0IF=0;
TMR0L=0XF0;
TMR0H=0XD8;
PORTD.F0=1;
count=1;
T0CON.TMR0ON=1;
INTCON.GIE=1;
while(1)
{
}
}
void interrupt()
{
if( INTCON.TMR0IF==1)
{
if(count==0)
{
INTCON.TMR0IF=0;
T0CON.TMR0ON=0;
PORTD.F0=0;
TMR0L=0XF0;
TMR0H=0XD8;
T0CON.TMR0ON=1;
//delay_ms(1000);
count=1;
}
if(count==1)
{
INTCON.TMR0IF=0;
T0CON.TMR0ON=0;
PORTD.F0=0;
TMR0L=0XE0;
TMR0H=0XB1;
T0CON.TMR0ON=1;
//delay_ms(1000);
count=2;
}
else if (count==2)
{
INTCON.TMR0IF=0;
T0CON.TMR0ON=0;
PORTD.F0=1;
TMR0L=0X78;
TMR0H=0XEC;
T0CON.TMR0ON=1;
//delay_ms(1000);
count=3;
}
else if (count==3)
{
INTCON.TMR0IF=0;
T0CON.TMR0ON=0;
PORTD.F0=0;
TMR0L=0XF0;
TMR0H=0XD8;
T0CON.TMR0ON=1;
//delay_ms(1000);
count=0;
}
}
}
Q : Design a control and monitoring system of turbine system
Monitoring parameter are
1: temperature
2: Pressure
3: RPM sensor to measure Revolution per/min of Turbine
LM35 for temperature
Pressure switch for Measure pressure
Frequency meter for RPM
If temp> 100 || pressure switch is ON then make the turbine
void setintterupt();
void ADCset();
#define turbine portb.f4
void interrupt(void);
void serial_sent(float f,int a,int f);
char *data_;
float temp;
int i,count;
int result;
char start;
int pressure,RPM;
int seccount,ExternalFreCount,Frequency=0;
void serial_setting();
void serial_setting()
{
RCSTA=0x90;
TXSTA=0X20;
RCSTA.SPEN=1;
TRISC.F6 = 0; //TX Pin
TRISC.F7 = 1; //RX Pin
PIE1.RCIE=1;
PIR1.RCIF=0;
}
void setintterupt()
{
INTCON=0xD0;
INTCON2.INTEDG0=1;
}
void ADCset()
{
ADCON0=0x81;
ADCON0.ADON=1;
ADCON1=0XC0;
INTCON.GIE=1;
INTCON.PEIE=1;
PIR1.ADIF=0;
PIE1.ADIE=1;
ADRESH=ADRESL=0x00;
}
void serial_sent(float a,int b,int f)
{
if(a>=100 || b==1)
{
turbine=1;
}
else
{
FloatToStr(a,data_);
TXREG=data_;
while(!TIR1.TXIF);
TIR1.TXIF=0;
IntToStr(b,data_);
TXREG=data_;
while(!TIR1.TXIF);
TIR1.TXIF=0;
IntToStr(f,data_);
TXREG=data_;
while(!TIR1.TXIF);
TIR1.TXIF=0;
}
}
void READADC();
void READADC()
{
ADCON0.GO_DONE=1;
}
void timersetting();
void timersetting()
{
T1CON=0x08;
INTCON.TMR1IE=1;
INTCON.TMR1IF=0;
TMR1L=0xf0; //we set as a counter
TMR1H=0Xd8;
T0CON=0x02;
TMR0L=0x00; // we set 1 sec timer and count for 60 sec to make 1 min
TMR0H=0x00;
INTCON.TMR0IE=1;
INTCON.TMR0IF=0;
}
void start_timer();
void start_timer()
{
T0CON.TMR0ON=1;
T1CON.TMR1ON=1;
}
void main() {
trisa.f0=1;
trisb.f4=0;
trisb.f0=1;
UART1_Init(9600);
setintterupt();
ADCset();
timersetting();
turbine=0;
while(1)
{
if(start=='s')
{
READADC(); //read ADC
INTCON.INTOIE=1;
start_timer();
serial_sent(temp,pressure,Frequency);
}
}
}
void interrupt(void)
{
if(PIR1.RCIF==1)
{
start= RCREG;
PIR1.RCIF=0;
}
if(INTCON.INT0IF==1)
{
INTCON.INT0IF=0;
pressure=1;
}
if(PIR1.ADIF)
{
PIR1.ADIF=0;
result=ADRESH;
result=result<<8;
result=result+ADRESL;
//data=result;
temp=result;
temp=temp*0.00488;
temp=temp*1000;
temp=temp/10;
}
if(INTCON.TMR1IF)
{
INTCON.TMR1IF=0;
if(seccount==14999) // 249*60 =14940sec
// 14999=1min
{
Frequency=TMR0H;
Frequency=Frequency<<8;
Frequency=Frequency+TMR0L;
Frequency=(Frequency*65536)+ExternalFrecount;
seccount=0;
TMR1L=0xf0; //we set as a counter
TMR1H=0Xd8;
TMR0L=0x00; //we set as a Externaltimer
TMR0H=0X00;
T0CON.TMR0ON=1;
T1CON.TMR1ON=1;
}
else
{
seccount++;
TMR1L=0xf0; //we set as a counter
TMR1H=0Xd8;
}
}
if(INTCON.TMR0IF)
{
INTCON.TMR0IF=0;
ExternalFreCount++;
}
}

Mais conteúdo relacionado

Mais procurados

Lathe Spindle Sensor
Lathe Spindle SensorLathe Spindle Sensor
Lathe Spindle SensorJoeCritt
 
DIGITAL SIGNAL PROCESSING BASED ON MATLAB
DIGITAL SIGNAL PROCESSING BASED ON MATLABDIGITAL SIGNAL PROCESSING BASED ON MATLAB
DIGITAL SIGNAL PROCESSING BASED ON MATLABPrashant Srivastav
 
22 microcontroller programs
22 microcontroller programs22 microcontroller programs
22 microcontroller programsbabak danyal
 
Home automation system
Home automation system Home automation system
Home automation system Hira Shaukat
 
Switch level modeling 2 x4
Switch level modeling 2 x4Switch level modeling 2 x4
Switch level modeling 2 x4Alok Singh
 
Using Timers in PIC18F Microcontrollers
Using Timers in PIC18F MicrocontrollersUsing Timers in PIC18F Microcontrollers
Using Timers in PIC18F MicrocontrollersCorrado Santoro
 
Up and running with Teensy 3.1
Up and running with Teensy 3.1Up and running with Teensy 3.1
Up and running with Teensy 3.1yoonghm
 
Exercises with timers and UART
Exercises with timers and UARTExercises with timers and UART
Exercises with timers and UARTCorrado Santoro
 
Pure Aloha and Slotted Aloha
Pure Aloha and Slotted AlohaPure Aloha and Slotted Aloha
Pure Aloha and Slotted AlohaChun-Kang Luo
 
Interrupt programming with 8051 microcontroller
Interrupt programming with 8051  microcontrollerInterrupt programming with 8051  microcontroller
Interrupt programming with 8051 microcontrollerAnkit Bhatnagar
 
Power the world with mbed LPC1768
Power the world with mbed LPC1768Power the world with mbed LPC1768
Power the world with mbed LPC1768yoonghm
 

Mais procurados (20)

Lathe Spindle Sensor
Lathe Spindle SensorLathe Spindle Sensor
Lathe Spindle Sensor
 
DIGITAL SIGNAL PROCESSING BASED ON MATLAB
DIGITAL SIGNAL PROCESSING BASED ON MATLABDIGITAL SIGNAL PROCESSING BASED ON MATLAB
DIGITAL SIGNAL PROCESSING BASED ON MATLAB
 
22 microcontroller programs
22 microcontroller programs22 microcontroller programs
22 microcontroller programs
 
Home automation system
Home automation system Home automation system
Home automation system
 
Switch level modeling 2 x4
Switch level modeling 2 x4Switch level modeling 2 x4
Switch level modeling 2 x4
 
Interrupt
InterruptInterrupt
Interrupt
 
REPORT
REPORTREPORT
REPORT
 
Using Timers in PIC18F Microcontrollers
Using Timers in PIC18F MicrocontrollersUsing Timers in PIC18F Microcontrollers
Using Timers in PIC18F Microcontrollers
 
Up and running with Teensy 3.1
Up and running with Teensy 3.1Up and running with Teensy 3.1
Up and running with Teensy 3.1
 
Class8
Class8Class8
Class8
 
Exercises with timers and UART
Exercises with timers and UARTExercises with timers and UART
Exercises with timers and UART
 
Lab5
Lab5Lab5
Lab5
 
Pure Aloha and Slotted Aloha
Pure Aloha and Slotted AlohaPure Aloha and Slotted Aloha
Pure Aloha and Slotted Aloha
 
Session3
Session3Session3
Session3
 
8051 Inturrpt
8051 Inturrpt8051 Inturrpt
8051 Inturrpt
 
Interrupt programming with 8051 microcontroller
Interrupt programming with 8051  microcontrollerInterrupt programming with 8051  microcontroller
Interrupt programming with 8051 microcontroller
 
FPGA Tutorial - LCD Interface
FPGA Tutorial - LCD InterfaceFPGA Tutorial - LCD Interface
FPGA Tutorial - LCD Interface
 
Flex sensor
Flex sensorFlex sensor
Flex sensor
 
Power the world with mbed LPC1768
Power the world with mbed LPC1768Power the world with mbed LPC1768
Power the world with mbed LPC1768
 
8051 interrupts
8051 interrupts8051 interrupts
8051 interrupts
 

Destaque

Micro assignment 2
Micro assignment 2Micro assignment 2
Micro assignment 2mrgoodkat
 
MICROENVIRONMENT FACTORS
MICROENVIRONMENT FACTORSMICROENVIRONMENT FACTORS
MICROENVIRONMENT FACTORSVaibhav Sinha
 
Copy of the marketing environment and competitor analysis
Copy of the marketing environment and competitor analysisCopy of the marketing environment and competitor analysis
Copy of the marketing environment and competitor analysisJonathan Luanzon
 
4 P's of Surf excel company
4 P's of Surf excel company 4 P's of Surf excel company
4 P's of Surf excel company Sumeet Patel
 
Marketing Management (micro and macro environment)
Marketing Management (micro and macro environment)Marketing Management (micro and macro environment)
Marketing Management (micro and macro environment)sly mot
 

Destaque (6)

Micro assignment 2
Micro assignment 2Micro assignment 2
Micro assignment 2
 
MICROENVIRONMENT FACTORS
MICROENVIRONMENT FACTORSMICROENVIRONMENT FACTORS
MICROENVIRONMENT FACTORS
 
Copy of the marketing environment and competitor analysis
Copy of the marketing environment and competitor analysisCopy of the marketing environment and competitor analysis
Copy of the marketing environment and competitor analysis
 
4 P's of Surf excel company
4 P's of Surf excel company 4 P's of Surf excel company
4 P's of Surf excel company
 
Marketing Management (micro and macro environment)
Marketing Management (micro and macro environment)Marketing Management (micro and macro environment)
Marketing Management (micro and macro environment)
 
Letter writing (Communication Skills)
Letter writing (Communication Skills)Letter writing (Communication Skills)
Letter writing (Communication Skills)
 

Semelhante a Micro Assignment 1

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.pdfShashiKiran664181
 
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9Irfan Qadoos
 
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 recordG Lemuel George
 
CAN interfacing on LPC1768 (ARM Cortex M3 based Micro controller)
CAN interfacing on LPC1768 (ARM Cortex M3 based Micro controller)CAN interfacing on LPC1768 (ARM Cortex M3 based Micro controller)
CAN interfacing on LPC1768 (ARM Cortex M3 based Micro controller)Omkar Rane
 
coding and wiring dht11 and ultrasonic hcsr04 arduino
coding and wiring dht11 and ultrasonic hcsr04 arduino coding and wiring dht11 and ultrasonic hcsr04 arduino
coding and wiring dht11 and ultrasonic hcsr04 arduino Nanda Fauzi P
 
TO control the speed of DC Motor Simple Project
TO control the speed of DC Motor Simple ProjectTO control the speed of DC Motor Simple Project
TO control the speed of DC Motor Simple ProjectZunAib Ali
 
Microcontroladores: programas de CCS Compiler.docx
Microcontroladores: programas de CCS Compiler.docxMicrocontroladores: programas de CCS Compiler.docx
Microcontroladores: programas de CCS Compiler.docxSANTIAGO PABLO ALBERTO
 
04 adc (pic24, ds pic with dma)
04 adc (pic24, ds pic with dma)04 adc (pic24, ds pic with dma)
04 adc (pic24, ds pic with dma)antonio michua
 
32 bit ALU Chip Design using IBM 130nm process technology
32 bit ALU Chip Design using IBM 130nm process technology32 bit ALU Chip Design using IBM 130nm process technology
32 bit ALU Chip Design using IBM 130nm process technologyBharat Biyani
 
Instruction 8.pptx
Instruction 8.pptxInstruction 8.pptx
Instruction 8.pptxHebaEng
 
Linux Serial Driver
Linux Serial DriverLinux Serial Driver
Linux Serial Driver艾鍗科技
 
Keypad interfacing 8051 -NANOCDAC
Keypad interfacing 8051 -NANOCDACKeypad interfacing 8051 -NANOCDAC
Keypad interfacing 8051 -NANOCDACnanocdac
 
CODING IN ARDUINO
CODING IN ARDUINOCODING IN ARDUINO
CODING IN ARDUINOS Ayub
 
8051 C Assignments with all examples covered
8051 C Assignments with all examples covered8051 C Assignments with all examples covered
8051 C Assignments with all examples coveredAbdulMunaf52
 
ARM 7 LPC 2148 lecture
ARM 7 LPC 2148 lectureARM 7 LPC 2148 lecture
ARM 7 LPC 2148 lectureanishgoel
 

Semelhante a Micro Assignment 1 (20)

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
 
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
 
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
 
CAN interfacing on LPC1768 (ARM Cortex M3 based Micro controller)
CAN interfacing on LPC1768 (ARM Cortex M3 based Micro controller)CAN interfacing on LPC1768 (ARM Cortex M3 based Micro controller)
CAN interfacing on LPC1768 (ARM Cortex M3 based Micro controller)
 
8051 ch9-950217
8051 ch9-9502178051 ch9-950217
8051 ch9-950217
 
coding and wiring dht11 and ultrasonic hcsr04 arduino
coding and wiring dht11 and ultrasonic hcsr04 arduino coding and wiring dht11 and ultrasonic hcsr04 arduino
coding and wiring dht11 and ultrasonic hcsr04 arduino
 
TO control the speed of DC Motor Simple Project
TO control the speed of DC Motor Simple ProjectTO control the speed of DC Motor Simple Project
TO control the speed of DC Motor Simple Project
 
8051 Timer
8051 Timer8051 Timer
8051 Timer
 
Microcontroladores: programas de CCS Compiler.docx
Microcontroladores: programas de CCS Compiler.docxMicrocontroladores: programas de CCS Compiler.docx
Microcontroladores: programas de CCS Compiler.docx
 
8051 -5
8051 -58051 -5
8051 -5
 
Lpc 1768 timers
Lpc 1768 timersLpc 1768 timers
Lpc 1768 timers
 
04 adc (pic24, ds pic with dma)
04 adc (pic24, ds pic with dma)04 adc (pic24, ds pic with dma)
04 adc (pic24, ds pic with dma)
 
32 bit ALU Chip Design using IBM 130nm process technology
32 bit ALU Chip Design using IBM 130nm process technology32 bit ALU Chip Design using IBM 130nm process technology
32 bit ALU Chip Design using IBM 130nm process technology
 
Seminar
SeminarSeminar
Seminar
 
Instruction 8.pptx
Instruction 8.pptxInstruction 8.pptx
Instruction 8.pptx
 
Linux Serial Driver
Linux Serial DriverLinux Serial Driver
Linux Serial Driver
 
Keypad interfacing 8051 -NANOCDAC
Keypad interfacing 8051 -NANOCDACKeypad interfacing 8051 -NANOCDAC
Keypad interfacing 8051 -NANOCDAC
 
CODING IN ARDUINO
CODING IN ARDUINOCODING IN ARDUINO
CODING IN ARDUINO
 
8051 C Assignments with all examples covered
8051 C Assignments with all examples covered8051 C Assignments with all examples covered
8051 C Assignments with all examples covered
 
ARM 7 LPC 2148 lecture
ARM 7 LPC 2148 lectureARM 7 LPC 2148 lecture
ARM 7 LPC 2148 lecture
 

Mais de babak danyal

Easy Steps to implement UDP Server and Client Sockets
Easy Steps to implement UDP Server and Client SocketsEasy Steps to implement UDP Server and Client Sockets
Easy Steps to implement UDP Server and Client Socketsbabak danyal
 
Java IO Package and Streams
Java IO Package and StreamsJava IO Package and Streams
Java IO Package and Streamsbabak danyal
 
Swing and Graphical User Interface in Java
Swing and Graphical User Interface in JavaSwing and Graphical User Interface in Java
Swing and Graphical User Interface in Javababak danyal
 
block ciphers and the des
block ciphers and the desblock ciphers and the des
block ciphers and the desbabak danyal
 
key distribution in network security
key distribution in network securitykey distribution in network security
key distribution in network securitybabak danyal
 
Lecture10 Signal and Systems
Lecture10 Signal and SystemsLecture10 Signal and Systems
Lecture10 Signal and Systemsbabak danyal
 
Lecture8 Signal and Systems
Lecture8 Signal and SystemsLecture8 Signal and Systems
Lecture8 Signal and Systemsbabak danyal
 
Lecture7 Signal and Systems
Lecture7 Signal and SystemsLecture7 Signal and Systems
Lecture7 Signal and Systemsbabak danyal
 
Lecture6 Signal and Systems
Lecture6 Signal and SystemsLecture6 Signal and Systems
Lecture6 Signal and Systemsbabak danyal
 
Lecture5 Signal and Systems
Lecture5 Signal and SystemsLecture5 Signal and Systems
Lecture5 Signal and Systemsbabak danyal
 
Lecture4 Signal and Systems
Lecture4  Signal and SystemsLecture4  Signal and Systems
Lecture4 Signal and Systemsbabak danyal
 
Lecture3 Signal and Systems
Lecture3 Signal and SystemsLecture3 Signal and Systems
Lecture3 Signal and Systemsbabak danyal
 
Lecture2 Signal and Systems
Lecture2 Signal and SystemsLecture2 Signal and Systems
Lecture2 Signal and Systemsbabak danyal
 
Lecture1 Intro To Signa
Lecture1 Intro To SignaLecture1 Intro To Signa
Lecture1 Intro To Signababak danyal
 
Lecture9 Signal and Systems
Lecture9 Signal and SystemsLecture9 Signal and Systems
Lecture9 Signal and Systemsbabak danyal
 
Cns 13f-lec03- Classical Encryption Techniques
Cns 13f-lec03- Classical Encryption TechniquesCns 13f-lec03- Classical Encryption Techniques
Cns 13f-lec03- Classical Encryption Techniquesbabak danyal
 
Classical Encryption Techniques in Network Security
Classical Encryption Techniques in Network SecurityClassical Encryption Techniques in Network Security
Classical Encryption Techniques in Network Securitybabak danyal
 

Mais de babak danyal (20)

applist
applistapplist
applist
 
Easy Steps to implement UDP Server and Client Sockets
Easy Steps to implement UDP Server and Client SocketsEasy Steps to implement UDP Server and Client Sockets
Easy Steps to implement UDP Server and Client Sockets
 
Java IO Package and Streams
Java IO Package and StreamsJava IO Package and Streams
Java IO Package and Streams
 
Swing and Graphical User Interface in Java
Swing and Graphical User Interface in JavaSwing and Graphical User Interface in Java
Swing and Graphical User Interface in Java
 
Tcp sockets
Tcp socketsTcp sockets
Tcp sockets
 
block ciphers and the des
block ciphers and the desblock ciphers and the des
block ciphers and the des
 
key distribution in network security
key distribution in network securitykey distribution in network security
key distribution in network security
 
Lecture10 Signal and Systems
Lecture10 Signal and SystemsLecture10 Signal and Systems
Lecture10 Signal and Systems
 
Lecture8 Signal and Systems
Lecture8 Signal and SystemsLecture8 Signal and Systems
Lecture8 Signal and Systems
 
Lecture7 Signal and Systems
Lecture7 Signal and SystemsLecture7 Signal and Systems
Lecture7 Signal and Systems
 
Lecture6 Signal and Systems
Lecture6 Signal and SystemsLecture6 Signal and Systems
Lecture6 Signal and Systems
 
Lecture5 Signal and Systems
Lecture5 Signal and SystemsLecture5 Signal and Systems
Lecture5 Signal and Systems
 
Lecture4 Signal and Systems
Lecture4  Signal and SystemsLecture4  Signal and Systems
Lecture4 Signal and Systems
 
Lecture3 Signal and Systems
Lecture3 Signal and SystemsLecture3 Signal and Systems
Lecture3 Signal and Systems
 
Lecture2 Signal and Systems
Lecture2 Signal and SystemsLecture2 Signal and Systems
Lecture2 Signal and Systems
 
Lecture1 Intro To Signa
Lecture1 Intro To SignaLecture1 Intro To Signa
Lecture1 Intro To Signa
 
Lecture9 Signal and Systems
Lecture9 Signal and SystemsLecture9 Signal and Systems
Lecture9 Signal and Systems
 
Lecture9
Lecture9Lecture9
Lecture9
 
Cns 13f-lec03- Classical Encryption Techniques
Cns 13f-lec03- Classical Encryption TechniquesCns 13f-lec03- Classical Encryption Techniques
Cns 13f-lec03- Classical Encryption Techniques
 
Classical Encryption Techniques in Network Security
Classical Encryption Techniques in Network SecurityClassical Encryption Techniques in Network Security
Classical Encryption Techniques in Network Security
 

Último

Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdfssuserdda66b
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 

Último (20)

Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 

Micro Assignment 1