SlideShare a Scribd company logo
1 of 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++;
}
}

More Related Content

What's hot

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
 

What's hot (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
 

Viewers also liked

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
 

Viewers also liked (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)
 

Similar to 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
 

Similar to 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
 

More from 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
 

More from 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
 

Recently uploaded

MOOD STABLIZERS DRUGS.pptx
MOOD     STABLIZERS           DRUGS.pptxMOOD     STABLIZERS           DRUGS.pptx
MOOD STABLIZERS DRUGS.pptxPoojaSen20
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSean M. Fox
 
8 Tips for Effective Working Capital Management
8 Tips for Effective Working Capital Management8 Tips for Effective Working Capital Management
8 Tips for Effective Working Capital ManagementMBA Assignment Experts
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjMohammed Sikander
 
How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17Celine George
 
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...Nguyen Thanh Tu Collection
 
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhĐề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhleson0603
 
Championnat de France de Tennis de table/
Championnat de France de Tennis de table/Championnat de France de Tennis de table/
Championnat de France de Tennis de table/siemaillard
 
When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...Gary Wood
 
SURVEY I created for uni project research
SURVEY I created for uni project researchSURVEY I created for uni project research
SURVEY I created for uni project researchCaitlinCummins3
 
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMDEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMELOISARIVERA8
 
An Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppAn Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppCeline George
 
How to Manage Closest Location in Odoo 17 Inventory
How to Manage Closest Location in Odoo 17 InventoryHow to Manage Closest Location in Odoo 17 Inventory
How to Manage Closest Location in Odoo 17 InventoryCeline George
 
philosophy and it's principles based on the life
philosophy and it's principles based on the lifephilosophy and it's principles based on the life
philosophy and it's principles based on the lifeNitinDeodare
 
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...Denish Jangid
 
The basics of sentences session 4pptx.pptx
The basics of sentences session 4pptx.pptxThe basics of sentences session 4pptx.pptx
The basics of sentences session 4pptx.pptxheathfieldcps1
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文中 央社
 
e-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi Rajagopale-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi RajagopalEADTU
 

Recently uploaded (20)

MOOD STABLIZERS DRUGS.pptx
MOOD     STABLIZERS           DRUGS.pptxMOOD     STABLIZERS           DRUGS.pptx
MOOD STABLIZERS DRUGS.pptx
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
 
8 Tips for Effective Working Capital Management
8 Tips for Effective Working Capital Management8 Tips for Effective Working Capital Management
8 Tips for Effective Working Capital Management
 
Mattingly "AI & Prompt Design: Named Entity Recognition"
Mattingly "AI & Prompt Design: Named Entity Recognition"Mattingly "AI & Prompt Design: Named Entity Recognition"
Mattingly "AI & Prompt Design: Named Entity Recognition"
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
 
How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17
 
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
 
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhĐề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
 
Championnat de France de Tennis de table/
Championnat de France de Tennis de table/Championnat de France de Tennis de table/
Championnat de France de Tennis de table/
 
When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...
 
SURVEY I created for uni project research
SURVEY I created for uni project researchSURVEY I created for uni project research
SURVEY I created for uni project research
 
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMDEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
 
“O BEIJO” EM ARTE .
“O BEIJO” EM ARTE                       .“O BEIJO” EM ARTE                       .
“O BEIJO” EM ARTE .
 
An Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppAn Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge App
 
How to Manage Closest Location in Odoo 17 Inventory
How to Manage Closest Location in Odoo 17 InventoryHow to Manage Closest Location in Odoo 17 Inventory
How to Manage Closest Location in Odoo 17 Inventory
 
philosophy and it's principles based on the life
philosophy and it's principles based on the lifephilosophy and it's principles based on the life
philosophy and it's principles based on the life
 
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
 
The basics of sentences session 4pptx.pptx
The basics of sentences session 4pptx.pptxThe basics of sentences session 4pptx.pptx
The basics of sentences session 4pptx.pptx
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
 
e-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi Rajagopale-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi Rajagopal
 

Micro Assignment 1