SlideShare une entreprise Scribd logo
1  sur  43
HOME AUTOMATION
SYSTEM
EE-323 SEMESTER PROJECT
COURSE INSTRUCTOR:
LAB INSTRUCTOR:
“
”
Heights that great men reached and kept
Were not attained in sudden flight
They while their companions slept
Were toiling upwards in the night
• 2010079
• 2010105
• 2010131
• 2010279
FAN RPM CONTROL
THROUGH
TEMPERATURE
SENSORS
INDOOR LIGHT
CONTROL USING IR
SENSORS
OUTDOOR LIGHT
DIMMING USING
LDRs
AUTOMATIC CONTROL
MODULES
MANUAL OVERWRITE
CONTROL
C
O
N
C
A
T
I
N
A
T
I
O
N
BASIC PLAN
F A N R P M C O N T R O L
T H R O U G H
T E M P E R A T U R E
S E N S O R S
2010131
SCHEMATICS
LM-35
ANALOG DATA
ADC
CONVERSION
DIGITAL DATA
TEST VALUE
FLOW-CHART SUMMARIZATION
CODE EXPLAINATION
ADC
INTERNAL
CLOCK
TIMER
2
AN0
CCP1
-PWM
NO UNIVERSAL
VARIABLE
DECLARATIONS
 setup_adc_ports(AN0);
 setup_adc(ADC_CLOCK_INTERNAL);
 setup_psp(PSP_DISABLED);
 setup_spi(SPI_SS_DISABLED);
 setup_wdt(WDT_OFF);
 setup_timer_0(RTCC_INTERNAL); [SLEEP MODE]
 setup_timer_1(T1_DISABLED);
 setup_timer_2(T2_DIV_BY_16,155,1);
 setup_timer_3(T3_DISABLED|T3_DIV_BY_1);
 setup_ccp1(CCP_PWM);
 set_pwm1_duty(0);
 setup_comparator(NC_NC_NC_NC);
 setup_vref(FALSE);
 setup_low_volt_detect(FALSE);
 set_timer2(0);
CODE EXPLAINATION
 while(1)
 { set_adc_channel(0);
 value=read_adc();
 if (value <= 12)
 set_pwm1_duty(0);
 else if (value > 12 && value <= 15)
 set_pwm1_duty(25);
 else if (value > 15 && value <= 18)
 set_pwm1_duty(50);
 else if (value > 18 && value <= 20)
 set_pwm1_duty(75);
 else
 set_pwm1_duty(100);}
CODE EXPLAINATION
 if (value <= 12)
 set_pwm1_duty(0);
CODE EXPLAINATION
VALUE <=12
 else if (value > 12 && value <= 15)
 set_pwm1_duty(25);
CODE EXPLAINATION
12<VALUE <=15
 else if (value > 15 && value <= 18)
 set_pwm1_duty(50);
CODE EXPLAINATION
15<VALUE <=18
 else if (value > 18 && value <= 20)
 set_pwm1_duty(75);
CODE EXPLAINATION
18<VALUE <=20
 else
 set_pwm1_duty(100);}
CODE EXPLAINATION
VALUE >=20
[SIMULATION]
PROTEUS SIMULATION OF CIRCUIT
I N D O O R L I G H T
C O N T R O L U S I N G
I R S E N S O R S
2010105
SCHEMATICS
FLOW-CHART SUMMARIZATION
START
INTERRUPT?
INT-IN OR INT
OUT
INT IN
CHECK OUT
FLAG
DECREMENT
PERSON
COUNTER
COUNTER=0?
OFF LIGHTS
SET LIGHTS
SET IN
INT OUT
CHECK IN
FLAG
SET OUT
INC COUNTER SET LIGHTS
CODE EXPLAINATION
GLOBAL
INTERRUPT
INTERRUPT
EXT1
INTERRUPT
EXT 0
short IN, OUT
int COUNT
 setup_adc_ports(NO_ANALOGS);
 setup_adc(ADC_OFF);
 setup_psp(PSP_DISABLED);
 setup_spi(SPI_SS_DISABLED);
 setup_wdt(WDT_OFF);
 setup_timer_0(RTCC_INTERNAL);
 setup_timer_1(T1_DISABLED);
 setup_timer_2(T2_DISABLED,0,1);
 setup_comparator(NC_NC_NC_NC);
 setup_vref(FALSE);
 enable_interrupts(INT_EXT);
 enable_interrupts(INT_EXT1);
 enable_interrupts(GLOBAL);
 setup_low_volt_detect(FALSE);
CODE EXPLAINATION
 void EXT_isr(void)
 {
 if (OUT)
 {COUNT -= 1;
 if (COUNT == 0)
 {output_bit( PIN_E0, 0); }
 else
 {output_bit( PIN_E0, 1); }
 OUT = 0;
 IN = 0;}
 else
 {IN = 1;}
 }
CODE EXPLAINATION
INTERRUPT
EXTERNAL_0
 void EXT1_isr(void)
 {
 if (IN)
 {
 COUNT+=1;
 output_bit( PIN_E0, 1);

 OUT = 0;
 IN = 0;
 }
 else
 {
 OUT = 1;
 }
 }
CODE EXPLAINATION
INTERRUPT
EXTERNAL_1
 void main()
 {
 IN=0;
 OUT=0;
 while(1);
 }
CODE EXPLAINATION
MAIN
PROGRAM
[SIMULATION]
PROTEUS SIMULATION OF CIRCUIT
O U T D O O R L I G H T
D I M M I N G U S I N G
L D R s
2010279
SCHEMATICS
CODE EXPLAINATION
long high_time
long low_time
int value
int lst_value
short high
short low
ADC
INTERNAL
CLOCK
TIMER
0
GLOBAL
AN0
 setup_adc_ports(AN0);
 setup_adc(ADC_CLOCK_INTERNAL);
 setup_psp(PSP_DISABLED);
 setup_spi(SPI_SS_DISABLED);
 setup_wdt(WDT_OFF);
 setup_timer_0(RTCC_INTERNAL);
 setup_timer_1(T1_DISABLED);
 setup_timer_2(T2_DISABLED,0,1);
 setup_comparator(NC_NC_NC_NC);
 setup_vref(FALSE);
 enable_interrupts(INT_TIMER0);
 enable_interrupts(GLOBAL); set_timer0(0);
 lst_value = 0;
CODE EXPLAINATION
CODE EXPLAINATION
FUNCTION
ZERO DUTY
 void zero_duty()
 { output_low(PIN_C0);
 disable_interrupts(INT_TIMER0);
 }
CODE EXPLAINATION
FUNCTION
FULL DUTY
 void full_duty()
 {
 output_high(PIN_C0);
 disable_interrupts(INT_TIMER0);
 }
CODE EXPLAINATION
FUNCTION
X DUTY
(25% / 75%)
 void x_duty(int pcnt_duty)
 {
 if (pcnt_duty == 25)
 {
 high_time = 0x0271;
 low_time = 0xFD8E;
 }
 else
 {
 high_time = 0xFD8E;
 low_time = 0x271;
 }
 output_high(PIN_C0);
 set_timer0(high_time);
 high = 1;
 low = 0;}
CODE EXPLAINATION
TIMER-0
INTERRUPT
 #int_TIMER0
 void TIMER0_isr(void)
 {
 if (high)
 {
 set_timer0(low_time);
 output_low(PIN_C0);
 high = 0;
 low = 1;
 }
 else
 {
 set_timer0(high_time);
 output_high(PIN_C0);
 high = 1;
 low = 0; }}
CODE EXPLAINATION
MAIN
PROGRAM
 while(1)
 { set_adc_channel(0);
 value=read_adc();
 if(value != lst_value)
 { lst_value = value;
 if (value <= 20)
 full_duty();
 else if (value > 20 && value <= 60)
 {enable_interrupts(INT_TIMER0);
 x_duty(75); }

 else if (value > 60 && value < 142)
 { enable_interrupts(INT_TIMER0);
 x_duty(25); }
 else
 zero_duty();}}
[SIMULATION]
PROTEUS SIMULATION OF CIRCUIT
M A N U A L
O V E R WR I T E
C O N T R O L
2010079
FLOW-CHART SUMMARIZATION
 EXTERNAL 0 - MODE SWITCHING
 EXTERNAL 1 - IR SENSORS (IN)
 EXTERNAL 2 - IR SENSORS (OUT)
CODE EXPLAINATION
AUTO/MANUAL MODE SWITCHING
INTERRUPT
CODE EXPLAINATION
Flag bit= high
Manual
Mode
Disable
interrupts
Flag bit= low Auto Mode
Enable
interrupts
 EXTERNAL 0 - MODE SWITCHING
 A bit is initialized with the value 0 (auto
mode), every time the interrupt EXT_0
occurs, the value of the bit is toggled.
C O N C A T I N A T I O
N O F T H E
M O D U L E S
2010079
FLOW-CHART SUMMARIZATION
START
AUTO MODE
MAIN
ENABLE INTERRUPTS
TEMP SENSOR
FUNCTION
DIMMER FUNCTION
RETURN TO MAIN
FLOW-CHART SUMMARIZATION
EXT 0
SWITCH
MODE
AUTO TO
MANUAL
DISABLE EXT
INTERRUPTS
MANUAL
TO AUTO
ENABLE EXT
INTERRUPTS
T H E E N D !

Contenu connexe

Tendances

Blood pressure set programming
Blood pressure set programmingBlood pressure set programming
Blood pressure set programming
Noorshahida Kassim
 
Hc stp02 2013-11-20
Hc stp02 2013-11-20Hc stp02 2013-11-20
Hc stp02 2013-11-20
tyagi4u
 
amcat sample Abstract
amcat sample Abstractamcat sample Abstract
amcat sample Abstract
Madhuri Sinha
 
Exercises with timers and UART
Exercises with timers and UARTExercises with timers and UART
Exercises with timers and UART
Corrado Santoro
 
Handling Interrupts in Microchip MCUs
Handling Interrupts in Microchip MCUsHandling Interrupts in Microchip MCUs
Handling Interrupts in Microchip MCUs
Corrado Santoro
 

Tendances (19)

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
 
Lathe Spindle Sensor
Lathe Spindle SensorLathe Spindle Sensor
Lathe Spindle Sensor
 
Computer Science Training,IT Training,CS Training,Computer Training Institute,
Computer Science Training,IT Training,CS Training,Computer Training Institute,Computer Science Training,IT Training,CS Training,Computer Training Institute,
Computer Science Training,IT Training,CS Training,Computer Training Institute,
 
Blood pressure set programming
Blood pressure set programmingBlood pressure set programming
Blood pressure set programming
 
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
 
Power the world with mbed LPC1768
Power the world with mbed LPC1768Power the world with mbed LPC1768
Power the world with mbed LPC1768
 
W10: Interrupts
W10: InterruptsW10: Interrupts
W10: Interrupts
 
Hc stp02 2013-11-20
Hc stp02 2013-11-20Hc stp02 2013-11-20
Hc stp02 2013-11-20
 
Calculator
CalculatorCalculator
Calculator
 
Assembly programming II
Assembly programming IIAssembly programming II
Assembly programming II
 
Arduino Workshop 2011.05.31
Arduino Workshop 2011.05.31Arduino Workshop 2011.05.31
Arduino Workshop 2011.05.31
 
Introductions of Messaging bot 做聊天機器人
Introductions of Messaging bot 做聊天機器人Introductions of Messaging bot 做聊天機器人
Introductions of Messaging bot 做聊天機器人
 
amcat sample Abstract
amcat sample Abstractamcat sample Abstract
amcat sample Abstract
 
Exercises with timers and UART
Exercises with timers and UARTExercises with timers and UART
Exercises with timers and UART
 
Android Things in action
Android Things in actionAndroid Things in action
Android Things in action
 
Access tablerobko01
Access tablerobko01Access tablerobko01
Access tablerobko01
 
Arduino cic3
Arduino cic3Arduino cic3
Arduino cic3
 
Handling Interrupts in Microchip MCUs
Handling Interrupts in Microchip MCUsHandling Interrupts in Microchip MCUs
Handling Interrupts in Microchip MCUs
 

En vedette

酒造文化研究会企画書
酒造文化研究会企画書酒造文化研究会企画書
酒造文化研究会企画書
Tatsuhiko Kamiko
 
Future Cooperative Networks
Future Cooperative NetworksFuture Cooperative Networks
Future Cooperative Networks
Hira Shaukat
 
Bios en ingles
Bios en inglesBios en ingles
Bios en ingles
gemanice06
 
Symbol table format
Symbol table formatSymbol table format
Symbol table format
JK Knowledge
 
Speaker recognition using MFCC
Speaker recognition using MFCCSpeaker recognition using MFCC
Speaker recognition using MFCC
Hira Shaukat
 

En vedette (15)

酒造文化研究会企画書
酒造文化研究会企画書酒造文化研究会企画書
酒造文化研究会企画書
 
Future Cooperative Networks
Future Cooperative NetworksFuture Cooperative Networks
Future Cooperative Networks
 
UNIX INTERNALS UNIT-I
UNIX INTERNALS UNIT-IUNIX INTERNALS UNIT-I
UNIX INTERNALS UNIT-I
 
seni kraft
seni kraftseni kraft
seni kraft
 
Bios en ingles
Bios en inglesBios en ingles
Bios en ingles
 
Manual medicina intensiva
Manual medicina intensivaManual medicina intensiva
Manual medicina intensiva
 
硬件体系架构浅析
硬件体系架构浅析硬件体系架构浅析
硬件体系架构浅析
 
Symbol table format
Symbol table formatSymbol table format
Symbol table format
 
Oracle rac资源管理算法与cache fusion实现浅析
Oracle rac资源管理算法与cache fusion实现浅析Oracle rac资源管理算法与cache fusion实现浅析
Oracle rac资源管理算法与cache fusion实现浅析
 
Embedded Web Server based Home Automation using Raspberry PI
Embedded Web Server based Home Automation using Raspberry PIEmbedded Web Server based Home Automation using Raspberry PI
Embedded Web Server based Home Automation using Raspberry PI
 
Home automation
Home    automationHome    automation
Home automation
 
Android Mobile - Home Automation
Android Mobile - Home Automation Android Mobile - Home Automation
Android Mobile - Home Automation
 
Speaker recognition using MFCC
Speaker recognition using MFCCSpeaker recognition using MFCC
Speaker recognition using MFCC
 
IOT Based Home Automation using Raspberry Pi-3
IOT Based Home Automation using Raspberry Pi-3IOT Based Home Automation using Raspberry Pi-3
IOT Based Home Automation using Raspberry Pi-3
 
Home automation using android mobiles
Home automation using android mobilesHome automation using android mobiles
Home automation using android mobiles
 

Similaire à Home automation system

CODING IN ARDUINO
CODING IN ARDUINOCODING IN ARDUINO
CODING IN ARDUINO
S Ayub
 
Vechicle accident prevention using eye bilnk sensor ppt
Vechicle accident prevention using eye bilnk sensor pptVechicle accident prevention using eye bilnk sensor ppt
Vechicle accident prevention using eye bilnk sensor ppt
satish 486
 
Data Acquisition
Data AcquisitionData Acquisition
Data Acquisition
azhar557
 
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
Jayanthi Kannan MK
 
What will be quantization step size in numbers and in voltage for th.pdf
What will be quantization step size in numbers and in voltage for th.pdfWhat will be quantization step size in numbers and in voltage for th.pdf
What will be quantization step size in numbers and in voltage for th.pdf
SIGMATAX1
 
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
 

Similaire à Home automation system (20)

selected input/output - sensors and actuators
selected input/output - sensors and actuatorsselected input/output - sensors and actuators
selected input/output - sensors and actuators
 
CODING IN ARDUINO
CODING IN ARDUINOCODING IN ARDUINO
CODING IN ARDUINO
 
Industrial training presentation
Industrial training presentationIndustrial training presentation
Industrial training presentation
 
Vechicle accident prevention using eye bilnk sensor ppt
Vechicle accident prevention using eye bilnk sensor pptVechicle accident prevention using eye bilnk sensor ppt
Vechicle accident prevention using eye bilnk sensor ppt
 
Arduino Programming
Arduino ProgrammingArduino Programming
Arduino Programming
 
Uart
UartUart
Uart
 
Automatic room light controller with visible counter
Automatic room light controller with visible counterAutomatic room light controller with visible counter
Automatic room light controller with visible counter
 
第二回 冬のスイッチ大勉強会 - FullColorLED & MPU-6050編 -
第二回 冬のスイッチ大勉強会 - FullColorLED & MPU-6050編 -第二回 冬のスイッチ大勉強会 - FullColorLED & MPU-6050編 -
第二回 冬のスイッチ大勉強会 - FullColorLED & MPU-6050編 -
 
Automation and Robotics 20ME51I_Week_2_Practicals.pdf
Automation and Robotics 20ME51I_Week_2_Practicals.pdfAutomation and Robotics 20ME51I_Week_2_Practicals.pdf
Automation and Robotics 20ME51I_Week_2_Practicals.pdf
 
chapter 4
chapter 4chapter 4
chapter 4
 
Data Acquisition
Data AcquisitionData Acquisition
Data Acquisition
 
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
 
DHow2 - L6 VHDL
DHow2 - L6 VHDLDHow2 - L6 VHDL
DHow2 - L6 VHDL
 
Reporte vhd10
Reporte vhd10Reporte vhd10
Reporte vhd10
 
FPGA Tutorial - LCD Interface
FPGA Tutorial - LCD InterfaceFPGA Tutorial - LCD Interface
FPGA Tutorial - LCD Interface
 
The IoT Academy IoT Training Arduino Part 3 programming
The IoT Academy IoT Training Arduino Part 3 programmingThe IoT Academy IoT Training Arduino Part 3 programming
The IoT Academy IoT Training Arduino Part 3 programming
 
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
 
What will be quantization step size in numbers and in voltage for th.pdf
What will be quantization step size in numbers and in voltage for th.pdfWhat will be quantization step size in numbers and in voltage for th.pdf
What will be quantization step size in numbers and in voltage for th.pdf
 
Jp
Jp Jp
Jp
 
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
 

Plus de Hira Shaukat (6)

4 bit counter
4 bit counter4 bit counter
4 bit counter
 
Mobility Management
Mobility ManagementMobility Management
Mobility Management
 
Development of Islamabad through SME
Development of Islamabad through SME Development of Islamabad through SME
Development of Islamabad through SME
 
Spread spectrum communication schemes
Spread spectrum communication schemesSpread spectrum communication schemes
Spread spectrum communication schemes
 
3 d printer
3 d printer3 d printer
3 d printer
 
Cruise control simulation using matlab
Cruise control simulation using matlabCruise control simulation using matlab
Cruise control simulation using matlab
 

Dernier

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
MateoGardella
 
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
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
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
 

Dernier (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...
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
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.
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
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
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
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
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
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
 
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
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 

Home automation system