SlideShare a Scribd company logo
1 of 14
AUTOMATIC TEMPERATURE
CONTROLLER
SUBMITTED BY :
Y.NAVYA VANI
(NIT DURGAPUR)
AUTOMATIC TEMPERATURE
CONTROLLER
AIM:
To make an automatictemperature controllerusinganheaterandan AC to maintainthe
temperature between30-40.
INTRODUCTION:
Using sensor,we can control the heaterand airconditioner(ac) bymaintainingthe temperature
betweenthe 30-40. If the temperature isless than30 , thenheaterisinON conditionandac isin
OFF condition..If the temperature isgreaterthan40 ,thenheateris inOFFconditionandac isinON
condition.
BLOCK DIAGRAM:
COMPONENTSREQUIRED:
 Micro controller8051
 Heater( representedasmotorincircuit diagram)
 Ac ( representedasmotorincircuit diagram)
 2 relays
 Lcd(liquidcrystal display)
 ADC 0804
 GSM(representedasvirtual terminal incircuitdiagram)
 Temperature sensor
ADC
0804
LCD
LCDSENS
POT RELAY1
RELAY2
M
1
M
2
GSM
 Potentiometer
 3-resistors
 2- transistors
 Batteryof 12v
DESCRIPTION:
MICRO-CONTROLLER:A microcontrollerisa single chipVLSIunitwhich,althoughhavinglimited
computational capabilitiespossessenhancedinput/outputcapabilityandanumberof on chip
functional units.Theyare particularlyusedinembeddedsystemsforreal time control applications
withon chip program memoryanddevices.
TEMPERATURE - SENSOR: IT isan automaticinputwhichhas 3pins. We use thisto continuously
monitorthe environmenttemperature.Generallyitgetsactivatedat3.5 volts;and thusit takes
some fixedvaluesinbetween0-5volts.If the sensoroutputisabove 3.5v thenwe can connect
directlytomicrocontrollerbecause itcanaccept onlythe valuesabove 3.5v.if the output valuesare
below3.5vthenwe shall amplifythemtoabove 3.5vby usinga transistor.
LCD: LCD isuseddisplaynumbers , characters,and some special symbolsalso.Usingitsdatalines
we can sendour requireddatawhichhasto be displayed.Itconsistsof 16-pins.
RELAY: It is an electromagneticautomaticswitch.Itisusedto control highvoltage applianceseither
AC or DC. It have 5 pinsc1, c2 , common,normallyclosed(NC) ,normallyopen(no).Itworksonthe
principle of electromagneticinduction.
ADC-0804: It isan analogto digital convertor.Toreadthe continuousvalue we convertanalogdata
to digital data.It has20 pins.Itgivesan8 bitdigital dataas output.Out of 20 pins,11 pinsare
directlyconnectedtomicrocontrollerinwhich8pinsgivesthe digital outputandthe other3 pins
indicatesthe read,write andinterruptmodes.
Potentiometer:Itisusedtosetthe reference voltage inthe ADC.
HEATER: it isusedto heatthe environmenthence topull upthe temperature.
AC: itis usedtocool the environmenthence topull downthe temperature.
GSM: It’sa communicationtechnology(GLOBALSYSTEMFOR MOBILZATION).Itacts as majorrole in
embeddedsystemsforwirelesscommunication.Tooperate thistype of device we use AT
commands.By usingserial communicationwe cansenddata.These Gsmdoesn’thave anyproof of
identity.
CIRCUIT DIAGRAM:
WORKING:
Here sensorshall workto monitorthe temperature.Hence we have mentionedinthe program to
switchon the relay1 if the temperature goesdownbelow 30such that the heatercan be set to on
condition;andtemperature canbe raised.
If 0-5 voltsisthe maximumanalogoutputthenmicrocontrollerwill have 0-255no. of data i.e.,256
logics.
Generallysensorwill produce arange of voltages.We shall checkthe maximumvoltage thatcanbe
producedbythe sensor.Thenthe potentiometershall setthe Vref tothe maximumvoltage.
The analog voltage whichshall be producedbythe sensorshall be convertedintodigitalvaluesby
usingan ADC.Andthose valuesshall be senttothe micro controlleranditacceptsthemand thenit
sendsthe data whichisrequiredtobe sent(itdoesthe actionsthat isto be done).
We can visualisethe messageslike temp>40(if tempcrosses40)andtemp<30(of tempdecreases
lessthan30) and message sent(whenthe message tothe GSMissent)inthe LCDaccordingly.
Messagesshall be senttoour phone throughGSM if the tempincrease more than40 or if the temp
decreaseslessthan30.
RESULT:
Whenthe temperature fallsbelow30thenwe shall geta message ascan be visualisedbelow inthe
virtual terminal.Andcanalsobe seenininthe lcd. We can see these thingsinbelow attached
picture
if the tempcrossesabove 40 thenwe shall geta message same asthe textwe can see inthe virtual
terminal inthe belowattachedpicture.
CONCLUSION:
There by we can see thatwe can evencontrol the temperature byusingasensor.Actually byusinga
sensorwe can getto knowthe temperature statusatanyinstant.There bywe can take following
measurestocontrol it.Here we have writtenaprogram inwhichwe can sense andautomatically
take the requiredsteps.
PROGRAM:
The program we have writtentocontrol the temperature automatically is
#include<reg51.h>
#define ADCP1
#define lcdP2
sbitre1=P3^4;
sbitre2=P3^5;
sbitRS=P2^0;
sbitEN=P2^1;
sbitrd=P3^7;
sbitwr=P3^6;
sbitintr=P3^3;
voidlcdcmd(unsignedintx);
voidlcddata(unsignedchary);
voiddisplay(unsignedcharb[]);
voiddelay(unsignedinttime);
voidinit()
{
lcdcmd(0x30);
delay(5);
lcdcmd(0x30);
delay(5);
lcdcmd(0x30);
delay(5);
lcdcmd(0x02);
delay(5);
lcdcmd(0x28);
delay(5);
lcdcmd(0x0E);
delay(5);
lcdcmd(0x06);
delay(5);
lcdcmd(0x01);
delay(5);
}
voidlcdcmd(unsignedintx)
{
lcd=x;
RS=0;
delay(5);
EN=1;
delay(5);
EN=0;
delay(5);
lcd=x<<4;
RS=0;
delay(5);
EN=1;
delay(5);
EN=0;
delay(5);
}
voidlcddata(unsignedchary)
{
lcd=y;
RS=1;
delay(5);
EN=1;
delay(5);
EN=0;
delay(5);
lcd=y<<4;
RS=1;
delay(5);
EN=1;
delay(5);
EN=0;
delay(5);
}
voiddisplay(unsignedcharb[])
{
inti=0;
for(i=0;b[i]!='0';i++)
{
lcddata(b[i]);
}
}
voiddelay(unsignedint time)
{
unsignedinti,j;
for(i=0;i<=time;i++);
for(j=0;j<=1275;j++);
}
voidserinit()
{
SCON=0x50;
TMOD=0x20;
TH1=0xFD;
TR1=1;
}
voidsertx(unsignedchar*TX)
{
for( ;*TX!='0';*TX++)
{
SBUF=*TX;
while(TI==0);
TI=0;
}}
voidssertx(unsignedint y)
{
SBUF=y;
while(TI==0);
TI=0;
}
voidsssertx(unsignedchart)
{SBUF=t;
while(TI==0);
TI=0;
}
unsignedcharreceive()
{
unsignedcharrx;
while (RI==0);
rx=SBUF;
RI=0;
returnrx;
}
voidokcheck()
{
unsignedcharRx;
do
{
Rx=receive();
}while(Rx!='K');
}
voidfunc()
{
unsignedcharRx;
sertx("AT");
okcheck();
sertx("AT+CMGD=1");
okcheck();
sertx("AT+CMGF=1");
okcheck();
sertx("AT+CNMI=1,2,0,0");
okcheck();
sertx("AT+CMGS="9490660968"");
do
{
Rx=receive();
}while(Rx!='>');
}
/*unsignedcharreceive()
{
unsignedcharrx;
while (RI==0);
rx=SBUF;
RI=0;
returnrx;
} */
voidhex2dec(unsignedintbyte)
{
unsignedintd1,d2,d3,d4,hin,x;
hin=byte*2; //asinthe simulationwe are usinganadc whichhasan vref pointas vref/2hence our
vref voltage reducesto2.5
x=hin/10;
d1=hin%10;
d2=x%10;
d3=x/10;
d4=100*d3+10*d2+d1*1;
lcdcmd(0x85);
lcddata(d3+0x30);
lcddata(d2+0x30);
lcddata(d1+0x30);
//lcddata(d4+0x30);
sertx("ADC:");
ssertx(d3+0x30);
ssertx(d2+0x30);
ssertx(d1+0x30);
//ssertx(d4+0x30);
sertx("rn");
if(d4<30)
{re1=1;
re2=0;
lcdcmd(0xC0);
display("temp<30");
sertx("temphasfallenbelow30");
func();
sertx("temperature hasfallenbelow 30hence heaterissetto on mode");
sssertx(0X1A);
okcheck();
}
else
if(d4>40)
{re1=0;
re2=1;
lcdcmd(0xC0);
display("temp>40");
sertx("temperature hascrossed40");
func();
sertx("temperature hascrossed40hence AC issetto on mode");
sssertx(0X1A);
okcheck();
}
}
voidmain()
{
unsignedintval;
wr=rd=intr=1;
init();
lcdcmd(0x80);
display("ADC:");
serinit();
while(1)
{
wr=0;
rd=1;
intr=1;
while(intr==1)
wr=1;
rd=0;
wr=0;
val=ADC;
hex2dec(val);
}
}

More Related Content

What's hot

SIMPLE Frequency METER using AT89c51
SIMPLE Frequency METER using AT89c51 SIMPLE Frequency METER using AT89c51
SIMPLE Frequency METER using AT89c51 aroosa khan
 
Temperature Controller with Atmega16
Temperature Controller with Atmega16Temperature Controller with Atmega16
Temperature Controller with Atmega16Siddhant Jaiswal
 
basics of temperature data logger (with energia and stellaris)
basics of  temperature data logger (with energia and stellaris)basics of  temperature data logger (with energia and stellaris)
basics of temperature data logger (with energia and stellaris)Zafer Genc
 
Temperature Sensor
Temperature SensorTemperature Sensor
Temperature SensorEnricVentosa
 
E top controls thermostat catalog
E top controls thermostat catalogE top controls thermostat catalog
E top controls thermostat catalogLeo Le Lee
 
Datasheet Fluke A40B. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke A40B. Hubungi PT. Siwali Swantika 021-45850618Datasheet Fluke A40B. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke A40B. Hubungi PT. Siwali Swantika 021-45850618PT. Siwali Swantika
 
Datasheet Fluke 5790B. Hubungi PT. Siwali Swantika 021-45850618
 Datasheet Fluke 5790B. Hubungi PT. Siwali Swantika 021-45850618 Datasheet Fluke 5790B. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke 5790B. Hubungi PT. Siwali Swantika 021-45850618PT. Siwali Swantika
 
Datasheet Fluke 52120A Extended. Specification. Hubungi PT. Siwali Swantika 0...
Datasheet Fluke 52120A Extended. Specification. Hubungi PT. Siwali Swantika 0...Datasheet Fluke 52120A Extended. Specification. Hubungi PT. Siwali Swantika 0...
Datasheet Fluke 52120A Extended. Specification. Hubungi PT. Siwali Swantika 0...PT. Siwali Swantika
 
ADCMT Digital multimeter Catalog 7461 a-7451a Nihon Denkei
ADCMT Digital multimeter Catalog 7461 a-7451a  Nihon DenkeiADCMT Digital multimeter Catalog 7461 a-7451a  Nihon Denkei
ADCMT Digital multimeter Catalog 7461 a-7451a Nihon DenkeiNIHON DENKEI SINGAPORE
 
Lead free reflow oven s-6600
Lead free reflow oven s-6600Lead free reflow oven s-6600
Lead free reflow oven s-6600Quella Fan
 
SPA2_IS Inputs
SPA2_IS InputsSPA2_IS Inputs
SPA2_IS InputsGarry Hull
 
Datasheet Fluke 5522A. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke 5522A. Hubungi PT. Siwali Swantika 021-45850618Datasheet Fluke 5522A. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke 5522A. Hubungi PT. Siwali Swantika 021-45850618PT. Siwali Swantika
 
Datasheet Fluke 96000 Extended Specification. Hubungi PT. Siwali Swantika 021...
Datasheet Fluke 96000 Extended Specification. Hubungi PT. Siwali Swantika 021...Datasheet Fluke 96000 Extended Specification. Hubungi PT. Siwali Swantika 021...
Datasheet Fluke 96000 Extended Specification. Hubungi PT. Siwali Swantika 021...PT. Siwali Swantika
 
Natural ventilation controls brochure
Natural ventilation controls brochureNatural ventilation controls brochure
Natural ventilation controls brochureAndy Brown
 

What's hot (20)

Frequency counter
Frequency counterFrequency counter
Frequency counter
 
SIMPLE Frequency METER using AT89c51
SIMPLE Frequency METER using AT89c51 SIMPLE Frequency METER using AT89c51
SIMPLE Frequency METER using AT89c51
 
Temperature controller
Temperature controller Temperature controller
Temperature controller
 
Dgs co 968-034 digital co sensor module
Dgs co 968-034 digital co sensor moduleDgs co 968-034 digital co sensor module
Dgs co 968-034 digital co sensor module
 
Temperature Controller with Atmega16
Temperature Controller with Atmega16Temperature Controller with Atmega16
Temperature Controller with Atmega16
 
basics of temperature data logger (with energia and stellaris)
basics of  temperature data logger (with energia and stellaris)basics of  temperature data logger (with energia and stellaris)
basics of temperature data logger (with energia and stellaris)
 
Temperature Sensor
Temperature SensorTemperature Sensor
Temperature Sensor
 
E top controls thermostat catalog
E top controls thermostat catalogE top controls thermostat catalog
E top controls thermostat catalog
 
Datasheet Fluke A40B. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke A40B. Hubungi PT. Siwali Swantika 021-45850618Datasheet Fluke A40B. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke A40B. Hubungi PT. Siwali Swantika 021-45850618
 
Datasheet Fluke 5790B. Hubungi PT. Siwali Swantika 021-45850618
 Datasheet Fluke 5790B. Hubungi PT. Siwali Swantika 021-45850618 Datasheet Fluke 5790B. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke 5790B. Hubungi PT. Siwali Swantika 021-45850618
 
Pressure sensor module ms5535-30 c
Pressure sensor module   ms5535-30 cPressure sensor module   ms5535-30 c
Pressure sensor module ms5535-30 c
 
Datasheet Fluke 52120A Extended. Specification. Hubungi PT. Siwali Swantika 0...
Datasheet Fluke 52120A Extended. Specification. Hubungi PT. Siwali Swantika 0...Datasheet Fluke 52120A Extended. Specification. Hubungi PT. Siwali Swantika 0...
Datasheet Fluke 52120A Extended. Specification. Hubungi PT. Siwali Swantika 0...
 
ADCMT Digital multimeter Catalog 7461 a-7451a Nihon Denkei
ADCMT Digital multimeter Catalog 7461 a-7451a  Nihon DenkeiADCMT Digital multimeter Catalog 7461 a-7451a  Nihon Denkei
ADCMT Digital multimeter Catalog 7461 a-7451a Nihon Denkei
 
ppt of mdas
ppt of mdasppt of mdas
ppt of mdas
 
Lead free reflow oven s-6600
Lead free reflow oven s-6600Lead free reflow oven s-6600
Lead free reflow oven s-6600
 
SPA2_IS Inputs
SPA2_IS InputsSPA2_IS Inputs
SPA2_IS Inputs
 
Datasheet Fluke 5522A. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke 5522A. Hubungi PT. Siwali Swantika 021-45850618Datasheet Fluke 5522A. Hubungi PT. Siwali Swantika 021-45850618
Datasheet Fluke 5522A. Hubungi PT. Siwali Swantika 021-45850618
 
Datasheet Fluke 96000 Extended Specification. Hubungi PT. Siwali Swantika 021...
Datasheet Fluke 96000 Extended Specification. Hubungi PT. Siwali Swantika 021...Datasheet Fluke 96000 Extended Specification. Hubungi PT. Siwali Swantika 021...
Datasheet Fluke 96000 Extended Specification. Hubungi PT. Siwali Swantika 021...
 
Digital design chap 6
Digital design  chap 6Digital design  chap 6
Digital design chap 6
 
Natural ventilation controls brochure
Natural ventilation controls brochureNatural ventilation controls brochure
Natural ventilation controls brochure
 

Viewers also liked

Shri Laxmi Narayan Dr Shriniwas Kashalikar
Shri Laxmi Narayan Dr  Shriniwas KashalikarShri Laxmi Narayan Dr  Shriniwas Kashalikar
Shri Laxmi Narayan Dr Shriniwas Kashalikarbanothkishan
 
L'OraBlù Bar, Tra mezzanotte e l'alba, 27 febbraio 2016
L'OraBlù Bar, Tra mezzanotte e l'alba, 27 febbraio 2016L'OraBlù Bar, Tra mezzanotte e l'alba, 27 febbraio 2016
L'OraBlù Bar, Tra mezzanotte e l'alba, 27 febbraio 2016Maurizio De Filippis
 
JT Precision - Line Card 2015
JT Precision - Line Card 2015JT Precision - Line Card 2015
JT Precision - Line Card 2015Nicole Hay
 
Modelo de atención a personas con discapacidad. Retos con la inmigración.
Modelo de atención a personas con discapacidad. Retos con la inmigración.Modelo de atención a personas con discapacidad. Retos con la inmigración.
Modelo de atención a personas con discapacidad. Retos con la inmigración.Sergio Murillo Corzo
 
Sampling Design in Applied Marketing Research
Sampling Design in Applied Marketing ResearchSampling Design in Applied Marketing Research
Sampling Design in Applied Marketing ResearchKelly Page
 
Intro To Maharishi Sthapatya Veda
Intro To Maharishi Sthapatya VedaIntro To Maharishi Sthapatya Veda
Intro To Maharishi Sthapatya VedaSJQ
 
PLANES EMPRESARIALES TEFEFONICA
PLANES EMPRESARIALES TEFEFONICAPLANES EMPRESARIALES TEFEFONICA
PLANES EMPRESARIALES TEFEFONICAJon Noceda
 
Ucwalmicw Newsletter - April 2016
Ucwalmicw Newsletter - April 2016Ucwalmicw Newsletter - April 2016
Ucwalmicw Newsletter - April 2016In-SHUCK-ch Nation
 
Economic Development: the 2nd Pillar of In-SHUCK-ch's Nation Building Plan:
Economic Development: the 2nd Pillar of In-SHUCK-ch's Nation Building Plan: Economic Development: the 2nd Pillar of In-SHUCK-ch's Nation Building Plan:
Economic Development: the 2nd Pillar of In-SHUCK-ch's Nation Building Plan: In-SHUCK-ch Nation
 

Viewers also liked (12)

Fincert survey
Fincert surveyFincert survey
Fincert survey
 
Shri Laxmi Narayan Dr Shriniwas Kashalikar
Shri Laxmi Narayan Dr  Shriniwas KashalikarShri Laxmi Narayan Dr  Shriniwas Kashalikar
Shri Laxmi Narayan Dr Shriniwas Kashalikar
 
L'OraBlù Bar, Tra mezzanotte e l'alba, 27 febbraio 2016
L'OraBlù Bar, Tra mezzanotte e l'alba, 27 febbraio 2016L'OraBlù Bar, Tra mezzanotte e l'alba, 27 febbraio 2016
L'OraBlù Bar, Tra mezzanotte e l'alba, 27 febbraio 2016
 
Cables y redes
Cables y redesCables y redes
Cables y redes
 
Mobile review
Mobile reviewMobile review
Mobile review
 
JT Precision - Line Card 2015
JT Precision - Line Card 2015JT Precision - Line Card 2015
JT Precision - Line Card 2015
 
Modelo de atención a personas con discapacidad. Retos con la inmigración.
Modelo de atención a personas con discapacidad. Retos con la inmigración.Modelo de atención a personas con discapacidad. Retos con la inmigración.
Modelo de atención a personas con discapacidad. Retos con la inmigración.
 
Sampling Design in Applied Marketing Research
Sampling Design in Applied Marketing ResearchSampling Design in Applied Marketing Research
Sampling Design in Applied Marketing Research
 
Intro To Maharishi Sthapatya Veda
Intro To Maharishi Sthapatya VedaIntro To Maharishi Sthapatya Veda
Intro To Maharishi Sthapatya Veda
 
PLANES EMPRESARIALES TEFEFONICA
PLANES EMPRESARIALES TEFEFONICAPLANES EMPRESARIALES TEFEFONICA
PLANES EMPRESARIALES TEFEFONICA
 
Ucwalmicw Newsletter - April 2016
Ucwalmicw Newsletter - April 2016Ucwalmicw Newsletter - April 2016
Ucwalmicw Newsletter - April 2016
 
Economic Development: the 2nd Pillar of In-SHUCK-ch's Nation Building Plan:
Economic Development: the 2nd Pillar of In-SHUCK-ch's Nation Building Plan: Economic Development: the 2nd Pillar of In-SHUCK-ch's Nation Building Plan:
Economic Development: the 2nd Pillar of In-SHUCK-ch's Nation Building Plan:
 

Similar to auto

Automatic temperature control using 8085 microprocessor
Automatic temperature control using 8085 microprocessorAutomatic temperature control using 8085 microprocessor
Automatic temperature control using 8085 microprocessorsubhradeep mitra
 
Scada monitoring system
Scada monitoring systemScada monitoring system
Scada monitoring systemManav Mittal
 
Thermophant t ttr31 ttr35 endress+hauser datasheet-temperature switch
Thermophant t ttr31 ttr35 endress+hauser datasheet-temperature switchThermophant t ttr31 ttr35 endress+hauser datasheet-temperature switch
Thermophant t ttr31 ttr35 endress+hauser datasheet-temperature switchENVIMART
 
Monitoring and data logging system for a generator
Monitoring and data logging system for a generatorMonitoring and data logging system for a generator
Monitoring and data logging system for a generatorMoon Shahzad
 
Sensors and microcontroller interfacing
Sensors and microcontroller interfacingSensors and microcontroller interfacing
Sensors and microcontroller interfacingmohamed albanna
 
Temperature based speed control of fan
Temperature based speed control of fanTemperature based speed control of fan
Temperature based speed control of fanÇdh Suman
 
New microsoft power point slide
New microsoft power point slideNew microsoft power point slide
New microsoft power point slideShubham Ranakoti
 
A PROJECT ON scada.pptx
A PROJECT ON scada.pptxA PROJECT ON scada.pptx
A PROJECT ON scada.pptxAshhadRaza1
 
Electronz_Chapter_3.pptx
Electronz_Chapter_3.pptxElectronz_Chapter_3.pptx
Electronz_Chapter_3.pptxMokete5
 
MEASUREMENT AND DISPLAY OF THE MAINS FREQUENCY USING PIC18F4520/50
MEASUREMENT AND DISPLAY OF THE MAINS FREQUENCY USING PIC18F4520/50MEASUREMENT AND DISPLAY OF THE MAINS FREQUENCY USING PIC18F4520/50
MEASUREMENT AND DISPLAY OF THE MAINS FREQUENCY USING PIC18F4520/50Ruthvik Vaila
 
Temperature detection and control
Temperature detection and controlTemperature detection and control
Temperature detection and controlMALLIKARJUNAN M
 
Flowphant t dtt31, dtt35 endress+hauser datasheet-flow switch
Flowphant t dtt31, dtt35 endress+hauser datasheet-flow switchFlowphant t dtt31, dtt35 endress+hauser datasheet-flow switch
Flowphant t dtt31, dtt35 endress+hauser datasheet-flow switchENVIMART
 

Similar to auto (20)

Automatic temperature control using 8085 microprocessor
Automatic temperature control using 8085 microprocessorAutomatic temperature control using 8085 microprocessor
Automatic temperature control using 8085 microprocessor
 
Scada monitoring system
Scada monitoring systemScada monitoring system
Scada monitoring system
 
Thermophant t ttr31 ttr35 endress+hauser datasheet-temperature switch
Thermophant t ttr31 ttr35 endress+hauser datasheet-temperature switchThermophant t ttr31 ttr35 endress+hauser datasheet-temperature switch
Thermophant t ttr31 ttr35 endress+hauser datasheet-temperature switch
 
Monitoring and data logging system for a generator
Monitoring and data logging system for a generatorMonitoring and data logging system for a generator
Monitoring and data logging system for a generator
 
Sensors and microcontroller interfacing
Sensors and microcontroller interfacingSensors and microcontroller interfacing
Sensors and microcontroller interfacing
 
Temperature based speed control of fan
Temperature based speed control of fanTemperature based speed control of fan
Temperature based speed control of fan
 
Fan automation
Fan automationFan automation
Fan automation
 
New microsoft power point slide
New microsoft power point slideNew microsoft power point slide
New microsoft power point slide
 
A PROJECT ON scada.pptx
A PROJECT ON scada.pptxA PROJECT ON scada.pptx
A PROJECT ON scada.pptx
 
Temperature sensor smt172
Temperature sensor   smt172Temperature sensor   smt172
Temperature sensor smt172
 
Electronz_Chapter_3.pptx
Electronz_Chapter_3.pptxElectronz_Chapter_3.pptx
Electronz_Chapter_3.pptx
 
Microcontroller part 3
Microcontroller part 3Microcontroller part 3
Microcontroller part 3
 
MEASUREMENT AND DISPLAY OF THE MAINS FREQUENCY USING PIC18F4520/50
MEASUREMENT AND DISPLAY OF THE MAINS FREQUENCY USING PIC18F4520/50MEASUREMENT AND DISPLAY OF THE MAINS FREQUENCY USING PIC18F4520/50
MEASUREMENT AND DISPLAY OF THE MAINS FREQUENCY USING PIC18F4520/50
 
Final ppt
Final pptFinal ppt
Final ppt
 
Temperature detection and control
Temperature detection and controlTemperature detection and control
Temperature detection and control
 
510 277-283
510 277-283510 277-283
510 277-283
 
EEE305 Assignment-1.pdf
EEE305 Assignment-1.pdfEEE305 Assignment-1.pdf
EEE305 Assignment-1.pdf
 
Fulltext 1005224
Fulltext 1005224 Fulltext 1005224
Fulltext 1005224
 
Flowphant t dtt31, dtt35 endress+hauser datasheet-flow switch
Flowphant t dtt31, dtt35 endress+hauser datasheet-flow switchFlowphant t dtt31, dtt35 endress+hauser datasheet-flow switch
Flowphant t dtt31, dtt35 endress+hauser datasheet-flow switch
 
EEL782_Project
EEL782_ProjectEEL782_Project
EEL782_Project
 

auto