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

Home automation system
Home automation system Home automation system
Home automation system
Hira Shaukat
 
Using Timers in PIC18F Microcontrollers
Using Timers in PIC18F MicrocontrollersUsing Timers in PIC18F Microcontrollers
Using Timers in PIC18F Microcontrollers
Corrado Santoro
 
Exercises with timers and UART
Exercises with timers and UARTExercises with timers and UART
Exercises with timers and UART
Corrado Santoro
 
Pure Aloha and Slotted Aloha
Pure Aloha and Slotted AlohaPure Aloha and Slotted Aloha
Pure Aloha and Slotted Aloha
Chun-Kang Luo
 

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 (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

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
Irfan Qadoos
 
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
ZunAib Ali
 
Instruction 8.pptx
Instruction 8.pptxInstruction 8.pptx
Instruction 8.pptx
HebaEng
 
CODING IN ARDUINO
CODING IN ARDUINOCODING IN ARDUINO
CODING IN ARDUINO
S 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 covered
AbdulMunaf52
 
ARM 7 LPC 2148 lecture
ARM 7 LPC 2148 lectureARM 7 LPC 2148 lecture
ARM 7 LPC 2148 lecture
anishgoel
 

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

Lecture1 Intro To Signa
Lecture1 Intro To SignaLecture1 Intro To Signa
Lecture1 Intro To Signa
babak 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

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Recently uploaded (20)

Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
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...
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
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
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
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
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
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
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 

Micro Assignment 1