SMART POULTRY FARMING

Size: px
Start display at page:

Download "SMART POULTRY FARMING"

Transcription

1 e-issn Volume 3 Issue 3, March 2017 pp Scientific Journal Impact Factor : SMART POULTRY FARMING Mr.P.Rajkumar,M.E. 1, A.Kathiresan 2, M.Moulishankkar 3, N.Prabhakaran 4, S.Vignesh 5 Department of Electrical and Electronics Engineering, V.S.B Engineering College, Karur Abstract The climate in poultry houses influences the wellbeing and health of humans as well as the birds. Respiratory, digestive and behavioural disorders are more likely to occur in houses in which the climatic conditions are not up to standard. Animals that are not healthy cannot be expected to perform optimally. The younger the animals are or the higher their production level, the more sensitive they become to the climatic conditions in the house. Climate can be defined as the sum of environmental factors which influence the functioning of animal. Keywords Thermistor (Sensor), Stepper motor, Microprocessor I. INTRODUCTION The main objective of this project component is to contribute to sustainable poultry meat production, Where farmer income and animal health is increased and environmental burden is decreased. The poultry raising business, most egg-chicken farms in Taiwan incorporate significant levels of automation into their feeding, harvesting, environmental control and waste management activities. Some farms purchase expensive integration control and monitor systems from overseas, but usually do not have the technical skills and financial resources to adequately maintain and upgrade these systems. Meat-chicken farms have a medium level of automation, which requires more automation such as integration of their independent equipment and/or customized equipment such as automatic chicken growth weighted device for their management. However, country-chicken farms are less automated than other types of poultry farms. II. PROPOSED SYSTEM Without a need of manpower, maintain the farm in smart manner. To reduce the wastage of food for chick and to feed food and water in correct time with the help of motor mechanism. Birds cannot control body temperature, So maintenance of temperature in a important thing for chick welfare by sensing current temperature of farm based upon them, We adjust the temperature. The system software was developed in the Microsoft environment using C comprising several modules with functions including control operations, management decision-making, data storage, image handling, sensor manipulation, and network operation. The sensor network system of the farm associated with if-then-else rules and control mechanisms provides a convenient Internet platform for developing a remote smart All rights Reserved 17

2 Sensors The system of the FS, together with driver and application programs developed in] C and/or VB, can perform automatic and continuous multimedia data collection, environment and process monitoring and equipment control, via either the Internet or some other modern communication media. Benefits such as higher incomes, environmental protection and high quality products can be achieved as these autonomous farming systems can provide better animal, feed and nutrient utilisation opportunities (Hocquette and Chatellier, 2011). Precision livestock farming can transform livestock production through utilisation of nutrients, early health risk warning and reduction in pollutant emissions. According to Wathes (2007) and Berckmans (2008) the current focus of PLF is the monitoring of farm animals through development and validation of various techniques, with the aim of having a system which provides real-time information on the animals and their environment, which acts as a vital aid for farmers in management of their All rights Reserved 18

3 According to Banhazi et al. (2011), for the PLF system to be adopted the process of collecting, processing and analysing data must be simplified such that it presents producers with solutions, not problems. The system must incorporate the following: Thermistor -in automatic control systems for system adjustments. Thermistors, derived from the term thermally sensitive resistors, are a very accurate and cost effective method for measuring temperature. Thermistors are usually two-terminal semiconductor devices made from semi-conductor materials that have an electrical resistance that varies non-linearly with temperature. Some materials provide better stability while others have higher resistance ranges and are fabricated into smaller thermistors. Each specific thermistor has its own unique resistance versus temperature characteristic. Thermistor resistance is determined by the manufacturer by applying a constant current through the thermistor and then measuring the voltage drop that occurs across the thermistor. By applying Ohm s Law, R = V/I (resistance is equal to voltage divided by current), the resistance is determined. Then the Steinhart-Hart equation (see below) is used to calculate the temperature. Although this approach is very flexible, limitations arise at both low and high temperatures. Thermistor All rights Reserved 19

4 The display used is 16x2 LCD (Liquid Crystal Display); which means 16 appeals per line by 2 lines. The standard is referred as HD44780U, which refers to the controller chip which receives data from an external source (Here Atmega328) and transfers directly with the LCD. Here 8-bit mode of LCD is used, i.e., using 8-bit data bus. i.e., using 8-bit data bus. The LCD's used exclusively in watches, calculators and measuring instruments are the simple seven-segment displays, having a limited amount of numeric data. The recent advances in technology have resulted in better legibility, more information displaying capability and a wider temperature range. These have resulted in the LCD's being extensively used in telecommunications and entertainment electronics. III. CIRCUIT DIAGRAM Note 1: Unless otherwise noted, these specifications apply: 55 C TJ +150 C for the LM35 and LM35A; 40 TJ +110 C for the LM35C and LM35CA; and 0 TJ +100 C for the LM35D. VS=+5Vdc and ILOAD=50 μa, in the circuit of Figure 2. These specifications also apply from +2 C to TMAX. Specifications in boldface apply over the full rated temperature range. Note 2: Thermal resistance of the TO-46 package is 400 C/W, junction to ambient, and 24 C/W junction to case. Thermal resistance of the TO-92 package is 180 C/W junction to ambient. Thermal resistance of the small outline molded package is 220 C/W junction to ambient. Thermal resistance of the TO-220 package is 90 C/W junction to ambient. For additional thermal resistance information see table in the Applications section. Note 3: Regulation is measured at constant junction temperature, using pulse testing with a low duty cycle. Changes in output due to heating effects can be computed by multiplying the internal dissipation by the thermal resistance. Note 4: Tested Limits are guaranteed and 100% tested in production. Note 5: Design Limits are guaranteed (but not 100% production tested) over the indicated temperature and supply voltage ranges. These limits are not used to calculate outgoing quality levels. Note 6: Specifications in boldface apply over the full rated temperature range. Note 7: Accuracy is defined as the error between the output voltage and 10mv/ C times the device s case temperature, at specified conditions of voltage, current, and temperature (expressed in All rights Reserved 20

5 Note 8: Nonlinearity is defined as the deviation of the output-voltage-versus-temperature curve from the best-fit straight line, over the device s rated temperature range. Note 9: Quiescent current is defined in the circuit of Figure 1. Note 10: Absolute Maximum Ratings indicate limits beyond which damage to the device may occur. DC and AC electrical specifications do not apply when operating the device beyond its rated operating conditions. See Note 1. IV. IC PROGRAM //Program to make a digital thermometer with display in centigrade scale #include<reg51.h> #define port P3 #define adc_input P1 #define dataport P0 sbit rs = port^0; sbit rw = port^1; sbit e = port^2; sbit wr= port^3; sbit rd= port^4; sbit intr= All rights Reserved 21

6 int test_intermediate3=0, test_final=0,test_intermediate1[10],test_intermediate2[3]=0,0,0; void delay(unsigned int msec ) int i,j ; for(i=0;i<msec;i++) for(j=0; j<1275; j++); void lcd_cmd(unsigned char item) //Function to send command to LCD dataport = item; rs= 0; rw=0; e=1; e=0; return; void lcd_data(unsigned char item) //Function to send data to LCD dataport = item; rs= 1; rw=0; e=1; e=0; //delay(100); return; void lcd_data_string(unsigned char *str) // Function to send string to LCD int i=0; while(str[i]!='\0') lcd_data(str[i]); i++; delay(10); return; void shape() lcd_cmd(64); lcd_data(2); lcd_data(5); lcd_data(2); // Function to create the shape of All rights Reserved 22

7 void convert() // Function to convert the values of ADC into numeric value to be sent to LCD int s; test_final=test_intermediate3; lcd_cmd(0xc1); delay(2); lcd_data_string("temp:"); s=test_final/100; test_final=test_final%100; lcd_cmd(0xc8); if(s!=0) lcd_data(s+48); else lcd_cmd(0x06); s=test_final/10; test_final=test_final%10; lcd_data(s+48); lcd_data(test_final+48); lcd_data('c'); lcd_data(' '); delay(2); void main() int i,j; adc_input=0xff; lcd_cmd(0x38); lcd_cmd(0x0c); //Display On, Cursor Blinking delay(2); lcd_cmd(0x01); // Clear Screen delay(2); while(1) for(j=0;j<3;j++) for(i=0;i<10;i++) rd=1; All rights Reserved 23

8 wr=1; while(intr==1); rd=0; lcd_cmd(0x88); test_intermediate1[i]=adc_input/10; intr=1; for(i=0;i<10;i++) test_intermediate2[j]=test_intermediate1[i]+test_intermediate2[j]; test_intermediate2[0]=test_intermediate2[0]/3; test_intermediate2[1]=test_intermediate2[1]/3; test_intermediate2[2]=test_intermediate2[2]/3; test_intermediate3=test_intermediate2[0]+test_intermediate2[1]+test_intermediate2[2]; shape(); convert(); V. FUTURE SCOPE There have been various survey s that have been carried out in places like Saudi Arabia and Japan and it was inferred that most of the chickens were usually affected by the avian influenza virus. Poultry farms usually provide plenty of animal waste and by using that, goober gas can be developed and can be used for daily energy requirements. Hence, it s very important to maintain the proper environment for the chickens. The health of the chicken at an early age is something to be taken care of as there is chance of chicks competing with each other for survival. Air inflow to the poultry farm also is important so while constructing the farm itself proper care should be taken. Studies have shown that, the effective growth of the chickens depends on the amount of ammonia present in the surroundings. Hence this also provides a scope for future study. VI. CONCLUSION Monitoring environmental parameters in a real time industry are crucial. In this paper, various environmental parameters for effective growth of chickens have been identified and defined. It also explains the method to switch on either sprinkler or water motor based on threshold values of temperature and water level. As well as remote monitoring is done and with the help of this facility, the person in-charge can observe the situation and can react quickly if anything wrong happens. REFERENCES [1] Food and Water Level Control Mechanism for Smart Chicken Poultry Farming, (An ISO 3297: 2007 Certified Organization) Vol. 4, Issue 8, August [2] Smart Farm: Extending Automation To The Farm Level, INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH VOLUME 3, ISSUE 7, JULY [3] The Life of: Broiler chickens, Farm Animal Welfare Compendium Updated [4] The European Food Safety Authority (EFSA). Panel on Animal Health and Welfare (AHAW). Scientific Opinion on the welfare of animals during transport. EFSA Journal (2011) 9(1): [5] The European food Safety Authority (EFSA). Scientific Opinion on the influence of genetic parameters on the welfare and the resistance to stress of commercial broilers. EFSA Journal (2010b) 8(7): [6] (Facts and Figures). Accessed 7 March [7] EFSA Journal (2010b), op. cit. [8] Fukatsu T., M. Hirafuji, T. Kiura, A. Imada and S. Ninomiya Long-term monitoring system using field monitoring servers. Proc. All rights Reserved 24

User Manual. Version 1.0 THERMISTOR CHARACTERISTICS TRAINER. Model No : (ITB - 06ACE)

User Manual. Version 1.0 THERMISTOR CHARACTERISTICS TRAINER. Model No : (ITB - 06ACE) THERMISTOR CHARACTERISTICS TRAINER Model No : (ITB - 06ACE) User Manual Version 1.0 Technical Clarification /Suggestion : / Technical Support Division, Vi Microsystems Pvt. Ltd., Plot No :75, Electronics

More information

SMART FIELD MONITORING WITH FIELD SERVERS BASED ON ICT

SMART FIELD MONITORING WITH FIELD SERVERS BASED ON ICT SMART FIELD MONITORING WITH FIELD SERVERS BASED ON ICT Tokihiro Fukatsu 1 1 National Agriculture and Food Research Organization, Institute of Agricultural Machinery, Ibaraki, Japan e-mail: fukatsu@affrc.go.jp

More information

UNIFIED SMART UTILITY SYSTEM FOR MONITORING CLIMATIC CONDITIONS

UNIFIED SMART UTILITY SYSTEM FOR MONITORING CLIMATIC CONDITIONS Volume: 03 Issue: 02 Feb-2016 www.irjet.net p-issn: 2395-0072 UNIFIED SMART UTILITY SYSTEM FOR MONITORING CLIMATIC CONDITIONS Shilpa G Pabalkar 1, Dr. G S Mundada 2 Shilpa G. Pabalkar 1, Pune, E&TC, Pune

More information

Secure Logistic Management System

Secure Logistic Management System IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 12, Issue 3 Ver. I (May. June. 2017), PP 01-05 www.iosrjournals.org Secure Logistic Management

More information

RT8725. Single-Phase BLDC Fan Driver IC. Features. General Description. Applications

RT8725. Single-Phase BLDC Fan Driver IC. Features. General Description. Applications RT8725 Single-Phase BLDC Fan Driver IC General Description The RT8725 is a single-phase driver IC for fan motors. Rotation speed is controlled by input signal. The RT8725 provides several protection features

More information

IOT BASED AGRICULTURAL CROP MONITORING WITH SOLAR POWER

IOT BASED AGRICULTURAL CROP MONITORING WITH SOLAR POWER IOT BASED AGRICULTURAL CROP MONITORING WITH SOLAR POWER N.V.Selvam Assistant professor, Department of Electrical & Electronics Engineering, Francis Xavier Engineering College, Tirunelveli, TamilNadu, India

More information

A REAL TIME IRRIGATION CONTROL SYSTEM FOR PRECISION AGRICULTURE USING WSN IN INDIAN AGRICULTURAL SECTORS

A REAL TIME IRRIGATION CONTROL SYSTEM FOR PRECISION AGRICULTURE USING WSN IN INDIAN AGRICULTURAL SECTORS A REAL TIME IRRIGATION CONTROL SYSTEM FOR PRECISION AGRICULTURE USING WSN IN INDIAN AGRICULTURAL SECTORS Prathyusha.K 1, G. Sowmya Bala 2, Dr. K. Sreenivasa Ravi 3 1, 2 Assistant Professors, Dept. of ECM,

More information

ARDUINO BASED WATER IRRIGATION SYSTEM

ARDUINO BASED WATER IRRIGATION SYSTEM ARDUINO BASED WATER IRRIGATION SYSTEM Shruti Bansod 1, Rishita Jaiswal 2, Priyanka Sargam 3, Prajakta Survase 4, Prof. Dr. Sachin Sawant 5 1, 2,3,4,5 Department of Engineering Sciences and Humanities,

More information

Precision Poultry Farming: Monitor and Collaborate on Health and Welfare of Laying Hens through Online Zootechnical Diary

Precision Poultry Farming: Monitor and Collaborate on Health and Welfare of Laying Hens through Online Zootechnical Diary Precision Poultry Farming: Monitor and Collaborate on Health and Welfare of Laying Hens through Online Zootechnical Diary Magdalena Stefanova 1 1 Department of Computing Systems, Faculty of Mathematics

More information

DTMF BASED SMART AGRICULURE

DTMF BASED SMART AGRICULURE DTMF BASED SMART AGRICULURE POOJA B. MAHALE BHAGYASHREE B. BHOIR SHUBHANGI B. SHINDE pooja24696@gmail.com shree51118@gmail.com sbshinde1996@gmail.com DEPARTMENT OF ELECTRONICS AND TELECOMMUNICATION SHATABDI

More information

AUTOMATED IRRIGATION AND FERTIGATION SYSTEM

AUTOMATED IRRIGATION AND FERTIGATION SYSTEM AUTOMATED IRRIGATION AND FERTIGATION SYSTEM Gourav Bankar PG Student, Department of Electronics and Telecommunication, MIT College of Engineering, Pune, India Abstract: The Automated Irrigation and Fertigation

More information

RTD CHARACTERISTICS TRAINER

RTD CHARACTERISTICS TRAINER RTD CHARACTERISTICS TRAINER (Model No : ITB - 06CE) User Manual Version 1.0 Technical Clarification /Suggestion : / Technical Support Division, Vi Microsystems Pvt. Ltd., Plot No :75,Electronics Estate,

More information

Solar Powered Smart Irrigation System

Solar Powered Smart Irrigation System Solar Powered Smart Irrigation System Sardesai Mayur A. Patil Ranjeet G. Patil Ranjit B. Katkar Kiran B. Sutar Rohit R. Dr. Irrana Korachgoan Department of Electrical Engineering, Shivaji University /

More information

Intelligent Over Temperature Protection for LED Lighting Applications

Intelligent Over Temperature Protection for LED Lighting Applications Intelligent Over Temperature Protection for LED Lighting Applications White paper Authors: Hakan Yilmazer, Bernd Pflaum October 2013 Power Management & Multimarket Intelligent Over Temperature Protection

More information

Smart Irrigation System Autonomous Monitoring and Controlling of Water Pump by using Photovoltaic Energy

Smart Irrigation System Autonomous Monitoring and Controlling of Water Pump by using Photovoltaic Energy Smart Irrigation System Autonomous Monitoring and Controlling of Water Pump by using Photovoltaic Energy Dhana Lakshmi. N #1, Gomathi K.S *2 # PG Student, Electronics and Communication Engineering Department,

More information

PART NO. : WC1602A V8.1-STBLWHC06 FOR MESSRS. : PAGE: 1/7 WC1602A V8.1 -STBLWHC06 CONTENTS

PART NO. : WC1602A V8.1-STBLWHC06 FOR MESSRS. : PAGE: 1/7 WC1602A V8.1 -STBLWHC06 CONTENTS T h e L C D ( M ) S p e c i a l i s t CONTACT ADDRESS : 3F, Block 13, WangJingKeng Industrial Park, DaKan,XiLi, NanShan, Shenzhen City,China. Tel: 0086-755-83308729 Fax: 0086-755-83308659 E-mail: craig.jiang@wincomlcd.com

More information

Microcontroller Based automatic AQUAPONICS SYSTEM

Microcontroller Based automatic AQUAPONICS SYSTEM Microcontroller Based automatic AQUAPONICS SYSTEM Prof. S. V. Vanmore 1.Mr. Mahesh Khot 2. Mr. Lingaraj Shirasagi 3. Mr. Rohit Salavi 4. Sanjeevan Engineering Institute & Technology, Panhala,Department

More information

Automated Meter Reading for Electricity Using PLCC Method

Automated Meter Reading for Electricity Using PLCC Method Automated Meter Reading for Electricity Using PLCC Method A.M.Musfira Samreen 1, C.Manjula 2 P.G. Student, Department of ECE, Adhiyamaan College of Engineering, Hosur, Tamilnadu, India 1 Assistant Professor,

More information

Single Phase Grid Connected Photovoltaic System

Single Phase Grid Connected Photovoltaic System Single Phase Grid Connected Photovoltaic System 1 Kavya S A, 2 Komal T, 3 Pooja A, 3 Sahana S N and 4 Mr Sachin Angadi 1 ankalakote.kavya@gmail.com Abstract Due to global environmental concerns, photovoltaic

More information

Precision Farming Measures taken to ensure success

Precision Farming Measures taken to ensure success Precision Farming Measures taken to ensure success Presented by David Speller Owner Applied Demand for Chicken Meat Demand has seen a consistent trend Key Economic Factor Margins going one way in real

More information

LAB VIEW BASED WIRELESS SOIL MOISTURE AND TEMPERATURE MONITORING SYSTEM FOR WATER IRRIGATION MANAGEMENT

LAB VIEW BASED WIRELESS SOIL MOISTURE AND TEMPERATURE MONITORING SYSTEM FOR WATER IRRIGATION MANAGEMENT ISSN: 2250-0138 (Online) LAB VIEW BASED WIRELESS SOIL MOISTURE AND TEMPERATURE MONITORING SYSTEM FOR WATER IRRIGATION MANAGEMENT V. D. BACHUWAR a1, A. D. SHLIGRAM, P. PRABHAKAR c AND L. P. DESHMUKH d ad

More information

Internet based Smart Poultry Farm using LabVIEW

Internet based Smart Poultry Farm using LabVIEW Internet based Smart Poultry Farm using LabVIEW Sneha. M 1, T. N. Raghavendra 2, Dr. H. Prasanna Kumar 3 PG Scholar (C&I), Dept. of EE, UVCE, Bangalore, Karnataka, India 1 Assistant Professor, Dept. of

More information

Smart Irrigation System

Smart Irrigation System Smart Irrigation System Aishwarya Kagalkar B.E. Electronics and Communication, B.V. B. College of Engineering and Technology Hubli, India. Abstract Water requirement for agriculture is large. Due to inadequate

More information

Experiment 1: Conservation of Energy and the First Law of Thermodynamics 1

Experiment 1: Conservation of Energy and the First Law of Thermodynamics 1 Experiment 1: Conservation of Energy and the First Law of Thermodynamics 1 Introduction In this activity you will study the flow of energy in the experimental set-up as you run it through a cycle. First

More information

Smart Water Quality Management System

Smart Water Quality Management System GRD Journals Global Research and Development Journal for Engineering National Conference on Advancement in Emerging Technologies (NCAET'18) March 2018 e-issn: 2455-5703 1 Nancy Priyadharshini. R 2 Vanishree.

More information

Linear Fan Speed Controller with OTP Function

Linear Fan Speed Controller with OTP Function Linear Fan Speed Controller with OTP Function Features Linear fan speed controller Wide fan speed control range Programmable anti-lock start up timer Programmable minimum fan speed Adjustable fan speed

More information

SMART AUTOMATED DRIP IRRIGATION SYSTEM Vinaya Kumar S R 1, Sachin Prabhu 2, Sandesh Kumar 3, Ganesh shetty 4 1,2,3,4

SMART AUTOMATED DRIP IRRIGATION SYSTEM Vinaya Kumar S R 1, Sachin Prabhu 2, Sandesh Kumar 3, Ganesh shetty 4 1,2,3,4 SMART AUTOMATED DRIP IRRIGATION SYSTEM Vinaya Kumar S R 1, Sachin Prabhu 2, Sandesh Kumar 3, Ganesh shetty 4 1,2,3,4 Assistant professor, ECE Dept SMVITM Bantakal Udupi, India Abstract Solar power can

More information

International Journal of Engineering Research & Science (IJOER) ISSN: [ ] [Vol-3, Issue-5, May- 2017]

International Journal of Engineering Research & Science (IJOER) ISSN: [ ] [Vol-3, Issue-5, May- 2017] Design and Development of Arduino based Automatic Soil Moisture Monitoring System for Optimum use of Water in Agricultural Fields Sudip Das 1, Biswamoy Pal 2, Partha Das 3, Milan Sasmal 4, Prabuddhamoy

More information

MODERN IRRIGATION SYSTEM

MODERN IRRIGATION SYSTEM International Journal of Computer Engineering & Technology (IJCET) Volume 9, Issue 6, November-December 2018, pp. 189 195, Article ID: IJCET_09_06_020 Available online at http://www.iaeme.com/ijcet/issues.asp?jtype=ijcet&vtype=9&itype=6

More information

GSM Based Automation in Agriculture

GSM Based Automation in Agriculture GSM Based Automation in Agriculture Akshay S. Hegade 1, Sachin H. Jadhav 2, Sneha A. Jadhav 3, Prof. Nitin M. Gaikwad 4 Dept. of Electronics and Telecommunication Engineering, SB Patil COE, Indapur, Maharashtra,

More information

Moisture Sensing Automatic Plant Watering System Using Arduino Uno

Moisture Sensing Automatic Plant Watering System Using Arduino Uno American Journal of Engineering Research (AJER) e-issn: 2320-0847 p-issn : 2320-0936 Volume-7, Issue-7, pp-326-330 www.ajer.org Research Paper Open Access Moisture Sensing Automatic Plant Watering System

More information

Greenhouse Wireless Network Monitoring and Management Using IoT

Greenhouse Wireless Network Monitoring and Management Using IoT Greenhouse Wireless Network Monitoring and Management Using IoT Bagyalakshmi.S 1, Candice.A 2, Chaitra.G 3, V.Preethi 4 UG Scholar, Department of ECE, Adhiyamaan College of Engineering, Hosur, Tamilnadu,

More information

Applications of Internet of Things in the Facility Agriculture

Applications of Internet of Things in the Facility Agriculture Applications of Internet of Things in the Facility Agriculture Linli Zhou, Liangtu Song, Chengjun Xie, and Jie Zhang Institute of Intelligent Machines, Chinese Academy of Sciences 230031, Hefei China Linlizhou@iim.ac.cn

More information

International Journal of Emerging Trends in Science and Technology Optimization of soot blower control

International Journal of Emerging Trends in Science and Technology Optimization of soot blower control International Journal of Emerging Trends in Science and Technology Optimization of soot blower control Bharathi.P Nandhini.R Dheepika.S Valli.M Abstract- Boiler is one of the main equipment in thermal

More information

Development of Software for the Microcontroller Based Automated Drip Irrigation System Using Soil Moisture Sensor

Development of Software for the Microcontroller Based Automated Drip Irrigation System Using Soil Moisture Sensor International Journal of Current Microbiology and Applied Sciences ISSN: 2319-7706 Volume 7 Number 01 (2018) Journal homepage: http://www.ijcmas.com Original Research Article https://doi.org/10.20546/ijcmas.2018.701.169

More information

HTM2500B3C4OIL Water Content in Oil & Temperature Sensor

HTM2500B3C4OIL Water Content in Oil & Temperature Sensor Water Content in Oil Typical 0 to 1000ppm Voltage Output Typical 1 to 4 Volt DC Temperature: NTC Resistance Output Nominal 25 C 10kΩ Accuracy +/- 1 C DESCRIPTION Based on the combined miniature humidity

More information

IOT Based Smart Poultry Farm

IOT Based Smart Poultry Farm IOT Based Smart Poultry Farm Ayyappan.V, Deepika.T, Divya Dharshini.S, Elayaraja.M, Shanmugasundaram.R Department of ECE, Knowledge Institute of Technology, Salem, India *Corresponding Author.T. Deepika

More information

IoT Based Water Quality Monitoring System Using Blynk App

IoT Based Water Quality Monitoring System Using Blynk App IoT Based Water Quality Monitoring System Using Blynk App Suganya P 1, Hariharan S 2, Department of computer science 1,2,Periyar maniammai institute of science and technology 1,2 Email: sugu0805@gmail.com

More information

RT8458. High Efficiency PWM Buck LED Driver Controller. Preliminary. General Description. Features. Applications. Pin Configurations

RT8458. High Efficiency PWM Buck LED Driver Controller. Preliminary. General Description. Features. Applications. Pin Configurations High Efficiency PWM Buck LED Driver Controller General Description The is a PWM controller with an integrated high side floating gate driver. It is used for step down converters by well controlling the

More information

Internet based Smart Poultry Farm

Internet based Smart Poultry Farm Indian Journal of Science and Technology, Vol 8(19), DOI: 10.17485/ijst/2015/v8i19/76227, August 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Internet based Smart Poultry Farm K. Sravanth Goud*

More information

AUTOMATION IN AGRICULTURE FIELD USING ARM 7 BASED ROBOT

AUTOMATION IN AGRICULTURE FIELD USING ARM 7 BASED ROBOT AUTOMATION IN AGRICULTURE FIELD USING ARM 7 BASED ROBOT Praveen Kumar Singh 1, Gaurav S Nikam 2, Rupali S Kad 3 1 Dept. of E&TC, Pimpri Chinchwad College of Engineering, Pune, Maharashtra, India 2 Dept.

More information

Flexible Automatic Water Level Controller and Indicator

Flexible Automatic Water Level Controller and Indicator World Journal of Technology, Engineering and Research, Volume 3, Issue 1 (2018) 359-366 Contents available at WJTER World Journal of Technology, Engineering and Research Journal Homepage: www.wjter.com

More information

NHD-C160100DiZ-FSW-FBW

NHD-C160100DiZ-FSW-FBW NHD-C160100DiZ-FSW-FBW COG (Chip-On-Glass) Liquid Crystal Display Module NHD- Newhaven Display C160100-160 x 100 Pixels DiZ- Model (I²C) F- Transflective SW- Side White LED Backlight F- FSTN (+) B- 6:00

More information

DESIGNING THE REMOTE CONTROLLING OF THE TOWN GAS CONSUMPTION SYSTEM

DESIGNING THE REMOTE CONTROLLING OF THE TOWN GAS CONSUMPTION SYSTEM DESIGNING THE REMOTE CONTROLLING OF THE TOWN GAS CONSUMPTION SYSTEM Akbar Alidadi Shamsabadi¹*, Afshin Raeisi Dehkordi², Shahab Taghipour² ¹ Young researchers club and elites, Islamic Azad University,

More information

An Efficient Approach to detect Anastomosis: a skin burn using Thermistor

An Efficient Approach to detect Anastomosis: a skin burn using Thermistor An Efficient Approach to detect Anastomosis: a skin burn using Thermistor Dipesh Borole, Mohini sawant, Tushar Gharatkar, Prof.Manisha Mhetre Instrumentation Department, Vishwakarma Institute of Technology,

More information

an ISO9001 company TECHNICAL INFORMATION FOR AM-1 Technical Information for Air Quality Control Module AM-1

an ISO9001 company TECHNICAL INFORMATION FOR AM-1 Technical Information for Air Quality Control Module AM-1 Technical Information for Air Quality Control Module AM-1 an ISO9001 company The Figaro AM-1 is a sensor module which is useful for evaluating the application of Figaro s air quality sensors into air quality

More information

SOLAR FED BOOST CONVERTER FOR WATER PUMP APPLICATION

SOLAR FED BOOST CONVERTER FOR WATER PUMP APPLICATION SOLAR FED BOOST CONVERTER FOR WATER PUMP APPLICATION Manimaran. M Student, Department of Electrical and Electronics Engineering Kersome Joshua. M Student, Department of Electrical and Electronics Engineering

More information

The University of Hong Kong Department of Physics. Physics Laboratory PHYS3550 Statistical Mechanics and Thermodynamics

The University of Hong Kong Department of Physics. Physics Laboratory PHYS3550 Statistical Mechanics and Thermodynamics The University of Hong Kong Department of Physics Physics Laboratory PHYS3550 Statistical Mechanics and Thermodynamics Experiment No. 3550-2: Thermoelectric phenomena: heat pump and heat engine Student

More information

EMBEDDED BASED MOISTURE MONITORING AND CONTROL SYSTEM

EMBEDDED BASED MOISTURE MONITORING AND CONTROL SYSTEM Nehru E- Journal A Journal of Nehru Arts and Science College (Autonomous) Journal Home Page: http://nehrucolleges.net/jo.html ISSN: 2349-9052 Research Article Vol 6 issue 1(2018) (Jan - July 2018) EMBEDDED

More information

Process assurance and monitoring in GMA welding Heinz Hackl, Wels

Process assurance and monitoring in GMA welding Heinz Hackl, Wels Process assurance and monitoring in GMA welding Heinz Hackl, Wels INTRODUCTION Today s ever-more stringent demands regarding weldment quality and life-span, intense cost pressure, the rapid propagation

More information

International Journal of Scientific & Engineering Research, Volume 7, Issue 3, March ISSN

International Journal of Scientific & Engineering Research, Volume 7, Issue 3, March ISSN International Journal of Scientific & Engineering Research, Volume 7, Issue 3, March-2016 1026 LIFI BASED AUTOMATED SMART TROLLEY USING RFID V.Padmapriya 1, R.Sangeetha 2, R.Suganthi 3, E.Thamaraiselvi

More information

300mA,Ultra-low noise, Small Package Ultra-Fast CMOS LDO Regulator

300mA,Ultra-low noise, Small Package Ultra-Fast CMOS LDO Regulator 300mA,Ultra-low noise, Small Package Ultra-Fast CMOS LDO Regulator General Description The is designed for portable RF and wireless applications with demanding performance and space requirements. The performance

More information

Development of a Smart Irrigation System

Development of a Smart Irrigation System International Journal of Science and Engineering Investigations vol. 4, issue 45, October 2015 ISSN: 2251-8843 Development of a Smart Irrigation System Ale Daniel T. 1, Ogunti E. O. 2, Orovwiroro Daniela

More information

RT mA, Ultra-Low Noise, Ultra-Fast CMOS LDO Regulator. Features. General Description. Applications. Ordering Information RT9193-

RT mA, Ultra-Low Noise, Ultra-Fast CMOS LDO Regulator. Features. General Description. Applications. Ordering Information RT9193- RT9193 3mA, Ultra-Low Noise, Ultra-Fast CMOS LDO Regulator General Description The RT9193 is designed for portable RF and wireless applications with demanding performance and space requirements. The RT9193

More information

HTM2500B3C4OIL - Water Content in Oil & Temperature Sensor

HTM2500B3C4OIL - Water Content in Oil & Temperature Sensor Preliminary Specification HTM2500B3C4OIL - Water Content in Oil & Temperature Sensor Water Content in Oil Typical 0 to 1000ppm Temperature Voltage Output Typical 1 to 4 Volt DC NTC Resistance Output Nominal

More information

INDUSTRIAL AEROPONICS SMART-CONTROLLER Part No USER MANUAL. Designed by TROPHY Electronics

INDUSTRIAL AEROPONICS SMART-CONTROLLER Part No USER MANUAL. Designed by TROPHY Electronics INDUSTRIAL AEROPONICS SMART-CONTROLLER Part No. 17.215 USER MANUAL Designed by TROPHY Electronics TABLE OF CONTENTS INTRODUCTION 1 STRUCTURAL SCHEME 2 FUNCTIONAL SCHEME 3 SMART-CONTROLLER FUNCTIONS 4 TECHNICAL

More information

Microcontroller S.Durgadevi 1, Anbananthi 2 1

Microcontroller S.Durgadevi 1, Anbananthi 2 1 Embedded System: Patient Life Secure System Based On Microcontroller S.Durgadevi 1, Anbananthi 2 1 Assistant Professor, Dept. of ECE, 2 Assistant Professor, Dept. of ECE, 1 Edayathangudi G.S.Pillay Engineering

More information

FR V, 1.8A, 600KHz Synchronous Step-Down DC/DC Converter. Description. Features. Applications. Pin Assignments. Ordering Information

FR V, 1.8A, 600KHz Synchronous Step-Down DC/DC Converter. Description. Features. Applications. Pin Assignments. Ordering Information 21V, 1.8A, 600KHz Synchronous Step-Down DC/DC Converter Description The is a synchronous step-down DC/DC converter that provides wide 4.5V to 21V input voltage range and 1.8A continuous load current capability.

More information

Implementation of Automated Crop Management and Irrigation system using IoT

Implementation of Automated Crop Management and Irrigation system using IoT Implementation of Automated Crop Management and Irrigation system using IoT E. Srinivasan 1, G. Gayathri 2, S.P. Sakthi Parameswari 3, M. Sherin 4 1Asst Professor, Dept. of Electronics and Communication,

More information

Soil Investigation and Seed Dispensing Station for Farmers using IoT

Soil Investigation and Seed Dispensing Station for Farmers using IoT Soil Investigation and Seed Dispensing Station for Farmers using IoT Bhavya Jain 1, Chirag Sharma 2, Manish Parekh 3 1,2,3Member, Young Engineer s Club, Science Kidz Educare, Mumbai, Maharashtra, India

More information

POWER ELECTRONIC TRAINER Model: PET-1700

POWER ELECTRONIC TRAINER Model: PET-1700 POWER ELECTRONIC TRAINER Model: PET-1700 III. MODULE BOARD 1. Size: 13.4"/.34m X 9.45"/.24m X 1.9"/.048m Approx. 2. Board frame: PS plastic extrusion, 0.118"/3mm thick. 3. Dimensions shown BELOW. I. FEATURES

More information

IOT BASED SYSTEM FOR CONTINUOUS MEASUREMENT AND MONITORING OF TEMPERATURE, SOIL MOISTURE AND RELATIVE HUMIDITY

IOT BASED SYSTEM FOR CONTINUOUS MEASUREMENT AND MONITORING OF TEMPERATURE, SOIL MOISTURE AND RELATIVE HUMIDITY International Journal of Electrical Engineering & Technology (IJEET) Volume 9, Issue 3, May-June 2018, pp. 106 113, Article ID: IJEET_09_03_013 Available online at http://www.iaeme.com/ijeet/issues.asp?jtype=ijeet&vtype=9&itype=3

More information

SOLAR POWERED AUTOMATED IRRIGATION SYSTEM

SOLAR POWERED AUTOMATED IRRIGATION SYSTEM SOLAR POWERED AUTOMATED IRRIGATION SYSTEM Prof. George John P 1, Anuja P 2, Freda Susan James 3, Jincy Alsa Jacob 4, Shalima Sudheer 5 1Prof.George John P, Professor, Electrical and Electronics, Mar Athanasius

More information

EQJW 126: Heating controller with digital user interface, equitherm

EQJW 126: Heating controller with digital user interface, equitherm EQJW 126: Heating controller with digital user interface, equitherm How energy efficiency is improved Integrated automatic cut-off for the heating to save energy and convenient timer for programming the

More information

High Performance Regulated Charge Pump. Features

High Performance Regulated Charge Pump. Features High Performance Regulated Charge Pump General Description The is a high performance charge pump DC/DC converter that produces a regulated V output. No external inductor is required for operation. The

More information

MEHRAN UNIVERSITY OF ENGINEERING AND TECHNOLOGY, JAMSHORO Sensors & Actuator for Automatic Systems LAB # 01 RESISTIVE TEMPERATURE TRANSDUCERS

MEHRAN UNIVERSITY OF ENGINEERING AND TECHNOLOGY, JAMSHORO Sensors & Actuator for Automatic Systems LAB # 01 RESISTIVE TEMPERATURE TRANSDUCERS MEHRAN UNIVERSITY OF ENGINEERING AND TECHNOLOGY, JAMSHORO Sensors & Actuator for Automatic Systems LAB # 01 RESISTIVE TEMPERATURE TRANSDUCERS Roll No: Checked by: Date: Grade: 1. Objectives: To determine

More information

Effective Greenhouse Environmental Control Systems

Effective Greenhouse Environmental Control Systems Effective Greenhouse Environmental Control Systems G.B.Praveen [1], Jayashri.P [2], Manasa M Shetty [3] Assistant Professor, Dept. of E & E, YIT, Mangalore, India 1 Assistant Professor, Dept. of E & E,

More information

Solar powered smart irrigation system-an innovative

Solar powered smart irrigation system-an innovative 2 Review Paper Research Journal of Agriculture and Forestry Sciences ISSN 2320-6063 Solar powered smart irrigation system-an innovative concept Alok Gora 1* and M.S. Dulawat 2 1 Department of Agricultural

More information

HM mA,Ultra-low noise, Ultra-Fast CMOS LDO Regulator. General Description

HM mA,Ultra-low noise, Ultra-Fast CMOS LDO Regulator. General Description 600mA,Ultra-low noise, Ultra-Fast CMOS LDO Regulator General Description The HM1136 is designed for portable RF and wireless applications with demanding performance and space requirements. The HM1136 performance

More information

The Monitoring of Water Quality in IoT Environment

The Monitoring of Water Quality in IoT Environment ABSTRACT 2018 IJSRST Volume 4 Issue 5 Print ISSN: 2395-6011 Online ISSN: 2395-602X Themed Section: Science and Technology The Monitoring of Water Quality in IoT Environment Anuadha T Department of CSE,

More information

A Prevention and Automation of Public Distribution System using RFID and Facial Recognition Camera

A Prevention and Automation of Public Distribution System using RFID and Facial Recognition Camera IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 04, Issue 02 (February. 2014), V6 PP 09-13 www.iosrjen.org A Prevention and Automation of Public Distribution System

More information

WOHWA Blending and Loadout System PCS35 for the bulk materials industry

WOHWA Blending and Loadout System PCS35 for the bulk materials industry 54 % 51 % WOHWA Blending and Loadout System PCS35 for the bulk materials industry Features/Benefits Investment security Accuracy and precision Reliability One system, one point of contact Spare parts provisioning

More information

Controls and Software CHORE-TRONICS 2 Controls

Controls and Software CHORE-TRONICS 2 Controls Controls and Software 2 Controls Chore-Time s Controls and Software Make House Management Easier and More Convenient Dependable hardware technology and software algorithms Chore-Time s Controls are industry

More information

2A BUS TERMINATION REGULATOR

2A BUS TERMINATION REGULATOR A BUS TERMINATION REGULATOR Description The linear regulator is designed to provide the transient peaks up to A sourcing or sinking capability for DDR SDRAM bus termination application. The output voltage

More information

Design of Fuzzy Drip Irrigation Control System Based on ZigBee Wireless Sensor Network

Design of Fuzzy Drip Irrigation Control System Based on ZigBee Wireless Sensor Network Design of Fuzzy Drip Irrigation Control System Based on ZigBee Wireless Sensor Network Xinjian Xiang College of Automation & Electrical Engineering, Zhejiang University of Science and Technology,Zhejiang,

More information

Enhancing Solar Power Generation Using Gravity And Fresh Water Pipe

Enhancing Solar Power Generation Using Gravity And Fresh Water Pipe Enhancing Solar Power Generation Using Gravity And Fresh Water Pipe Dr. G. Mahesh Manivannakumar 1, C. V. Aashika Jeni 2, D. Dhanalakshmi 3 1Head of the Department, Electrical and Electronics Engineering,

More information

MODBUS-RTU Applied to the XR10CX Control WATER HEATER DIGITAL OPERATING CONTROLLER

MODBUS-RTU Applied to the XR10CX Control WATER HEATER DIGITAL OPERATING CONTROLLER MODBUS-RTU Applied to the Control WATER HEATER DIGITAL OPERATING CONTROLLER PVI INDUSTRIES, LLC - Fort Worth, Texas 76111 - Web www.pvi.com - Phone 1-800-433-5654 PV500-67 03/17 Table of Contents 1. THIS

More information

CONTROL SYSTEM OF BIOMASS GASIFIER USING PLC

CONTROL SYSTEM OF BIOMASS GASIFIER USING PLC RESEARCH ARTICLE CONTROL SYSTEM OF BIOMASS GASIFIER USING PLC L.SAROJINI 1, P.KAYALVIZHI 2, D.AJAY ABILASH 3 OPEN ACCESS 1 (Assistant professor, Department of electrical and electronics engineering, Periyar

More information

Zoetis Hatchery Solutions: Embrex And KL Automation. Javier Esandi Director, Marketing & Commercial Operations Zoetis Global BioDevices & Automation

Zoetis Hatchery Solutions: Embrex And KL Automation. Javier Esandi Director, Marketing & Commercial Operations Zoetis Global BioDevices & Automation Zoetis Hatchery Solutions: Embrex And KL Automation Javier Esandi Director, Marketing & Commercial Operations Zoetis Global BioDevices & Automation Support Across All Poultry Industry Segments Biodevice

More information

Sliding Monitoring System for Ground Wheel Based on ATMEGA16 for No-Tillage Planter CT246

Sliding Monitoring System for Ground Wheel Based on ATMEGA16 for No-Tillage Planter CT246 Sliding Monitoring System for Ground Wheel Based on ATMEGA16 for No-Tillage Planter CT246 Lianming Xia, Xiangyou Wang *, Duayang Geng, and Qingfeng Zhang School of Agricultural and Food Engineering, Shandong

More information

Affordable Irrigation Controller Project Proposal ECE 445. Jae Choi Nicholas Foss Andrew Xu. TA: Katherine O Kane

Affordable Irrigation Controller Project Proposal ECE 445. Jae Choi Nicholas Foss Andrew Xu. TA: Katherine O Kane Affordable Irrigation Controller Project Proposal ECE 445 Choi Nicholas Foss Xu TA: Katherine O Kane Table of Contents 1.0 Introduction 1.1 Statement of Purpose 1.2 Objectives 1.2.1 Goals 1.2.2 Functions

More information

AQUAPONICS BASED FARMING SYSTEM

AQUAPONICS BASED FARMING SYSTEM AQUAPONICS BASED FARMING SYSTEM Tushar Ravan 1, Sandhya Shingate 2 Department of EXTC, University of Mumbai MGM College of Engineering & Technology, Kamothe, Maharashtra, India tussharravan@gmail.com sshingate6@gmail.com

More information

SIWAREX FTC-B Weighing Module for Belt Scales Set-up of SIWAREX FTC with SIWATOOL FTC_B

SIWAREX FTC-B Weighing Module for Belt Scales Set-up of SIWAREX FTC with SIWATOOL FTC_B SIWAREX FTC-B Weighing Module for Belt Scales Set-up of SIWAREX FTC with SIWATOOL FTC_B Quick Guide For modules with order number 7MH4900-3AA01 1 Hardware Requirements... 3 2 Connections... 5 3 SIWATOOL

More information

Controls and Software CHORE-TRONICS 2 Controls

Controls and Software CHORE-TRONICS 2 Controls Controls and Software 2 Controls Chore-Time s Controls and Software Make House Management Easier and More Convenient Dependable hardware technology and software algorithms Chore-Time s Controls are industry

More information

DesignandDevelopmentofaMicrocontrollerbasedEggIncubatorforSmallScalePoultryProduction

DesignandDevelopmentofaMicrocontrollerbasedEggIncubatorforSmallScalePoultryProduction Global Journal of Science Frontier Research: D Agriculture and Veterinary Volume 16 Issue 2 Version 1.0 Year 2016 Type : Double Blind Peer Reviewed International Research Journal Publisher: Global Journals

More information

AUTOMATED PEST DETECTION AND PESTICIDE SPRAYING ROBOT

AUTOMATED PEST DETECTION AND PESTICIDE SPRAYING ROBOT AUTOMATED PEST DETECTION AND PESTICIDE SPRAYING ROBOT B Sudha 1, Bhuvana L 2, Divya V 2, Mamathashree S R 2, Pallavi 2 1 Assistant Professor, Department of Telecommunication Engineering, Bangalore Institute

More information

DEVELOPMENT OF A COMPUTER BASED PROCESS CONTROL SYSTEM FOR AN AUTOCLAVE TO CURE POLYMER MATRIX COMPOSITES

DEVELOPMENT OF A COMPUTER BASED PROCESS CONTROL SYSTEM FOR AN AUTOCLAVE TO CURE POLYMER MATRIX COMPOSITES Published in the proceedings of International conference on Instrumentation 2004, Pune. DEVELOPMENT OF A COMPUTER BASED PROCESS CONTROL SYSTEM FOR AN TO CURE POLYMER MATRIX COMPOSITES G.M.Kamalakannan

More information

Kevin Kuo EMERGING DISPLAY CUSTOMER ACCEPTANCE SPECIFICATIONS (LED TYPES) EXAMINED BY : FILE NO. CAS ISSUE : JUN.03,2002 APPROVED BY:

Kevin Kuo EMERGING DISPLAY CUSTOMER ACCEPTANCE SPECIFICATIONS (LED TYPES) EXAMINED BY : FILE NO. CAS ISSUE : JUN.03,2002 APPROVED BY: EXAMINED BY : Kevin Kuo APPROVED BY: FILE NO. CAS-10184 EMERGING DISPLAY ISSUE : JUN.03,2002 TECHNOLOGIES CORPORATION TOTAL PAGE : 7 VERSION : 3 CUSTOMER ACCEPTANCE SPECIFICATIONS MODEL NO. : 20400 (LED

More information

Carbon film resistors

Carbon film resistors Carbon film resistors (6.3 φ 2.4 size: 1 / 3W) ROHM resistors are produced using an integrated production system for parts and materials, and state of the art technology to ensure high precision productivity,

More information

AIMS: Automatic Irrigation Monitoring System using WSN

AIMS: Automatic Irrigation Monitoring System using WSN AIMS: Automatic Irrigation Monitoring System using WSN Mr. Vikas Mane 1, Mr. Sagar A. Kumbhar 2, Mr. Ramesh Y. Chougale 3, Mr. Jinendra N. Kapase 4 1,2,3,4 Department of E&TC, Sanjeevan Engineering and

More information

Energy Efficient Solar Powered Smart Crop Watering with Water System using Arduino Controller

Energy Efficient Solar Powered Smart Crop Watering with Water System using Arduino Controller IJSTE - International Journal of Science Technology & Engineering Volume 3 Issue 09 March 2017 ISSN (online): 2349-784X Energy Efficient Solar Powered Smart Crop Watering with Water System using Arduino

More information

Smart Ration Card Using RFID and GSM Technique

Smart Ration Card Using RFID and GSM Technique Smart Ration Card Using RFID and GSM Technique Mohit Agarwal 1 Manish Sharma 2 1 Electronics and Communication Engineering 2 Electronics and Communication Engineering mohitagarwal202@gmail.com msharma14@amity.edu

More information

FULLY AUTOMATED VALET CAR PARKING SYSTEM AND UNIQUE VEHICLE EXIT NUMBER

FULLY AUTOMATED VALET CAR PARKING SYSTEM AND UNIQUE VEHICLE EXIT NUMBER FULLY AUTOMATED VALET CAR PARKING SYSTEM AND UNIQUE VEHICLE EXIT NUMBER T.Joby Titus 1, V.S.Sanjana Devi 2, B.Saranya 3, M.Pravin 4 1,4 Assistant Professor (Sr.Grade), 3 Assistant Professor, Department

More information

Analysis of DG Influences on System Losses in Distribution Network

Analysis of DG Influences on System Losses in Distribution Network Vol. 8, No.5, (015, pp.141-15 http://dx.doi.org/10.1457/ijgdc.015.8.5.14 Analysis of Influences on System osses in Distribution Network Shipeng Du, Qianzhi Shao and Gang Wang Shenyang Institute of Engineering,

More information

Public Garden Automation

Public Garden Automation Public Garden Automation Mustafa Hamza Abd-Elhamed Khalid 1 and Dr. Eltaher Mohamed Hussein 2 1 Control Engineering, Alneelain University, mustafa099935@gmail.com 2 College of Engineering, Sudan University

More information

Micro-PCR Chip NTC-Thermistor Sensor-Calibration System

Micro-PCR Chip NTC-Thermistor Sensor-Calibration System , pp. 93-100 http://dx.doi.org/10.14257/ijca.2015.8.9.10 Micro-PCR Chip NTC-Thermistor Sensor-Calibration System Seung-CheolLee 1, Chan-Young Park 1,2, Yu-Seop Kim 1,2, Hye-Jeong Song 1,2,Jong-Dae Kim

More information

Thermistors and the various world applications. Comtest (Pty) Ltd. By: Gavin van Rooy

Thermistors and the various world applications. Comtest (Pty) Ltd. By: Gavin van Rooy Thermistors and the various world applications Comtest (Pty) Ltd By: Gavin van Rooy Table of contents Abstract. History of the Thermistor. What is a thermistor made of? Different Types of thermistors -

More information

DEVELOPMENT AND TESTING OF A CAPACITIVE DIGITAL SOIL MOISTURE METRE

DEVELOPMENT AND TESTING OF A CAPACITIVE DIGITAL SOIL MOISTURE METRE Nigerian Journal of Technology (NIJOTECH) Vol. 35, No. 3, July 2016, pp. 686 693 Copyright Faculty of Engineering, University of Nigeria, Nsukka, Print ISSN: 0331-8443, Electronic ISSN: 2467-8821 www.nijotech.com

More information

Development of digital moisture meter for jute fibre and its products

Development of digital moisture meter for jute fibre and its products Indian Journal of Fibre & Textile Research Vol. 36, June 2011, pp. 178-182 Development of digital moisture meter for jute fibre and its products Gautam Roy a & S C Saha National Institute of Research on

More information

AUTOMATIC TICKET PRINTING AND TICKET CHECKING SYSTEM FOR SHIP SERVICE USING QR CODE

AUTOMATIC TICKET PRINTING AND TICKET CHECKING SYSTEM FOR SHIP SERVICE USING QR CODE Volume 119 No. 14 2018, 1081-1087 ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu AUTOMATIC TICKET PRINTING AND TICKET CHECKING SYSTEM FOR SHIP SERVICE USING QR CODE S.Sasirekha 1,

More information