Automated Plant Growth System

Size: px
Start display at page:

Download "Automated Plant Growth System"

Transcription

1 Automated Plant Growth System Douglas Cooper, Desmond Persaud, and Samael Reyna School of Electrical Engineering and Computer Science, University of Central Florida, Orlando, Florida, Abstract The main idea of this project is characterized by the ability to automatically measure and regulate the main growth characteristics of plants while requiring minimal user interaction. Project includes regulation of nutrient concentration, ph level, and volume of water in our system. System will also give feedback of CO2 level, humidity, and temperature. An automated lighting level adjustment will also be integrated into the project. A wireless interface hosted by a web-server, web-based GUI for system settings and viewing of environmental conditions and a database that will contain existing settings for common plant types as well as data logging purposes. Index Terms CAMAC, Data acquisition, Pulse width modulation, Stepper Motors, Wireless LAN I. INTRODUCTION The Automated Plant Growth System utilizes a hydroponic environment which offers a solution to automatically monitor and regulate basic and critical elements that will optimize growth of plants, as well as provide feedback for some of the conditions surrounding the plant. The portion of the system that is regulated includes nutrient consumption, ph balance and artificial lighting while the feedback portion is provided for Carbon Dioxide level, humidity and temperature. Because it is necessary to keep the growth environment periodically clean and fresh, a pump and valve system must be incorporated that will allow for two different configurations. The first configuration is through the use of large containers, one of which will be used to source the clean water and the other which will be used to drain the old solution. The second configuration will allow the user to connect a pressurized water system, such as municipal city water, as well as a drainage piping in order to reduce the amount of user interaction with the system. As lighting is the one of the most critical elements needed for plant growth much consideration has been made on how to approach this part of this system. In lieu of the going green idea, it was chosen that the lighting be LED based which will use much less power and last longer than typical indoor grow lights. Because LED lighting does not emanate with nearly as much heat as the traditional lighting sources, they can be placed much closer to the plants. With this idea in mind, the basis of the lighting system allows for the light to maintain a constant distance from the plant and self adjust as the plant grows. A wireless interface will be incorporated that can allow a user to locally interact with the system in a local network This will be accomplished by an on-board wireless server that will host a web page which acts as a GUI type user interface allowing the user to view the various conditions of the system as well as setup configuration the settings of the system. Additionally, the on-board server will host a database which will contain two types of information. The first will be a general database of common growth characteristics of various plant types so that a user may easily set up the system without a lot of knowledge of the plants that are being grown. Of course the more knowledgeable user will have the ability to define specific settings and add to the database if they so choose to. The second portion of the database will house the data logged information about the conditions of the system which can be viewed for historical analyses. A) ph Probe Figure 1: ph probe II. SENSORS A BNC ph probe that generates its own potential to measure was ideal for this project. The instrument takes measurements ranging the full scale from 0.00 to ph. The measurement accuracy is 0.01 ph. What the desired ph levels would be only require the knowledge of the tenth decimal place, and while it is very nice to know the ph to the hundredth decimal as listed on this unit, it will not be necessary.

2 The manufacturer specifications use the Steinhart-Hart approximation for temperature approximation. This approximation can be described by the equation below: where, T - Temperature in Kelvins A, B, C Coefficients R Measured Resistance. (1) Figure 2: ph output circuit The output of the BNC connector gave -420 mv to +420 mv to signify different ph levels. We used the circuit above to offset and amplify the signal to readings that our microcontroller can read. The BNC connector s noise is reduced by the input buffer, than offset to positive, than finally a gain is added to the system. B) Humidity and Temperature Sensor To provide feedback necessary for the user to maintain proper humidity in the area of growth, a humidity sensor will be included to provide accurate measurements of the plants surroundings. The coefficients described by this equation were taken from documentation provided by the manufacturer after their own regression testing. Assuming a maximum input voltage of 5 V, the desired maximum output is 5 V and a minimum of near 0 V. Because the output of the thermistor acts as a current source, a current-to-voltage converter was implemented in order to utilize the analog to digital converter. C) Liquid Level Sensor Determining liquid level of the solution helps ensure the necessary height of the solution for the plant s roots to gain access to water and critical nutrients, it also provides the information needed to precisely calculate the correct ratios of ph and nutrient chemicals that must be added to the solution. Given that the horizontal surface area inside the feeder is constant, the height of the solution is the only component necessary to make these accurate volumetric calculations Figure 3: Temperature and Humidity probe The unit that was used required a simple circuit which is shown below. It gives a pulse width modulated output to the microprocessor which does not need any conversion for the humidity portion of this sensor. 10K PWM out (Humidity) 5VDC Vout (Temp) Figure 5: Pressure sensor diagram Figure 4: Temperature and Humidity circuit The approach used for this application is the pressure sensing approach. The specific component chosen is a MPXM2010GS pressure sensor made by Freescale Semiconductor. This sensor also provides on board temperature compensation and self calibration, as well as a linear output.

3 Description Pressure Range Max Supply Voltage Typical Supply Voltage Max.Output Differential Voltage Table 1: Pressure Sensor Specifications Specification 0 10 kpa 10 VDC 5 VDC 25 mv The output of the sensor is a differential output which provides a maximum difference of 25 mv given a supply voltage of 10 VDC. A) Microcontroller III. SYSTEM INTERFACE AND CONTROL The system utilizes two microcontrollers, an ATmega 168 and 328P, to process the sensors and regulate the motors and lighting system. The microcontrollers have multiple analog to digital conversion inputs for some of the sensors and pulse width modulated inputs for the humidity sensor. Since the sensors do not require any feedback from the microcontroller, they do not require any digital to analog conversion. The digital outs on the microcontrollers are used to regulate the motors for the pumps and lighting system. The microcontrollers is programmed with a C- based language in conjunction with a compiler and development board, created by Arduino, to process the higher level functions. The microcontrollers interface with the Lantronix Matchport b/g pro, which is a data server that hosts a user interface web page, through a UART connection on both chips. The diagram below shows the overall function of the system, where the microcontrollers interface with the sensors and regulators, and the website interfaces with the microcontroller to adjust environmental constraints and give feedback. Figure 6: Pressure Sensor Circuit As the BNC connector output before, this system had to have a similar circuit to offset the voltages as well as amplify the signal to its proper digital signal. D) Carbon Dioxide Sensor The sensor used in this project is a CO2 EngineTM (K30) NDIR type sensor developed by SenseAirTM. For this application, only the analog output OUT1 will be utilized which provides a measurement range of 0 to 2500 ppm. Since the output voltage is linear to the input voltage, an input voltage of 5V will be used which will provide a maximum output of 5 V. The following equation was derived using a maximum measurement of 2500 ppm and 5V input maximum:. (2) Using the analog to digital inputs on the microcontroller and the equation above the sensor is utilized in the system to give an accurate reading of CO 2. Figure 7: Block Diagram of System Interface B) Network and User Interface To reduce cost of the overall project the MatchPort b/g Pro was donated by Lantronix and is used in the system. The MatchPort b/g Pro is the gateway to the internet for our microcontroller. Due to the layout of the Universities internet network, the MatchPort will be utilized with an adhoc network. This solution to networking provides an on-chip data server with b/g capabilities which will host the web page. The serial interface on the microcontroller will interact with the Lantronix module through the web site. The web site is written using a java applet that opens the serial port and sends the data at the user s request. The MatchPort has an on-board data server to host the site.

4 Below is a block diagram of the network layout that is implemented in the system. Whenever a connection is made to the webpage, the user is actually connecting directly to the system. Using this layout is advantageous because only one connection is made and it simplifies the system while still allowing for wireless web access. This network layout eliminates the necessity of an external host for the web site and utilizes the full capabilities of the Lantronix module. The web page will allow the user to connect and edit certain environmental constraints controllable by the system. Currently the system can control the ph level, feeding times, liquid level, and lighting times and frequency of lighting. Figure 8: Block Diagram of Network Interface C) External Data Storage Since the microcontroller only has limited space for data storage of the code an external data storage device is required for data logging and database storage. The system uses the Secure Digital breakout board because of the commonality of the media, minimalistic pin usage on the microcontroller, and the cost effectiveness. The first function of the external data storage device is to store the data the microcontroller receives from the sensors. Each sensor will input its reading to the microcontroller and then will it will be stored onto the storage device. The capability of the Secure Digital card is that it is large enough to hold at least one day complete of data. Even though the system does not erase the card frequently there is extra room left on the card for more data depending on the size of the actual Secure Digital card being used. Currently a two gigabyte size Secure Digital card is being utilized in the system. A. Lighting IV. REGULATION The main idea behind the lighting system was to provide an unnatural light source that could sustain plant life and minimize power consumption as well as cost. Through research it was determined that LED lighting would best suit these requirements. Since the light source itself was not a design feature of the project, the focus was maintained on integration aspect of the project. The figure below shows the LED light chosen that is comprised of the blue and red spectrum, which are the necessary wavelengths of light required for proper plant growth. Figure 9: LED Light As part of the integration, two main features were implemented: the first was to allow for on and off cycles, which is required by the plant for proper growth, and the second was a motorized lifting system which maintains a constant distance between the plant and the light at all times. Through the use of a digital I/O pin on the microcontroller, the lighting is switched on and off with a relay. However, to minimize the current drawn from the microcontroller, a simple BJT circuit, as seen in the figure below, has been implemented to reduce the current drawn to about.5 ma. Figure 10: Light Cycling Circuit The lifting system utilizes three main components: an optical sensor, a contact sensor and a motor control circuit. The optical sensor, which is used to detect growth in the system, is an infrared proximity sensor which has been implemented through the use of a comparator circuit as seen in the figure below. This circuit will provide a signal to the microcontroller when an object has been detected within a fixed distance which is determined by the voltage divider connected to the comparator.

5 Figure 11: Optical Sensor Circuit The contact sensor is a magnetic reed switch which lets the system know when the plant has reached its maximum height in the system. The implementation of this sensor does not require any special circuitry except for a buffer on the input of the microcontroller as seen below. Vin = 5V Magnetic Sensor N.O. pin9 pin LM2902 (14-DIP) - + pin8vout Figure 13: DC Motor Control Circuit B. Feeding System Through the group s research on optimizing plant growth, it was decided that the main requirements for this portion of the project would be to regulate the nutrient content and the ph level of the solution. Because the chemicals used require fractions of a tablespoon to be added to the system it was necessary to find a manner in which to apply such small doses. The most effect method found to accomplish this was through the use of peristaltic pumps, which is a self priming mechanism that compresses the liquid inside tubing between small spaced pegs. The diagram below depicts such a mechanism. Figure 12: Contact Sensor Circuit The motor used to lift the lighting is a variable voltage car window motor which has been implemented such that the motor will move slow enough so as to not jerk the lighting during stopping and starting. The control of the motor was designed such that the motor could go in both forward and reverse directions through the design of an H- Bridge. The inputs seen in the circuit below are connected to general I/O pins on the microcontroller. Figure 14: Peristaltic Pump The pump was implemented using a stepper motor and a stepper motor control circuit. Since it was determined that only one pump would be on at any given time, a multiplexer controlled by I/O pins on the microcontroller would determine which one is selected. The control circuit itself is based on the L297/L298 application notes by

6 STMicroelectronics which allows for precision control over the motors. The circuit below shows the configuration of these to IC s along with L6210 which provides diode protection from kickback current from the motor. custom off the shelf ATX power supply was utilized which provided all the power needed by the various circuitry. Additionally, any AC power required also used custom off the shelf transformers in conjunction with a surge protected power strip connected to a standard 120 VAC outlet. The block diagram below outlines the configuration of the power distribution: 120 VAC ATX Power Supply 12,5 VDC12, 5, 3.3, -12 VDC Transformer 24 VAC Figure 15: Stepper Motor Control Circuit Relay Circuit Outlet Valve Control Circuitry Relay 24 VAC Inlet Valve Additionally, various pumps were added to the system for mixing and to control the flow of liquids all of which are controlled by a similar relay circuit as seen in Figure VAC Relays(x4) 120 VAC 120 VAC 120 VAC Figure 16: Power System Configuration Figure 16. Peristaltic Pump setup The image above shows a model of our three input peristaltic pumps. The multiplexer allows for only one to be turned on at a time which is good because there is no fuse in the system. The pumps should not be in a position where they might draw enough current to be harmful to themselves or the system. V. POWER SYSTEM This project required a dynamic range of power to be distributed throughout the system where components such as the lighting, valves and pumps required AC power and all others will require DC power. Since the focus of the project was devoted more to the controls and implementation of sensors, a unique power system was not designed from the ground up, but instead the use of a VI. STRUCTURE The overall design has been chosen to be a rectangular type structure which allows for the simplicity and the expansion that this type of system can offer, should it be necessary in the future. The structure itself would be holding both the electrical components and the various chemical solutions in single structure, without the need for anything to be mounted in a remote location. This structure has an initial stage of the water reservoir as well as the other chemical solutions being filled at each cycling period. The feeding pump should be located in the center of the tank because it maximizes the pumps output. Solution mixture will flow from the center of the tank, through a pipe upward and hopefully disperse evenly by calculating total rate of flow minus the effect that gravity has on our system. Tubing is equidistant from both the center output pipe and each plant allowing the liquid should be distributed evenly to each plant. After the solution goes up and through the roots of the plants, it

7 would flow back into where the rest of the solution is being held. It is for this reason that we would need to have exit valves to clear the used solution after about a week or two pending the size and type of plant that is used. A) Chemical Sensors The chemical sensors are in positions that would allow constant/on-demand measurements of the quantity of each in the solution. During feeding, the chemical make-up of the solution will change based on the amount of nutrients that the plant will consume. This feeding cycle, over time will reduce the amount of each chemical because the used, non-consumed portion is being put back into the solution reservoir. Once the quantities have reached a given a minimum threshold they would be replenished accordingly through the peristaltic pumps. B) Environmental Sensors Because the close proximity of the sensors with the actual plants themselves, it will not make much of a difference as to their physical position. For aesthetic purposes, it would be well placed on top of the electrical components and to the side of the plants. The sensors would include lighting, CO2, humidity and temperature. There are no intentions to try and adjust these parameters but are there for read only features to notify the user for climate changes and what effect that has on the plants. C) Liquid Level Sensor This sensor is placed directly above the actual tank holding the solution, where a tube is connected to the end of the sensor and directed down to the bottom of the tank. This sensor is remotely connected to its circuitry but not through a long distance. D) Lighting The circuitry and motor are all mounted on the very top of the structure. From this area the lighting sensor is connected via a cable and mounted to the light where it will move up and down with the light. The contact sensor will be connected to the bottom side of the top of the structure such that it can detect when the light has reached the maximum position. Figure 17: Structure Diagram E) Frame and Electronics Protection The frame will be sturdy enough to more than compensate for the fact that this entire unit will move more than a few times. There will be several liquids which need small portions to be added into our system which is to say that rigidity is essential in these portions of the frame. The electronics will be close to the liquids which makes any electrical engineer a little sensitive to the thought as to what might happen should there be a leak in the system. Currently there are no situations that are deemed critical enough as to move the entire electrical components away from the liquids. F) Piping The structure itself will require at least two different types of piping. The solution and the chemical components will have three different volumes and flow rates, requiring the difference in sizes of the tubing. While it may be possible to use the same size, it may not be as practical to dilute the chemicals so that the system has equal pipes flowing liquids throughout. In the feeding portion of the project, to allow for even water flow, the solutions pipes have been routed in such a fashion as to allow for even liquid dispersion. In the chemical regulation portion of the project, the chemical solution will require a smaller amount of liquid, possibly in the order of an eighth inch plastic tubing. It is these small measurements that caused us to consider solutions that have been used in the medical field for some time

8 now. The water regulation part will require a ¾ opening for reasonably fast fill and drain situations. G) Reservoirs The system has five reservoirs holding the ph up and down, Nutrients, water, and the mixture itself. Luckily three of these chemicals will only require minimal amounts to be added to our solution, something in the order of a teaspoon per gallon. It is very easily and inexpensive to acquire a liters worth of these chemicals possibly out living the actual plant itself. While it is to be taken into account the fact that there are multiple plants, and with each plant it will increase the consumption of the chemicals, it still almost seems negligible when looking at the entire system and the need to compensate for the changes per plant that it is going to have. The only thing that should be carefully watched is the fact that plants can get infected which can radically change the chemical solution. VII. CONCLUSION The main goal of this project was to build an automated system that can monitor and regulate environmental conditions for growing plants. Using strong research and foresight in the design of the system allowed the engineers to reach each of their requirements and goals in order to design a fully functional product. The microcontrollers that were used for this project are the ATmega168 and the ATmega328P microcontroller which were excellent due to their easy programming language and computing power. They were used in conjunction with the Lantronix MatchPort b/g Pro, which provided a wireless interface which can be used to connect to the system both locally and externally from the network. In addition, the system provides a data logging capability which is stored on a Secure Digital Card, and accessed using the web based user interface. The microcontrollers read in measurements from different sensors and regulate different devices that control the environmental growth factors for the plants. The sensors used include temperature, CO 2, Liquid Level, Humidity, Nutrient and a ph sensor. The system is able to adjust environmental conditions such as ph, feeding times and liquid level which are accomplished through the use of multiple homemade peristaltic pumps. A separate microcontroller is used for the lighting system because it is very intricate, so in order to simplify the code a separate microcontroller is used. The lighting system maintains a fixed height above the plant automatically as the plant grows and it also regulates day and night cycles. Additionally, the power system distributes the necessary power to each of the valves, regulators, microcontrollers, and sensors. ACKNOWLEDGEMENT The authors wish to acknowledge the assistance and support of Lantronix, Sunstone, and Senseair for their donations to this project. BIOGRAPHY Douglas A. Cooper is a senior Electrical Engineering student who will be graduating in August 2009, Magna cum Laude. Doug has held prior internships with the U.S. Army and Siemens Energy Inc. and is currently interning with the Navy. He plans to pursue his M.S.E.E. in Electro-Optics upon graduation while working for the Department of the Navy as a Systems Engineer. Desmond Persaud is a senior Computer Engineering and Molecular and Microbiology student who will be graduating with a duel degree in August Desmond is an intern with Lockheed Martin and will begin working there full-time upon graduation. He also plans to attain an M.S. in Computer Engineering with a focus in embedded systems programming following graduation. Samael N. Reyna is a senior Electrical Engineering student graduating fall of A Member of SHPE with certifications in the automotive industry for mobile electronics. Sam has interests in Human computer interaction in with an emphasis on Behavioral sciences. After graduation he plans to do independent study in voice recognition systems. REFERENCES [1] ATmega168 data sheet, Rev. 2545P AVR 02/2009 [2] Freescale Semiconductor MPX2010 application note, MPX2010 Rev 13, 10/2008 [3] Humirel HTF3000 application notes, HTF3000LF HPC077 Rev I April 2008 [4] Lantronix MatchPort b/g Pro integration guide, 2008 Lantronix. MatchPort b/g Pro [5] STMicroelectronics L297/L298 application note, 2001 STMicroelectronics

Group 04. Douglas Cooper Desmond Persaud Samael Reyna

Group 04. Douglas Cooper Desmond Persaud Samael Reyna Group 04 Douglas Cooper Desmond Persaud Samael Reyna 5/22/2009 Introduction This system utilizes a hydroponic environment which offers a solution to automatically monitor and regulate basic and critical

More information

WATER MADE EASY MARINE ENERGY MUNICIPAL INDUSTRIAL

WATER MADE EASY MARINE ENERGY MUNICIPAL INDUSTRIAL MicroChem Water Analysis System The MicroChem is a versatile multi-parameter instrument capable of being configured as a transmitter or PID controller. Specifically designed for drinking and wastewater

More information

This Errata Sheet contains corrections or changes made after the publication of this manual.

This Errata Sheet contains corrections or changes made after the publication of this manual. Errata Sheet This Errata Sheet contains corrections or changes made after the publication of this manual. Product Family: DL35 Manual Number D3-ANLG-M Revision and Date 3rd Edition, February 23 Date: September

More information

SMART SENSORS AND MEMS

SMART SENSORS AND MEMS 2 SMART SENSORS AND MEMS Dr. H. K. Verma Distinguished Professor (EEE) Sharda University, Greater Noida (Formerly: Deputy Director and Professor of Instrumentation Indian Institute of Technology Roorkee)

More information

Using Magnetic Sensors for Absolute Position Detection and Feedback. Kevin Claycomb University of Evansville

Using Magnetic Sensors for Absolute Position Detection and Feedback. Kevin Claycomb University of Evansville Using Magnetic Sensors for Absolute Position Detection and Feedback. Kevin Claycomb University of Evansville Using Magnetic Sensors for Absolute Position Detection and Feedback. Abstract Several types

More information

Philips. Earth field sensors: the natural choice. Philips. Semiconductors

Philips. Earth field sensors: the natural choice. Philips. Semiconductors Philips Earth field sensors: the natural choice Philips Semiconductors Earth magnetic field sensing: a Philips strength Within its extensive range, Philips Semiconductors has a number of magnetoresistive

More information

Senseair S8 Commercial

Senseair S8 Commercial Product Specification Senseair S8 Commercial Miniature infrared CO 2 sensor module 1 (8) Item Senseair S8 Commercial Article No. 004-0-0010, 004-0-0075 Target gas CO 2 Operating Principle Non-dispersive

More information

CLIMATE. Climate sensors to ensure comfort and productivity

CLIMATE. Climate sensors to ensure comfort and productivity CLIMATE Climate sensors to ensure comfort and productivity CLIMATE We produce climate sensors to ensure productivity and comfort in animal production. dol-sensors manufactures sensors for temperature,

More information

Product Specification. SenseAir S8 LP. Miniature infrared CO 2 sensor module. Document PSP 126. Rev 4. Page 1 (10)

Product Specification. SenseAir S8 LP. Miniature infrared CO 2 sensor module. Document PSP 126. Rev 4. Page 1 (10) Product Specification SenseAir S8 LP Miniature infrared CO 2 sensor module Document PSP 126 Rev 4 Page 1 (10) SenseAir S8 LP Miniature infrared CO 2 sensor module Warning! ESD sensitive device! Figure

More information

SEMICONDUCTOR APPLICATION NOTE

SEMICONDUCTOR APPLICATION NOTE SEMICONDUCTOR APPLICATION NOTE Order this document by AN1516/D Prepared by: JC Hamelain Toulouse Pressure Sensor Laboratory Semiconductor Products Sector, Toulouse, France INTRODUCTION Motorola Discrete

More information

A NOVEL METHOD OF RATIO CONTROL WITHOUT USING FLOWMETERS

A NOVEL METHOD OF RATIO CONTROL WITHOUT USING FLOWMETERS A NOVEL METHOD OF RATIO CONTROL WITHOUT USING FLOWMETERS R.Prabhu Jude, L.Sridevi, Dr.P.Kanagasabapathy Madras Institute Of Technology, Anna University, Chennai - 600 044. ABSTRACT This paper describes

More information

ROBOTICS & EMBEDDED SYSTEMS

ROBOTICS & EMBEDDED SYSTEMS ROBOTICS & EMBEDDED SYSTEMS By, DON DOMINIC 29 S3 ECE CET EMBEDDED SYSTEMS small scale computers perform a specific task single component(hardware + software)- embedded after design, incapable of changing

More information

Solar Mobius Final Report. Team 1821 Members: Advisor. Sponsor

Solar Mobius Final Report. Team 1821 Members: Advisor. Sponsor Senior Design II ECE 4902 Spring 2018 Solar Mobius Final Report Team 1821 Members: James Fisher (CMPE) David Pettibone (EE) George Oppong (EE) Advisor Professor Ali Bazzi Sponsor University of Connecticut

More information

EEL4914 Senior Design. Final Design Report

EEL4914 Senior Design. Final Design Report EEL4914 Senior Design Final Design Report Electric Super Bike The Best Team in the World Matt Fisher madfish@ufl.edu Richard Orr gautama@ufl.edu 21 April 2008 1 Contents Contents...2 Abstract...3 Project

More information

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G P R O F. S L A C K L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G G B S E E E @ R I T. E D U B L D I N G 9, O F F I C E 0 9-3 1 8 9 ( 5 8 5 ) 4 7 5-5 1 0

More information

12/31/11 Analog to Digital Converter Noise Testing Final Report Page 1 of 10

12/31/11 Analog to Digital Converter Noise Testing Final Report Page 1 of 10 12/31/11 Analog to Digital Converter Noise Testing Final Report Page 1 of 10 Introduction: My work this semester has involved testing the analog-to-digital converters on the existing Ko Brain board, used

More information

Product Specification SenseAir S8

Product Specification SenseAir S8 Product Specification SenseAir S8 Miniature CO 2 Sensor module Driesen + Kern GmbH SenseAir S8 Miniature infrared CO 2 sensor module Warning! ESD sensitive device! Figure 1. SenseAir S8 Article no. 004-0-005

More information

IT.MLD900 SENSORS AND TRANSDUCERS TRAINER. Signal Conditioning

IT.MLD900 SENSORS AND TRANSDUCERS TRAINER. Signal Conditioning SENSORS AND TRANSDUCERS TRAINER IT.MLD900 The s and Instrumentation Trainer introduces students to input sensors, output actuators, signal conditioning circuits, and display devices through a wide range

More information

ULS24 Frequently Asked Questions

ULS24 Frequently Asked Questions List of Questions 1 1. What type of lens and filters are recommended for ULS24, where can we source these components?... 3 2. Are filters needed for fluorescence and chemiluminescence imaging, what types

More information

LDOR: Laser Directed Object Retrieving Robot. Final Report

LDOR: Laser Directed Object Retrieving Robot. Final Report University of Florida Department of Electrical and Computer Engineering EEL 5666 Intelligent Machines Design Laboratory LDOR: Laser Directed Object Retrieving Robot Final Report 4/22/08 Mike Arms TA: Mike

More information

Exercise 5: PWM and Control Theory

Exercise 5: PWM and Control Theory Exercise 5: PWM and Control Theory Overview In the previous sessions, we have seen how to use the input capture functionality of a microcontroller to capture external events. This functionality can also

More information

WATER METERS M SERIES WATER METERS INSTALLATION, OPERATION AND MAINTENANCE GUIDE METAL M SERIES WATER METER PLASTIC M SERIES WATER METER

WATER METERS M SERIES WATER METERS INSTALLATION, OPERATION AND MAINTENANCE GUIDE METAL M SERIES WATER METER PLASTIC M SERIES WATER METER WATER METERS M SERIES WATER METERS INSTALLATION, OPERATION AND MAINTENANCE GUIDE METAL M SERIES WATER METER PLASTIC M SERIES WATER METER INTRODUCTION M SERIES WATER METERS INDUSTRY S SMALLEST WATER METERS

More information

Intelligent Infrared CO2 Module (Model: MH-Z19)

Intelligent Infrared CO2 Module (Model: MH-Z19) Intelligent Infrared CO2 Module (Model: MH-Z19) User s Manual (Version: 1.0) Valid from: 2015.03.03 Zhengzhou Winsen Electronics Technology Co., Ltd ISO9001 certificated company Statement This manual s

More information

Design of WSN for Environmental Monitoring Using IoT Application

Design of WSN for Environmental Monitoring Using IoT Application Design of WSN for Environmental Monitoring Using IoT Application Sarika Shinde 1, Prof. Venkat N. Ghodke 2 P.G. Student, Department of E and TC Engineering, DPCOE Engineering College, Pune, Maharashtra,

More information

Preliminary Design Report. Project Title: Search and Destroy

Preliminary Design Report. Project Title: Search and Destroy EEL 494 Electrical Engineering Design (Senior Design) Preliminary Design Report 9 April 0 Project Title: Search and Destroy Team Member: Name: Robert Bethea Email: bbethea88@ufl.edu Project Abstract Name:

More information

12/4/ X3 Bridge Amplifier. Resistive bridge amplifier with integrated excitation and power conditioning. Logos Electromechanical

12/4/ X3 Bridge Amplifier. Resistive bridge amplifier with integrated excitation and power conditioning. Logos Electromechanical 12/4/2010 1X3 Bridge Amplifier Resistive bridge amplifier with integrated excitation and power conditioning. Logos Electromechanical 1X3 Bridge Amplifier Resistive bridge amplifier with integrated excitation

More information

IN ELECTRICAL ENGINEERING - I C M E T CRAIOVA

IN ELECTRICAL ENGINEERING - I C M E T CRAIOVA Taking into account that power transformer is the major item of equipment in power systems, its correct operation is vital to system operation. It is well known that transformer failures are sometimes

More information

Driesen + Kern GmbH. Product Specification. SenseAir S8. Commercial. Miniature infrared CO 2 sensor module. Document Rev Page 1 (10)

Driesen + Kern GmbH. Product Specification. SenseAir S8. Commercial. Miniature infrared CO 2 sensor module. Document Rev Page 1 (10) Driesen + Kern GmbH Product Specification SenseAir S8 Commercial Miniature infrared CO 2 sensor module 1 (10) SenseAir S8 Commercial Miniature infrared CO 2 sensor module Warning! ESD sensitive device!

More information

Warning! ESD sensitive device!

Warning! ESD sensitive device! Datasheet & Manual SenseAir S8 Miniature CO2 sensor Model SE-0031 3.2% CO2 Warning! ESD sensitive device! Document PSP 108 Key technical specifications Item Target gas Operating Principle SenseAir S8 CO2

More information

Driesen + Kern GmbH. Product Specification. SenseAir S8. Miniature CO 2 sensor. Document PSP 113. Rev 3. Page 1 (12)

Driesen + Kern GmbH. Product Specification. SenseAir S8. Miniature CO 2 sensor. Document PSP 113. Rev 3. Page 1 (12) Driesen + Kern GmbH Product Specification SenseAir S8 Miniature CO 2 sensor 1 (12) SenseAir S8 Miniature infrared CO 2 sensor module Warning! ESD sensitive device! Figure 1. SenseAir S8 Article no. 004-0-0017

More information

SenseAir S8 Miniature infrared CO 2 sensor module

SenseAir S8 Miniature infrared CO 2 sensor module SenseAir S SenseAir S Miniature infrared CO 2 sensor module Warning! ESD sensitive device! SenseAir S Article no. 004-0-0010 SenseAir S Article no. 004-0-0011 2 (10) Item Target gas Operating Principle

More information

Data sheet and manual. SenseAir S8. Alarm 5% Miniature infrared CO 2 sensor module

Data sheet and manual. SenseAir S8. Alarm 5% Miniature infrared CO 2 sensor module Data sheet and manual SenseAir S8 Alarm 5% Miniature infrared CO 2 sensor module Key technical specification Item SenseAir S8 Alarm 5% Article no. 004-0-001 Target gas CO 2 Operating Principle Non-dispersive

More information

Remote Laboratory Operation: Web Technology Successes

Remote Laboratory Operation: Web Technology Successes Remote Laboratory Operation: Web Technology Successes Masoud Naghedolfeizi 1, Jim Henry 2, Sanjeev Arora 3 Abstract National Aeronautics and Space Administration (NASA) has awarded Fort Valley State University

More information

White Paper Kilopass X2Bit bitcell: OTP Dynamic Power Cut by Factor of 10

White Paper Kilopass X2Bit bitcell: OTP Dynamic Power Cut by Factor of 10 White Paper Kilopass X2Bit bitcell: OTP Dynamic Power Cut by Factor of 10 November 2015 Of the challenges being addressed by Internet of Things (IoT) designers around the globe, none is more pressing than

More information

GasSense NDIR INFRARED TRANSMITTER

GasSense NDIR INFRARED TRANSMITTER GasSense is an innovative high specification dual channel infrared gas sensor with integrated transmitter for the measurement of CO2, CO, CH4, N2O or hydrocarbons. Featuring automatic temperature compensation,

More information

APPLICATION NOTE 695 New ICs Revolutionize The Sensor Interface

APPLICATION NOTE 695 New ICs Revolutionize The Sensor Interface Maxim > Design Support > Technical Documents > Application Notes > Sensors > APP 695 Keywords: high performance, low cost, signal conditioner, signal conditioning, precision sensor, signal conditioner,

More information

Signal Conditioning Fundamentals for PC-Based Data Acquisition Systems

Signal Conditioning Fundamentals for PC-Based Data Acquisition Systems Application Note 048 Signal Conditioning Fundamentals for PC-Based Data Acquisition Systems Introduction PC-based data acquisition (DAQ) systems and plugin boards are used in a very wide range of applications

More information

Making Basic Strain Measurements

Making Basic Strain Measurements IOtech Product Marketing Specialist steve.radecky@iotech.com Making Basic Strain Measurements using 24-Bit IOtech Hardware INTRODUCTION Strain gages are sensing devices used in a variety of physical test

More information

Product Specification. SenseAir S8 LP. Miniature infrared CO 2 sensor module. Document PSP 126. Rev 8. Page 1 (8)

Product Specification. SenseAir S8 LP. Miniature infrared CO 2 sensor module. Document PSP 126. Rev 8. Page 1 (8) Product Specification SenseAir S LP Miniature infrared CO 2 sensor module 1 () Item SenseAir S LP Article no. 004-0-0053 Target gas CO 2 Operating Principle Non-dispersive infrared (NDIR) Measurement range

More information

Temperature Sensing Function

Temperature Sensing Function Chapter 9 Temperature Sensing Function 1. Scope 9-2 2. Function 9-2 3. Characteristics of the Temperature Sensor 9-2 4. Temperature Sensing Function when Using ADI-ADuM4138 9-3 5. Temperature Sensing Correction

More information

FC Series Signal Conditioners

FC Series Signal Conditioners FC Series Signal Conditioners FC-33 DC Selectable Signal Conditioner with 3-way isolation Field configurable input and output ranges of 0-5V, 0-10 V, 0-20 ma and 4-20 ma with 1500 VDC isolation between

More information

Model 805 PWM Proportional Valve / Solenoid Driver with Peak and Hold Control Modes

Model 805 PWM Proportional Valve / Solenoid Driver with Peak and Hold Control Modes Applied Processor and Measurement, Inc. FEATURES Model 805 PWM Proportional Valve / Solenoid Driver with Peak and Hold Control Modes Proportional Valve Driver with PWM output 3.5A max proportional control,

More information

PRECISION CURRENT TRANSDUCERS. DC Current Transducers CT-100 CT-150. User s Manual. All Rights Reserved CAEN ELS d.o.o. Rev. 1.

PRECISION CURRENT TRANSDUCERS. DC Current Transducers CT-100 CT-150. User s Manual. All Rights Reserved CAEN ELS d.o.o. Rev. 1. < DC Current Transducers CT-100 CT-150 User s Manual PRECISION CURRENT TRANSDUCERS All Rights Reserved CAEN ELS d.o.o. Rev. 1.1 November 2014 CAEN ELS d.o.o. Kraška ulica, 2 6210 Sežana Slovenija Mail:

More information

Gas and Air Sensors. Product Specification. SenseAir. Miniature CO2 sensor

Gas and Air Sensors. Product Specification. SenseAir. Miniature CO2 sensor Gas and Air Sensors Product Specification SenseAir S8 Miniature CO2 sensor SenseAir S8 Miniature infrared CO 2 sensor module Warning! ESD sensitive device! Figure 1. SenseAir S8 Article no. 004-0-0050

More information

Microcontroller Based Electric Expansion Valve Controller for Air Conditioning System

Microcontroller Based Electric Expansion Valve Controller for Air Conditioning System Microcontroller Based Electric Expansion Valve Controller for Air Conditioning System Thae Su Aye, and Zaw Myo Lwin Abstract In the air conditioning system, the electric expansion valve (EEV) is one of

More information

Bridge Measurement Systems

Bridge Measurement Systems Section 5 Outline Introduction to Bridge Sensors Circuits for Bridge Sensors A real design: the ADS1232REF The ADS1232REF Firmware This presentation gives an overview of data acquisition for bridge sensors.

More information

Resistance Temperature Detectors (RTDs)

Resistance Temperature Detectors (RTDs) Exercise 2-1 Resistance Temperature Detectors (RTDs) EXERCISE OBJECTIVES To explain how resistance temperature detectors (RTDs) operate; To describe the relationship between the temperature and the electrical

More information

Special-Purpose Operational Amplifier Circuits

Special-Purpose Operational Amplifier Circuits Special-Purpose Operational Amplifier Circuits Instrumentation Amplifier An instrumentation amplifier (IA) is a differential voltagegain device that amplifies the difference between the voltages existing

More information

LINE MAZE SOLVING ROBOT

LINE MAZE SOLVING ROBOT LINE MAZE SOLVING ROBOT EEE 456 REPORT OF INTRODUCTION TO ROBOTICS PORJECT PROJECT OWNER: HAKAN UÇAROĞLU 2000502055 INSTRUCTOR: AHMET ÖZKURT 1 CONTENTS I- Abstract II- Sensor Circuit III- Compare Circuit

More information

Sensor Conditioner ICs Utilizing

Sensor Conditioner ICs Utilizing Sensor Conditioner ICs Utilizing Analog Technology to Adjust the Minute Signals of Sensor Elements FUJITSU is now mass-producing, the sensor conditioner ICs used to adjust the minute signals of sensor

More information

The Discussion of this exercise covers the following points: Introduction How a tuning fork works Industrial applications. How a tuning fork works

The Discussion of this exercise covers the following points: Introduction How a tuning fork works Industrial applications. How a tuning fork works Exercise 3 Vibrating Level Switch EXERCISE OBJECTIVE Learn the working principle of vibrating level switches and learn how to use the vibrating level switch, Model 46933. DISCUSSION OUTLINE The Discussion

More information

Environmental parameter monitoring and Data acquisition for Aquaponics

Environmental parameter monitoring and Data acquisition for Aquaponics Environmental parameter monitoring and Data acquisition for Aquaponics Akhil Nichani B.Tech Student Suchet Iyer B.Tech Student Angad Kumar B.Tech Student Ms. A. Ramya Assistant Professor (O.G.) Abstract

More information

Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application

Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application Abstract Wireless sensor networks use small, low-cost embedded devices for a wide range of applications such as industrial data

More information

T6+ Analog I/O Section. Installation booklet for part numbers: 5/4-80A-115 5/4-90A-115 5/4-80A /4-90A-1224

T6+ Analog I/O Section. Installation booklet for part numbers: 5/4-80A-115 5/4-90A-115 5/4-80A /4-90A-1224 T and T+ are trade names of Trol Systems Inc. TSI reserves the right to make changes to the information contained in this manual without notice. publication /4A115MAN- rev:1 2001 TSI All rights reserved

More information

Strain Gauge Measurement A Tutorial

Strain Gauge Measurement A Tutorial Application Note 078 Strain Gauge Measurement A Tutorial What is Strain? Strain is the amount of deformation of a body due to an applied force. More specifically, strain (ε) is defined as the fractional

More information

5. Transducers Definition and General Concept of Transducer Classification of Transducers

5. Transducers Definition and General Concept of Transducer Classification of Transducers 5.1. Definition and General Concept of Definition The transducer is a device which converts one form of energy into another form. Examples: Mechanical transducer and Electrical transducer Electrical A

More information

S8 Residential pin header

S8 Residential pin header Product Specification S8 Residential pin header Miniature infrared CO sensor module Item S8 Residential pin header Article no. 004-0-0056 Target gas CO Operating Principle Measurement range Measurement

More information

Sensors and Sensing Motors, Encoders and Motor Control

Sensors and Sensing Motors, Encoders and Motor Control Sensors and Sensing Motors, Encoders and Motor Control Todor Stoyanov Mobile Robotics and Olfaction Lab Center for Applied Autonomous Sensor Systems Örebro University, Sweden todor.stoyanov@oru.se 13.11.2014

More information

FABO ACADEMY X ELECTRONIC DESIGN

FABO ACADEMY X ELECTRONIC DESIGN ELECTRONIC DESIGN MAKE A DEVICE WITH INPUT & OUTPUT The Shanghaino can be programmed to use many input and output devices (a motor, a light sensor, etc) uploading an instruction code (a program) to it

More information

Model MV106J/MV116J. ±10nVdc to ±11Vdc Precision DC Voltage Standard Source. Operating Manual

Model MV106J/MV116J. ±10nVdc to ±11Vdc Precision DC Voltage Standard Source. Operating Manual Model MV106J/MV116J ±10nVdc to ±11Vdc Precision DC Voltage Standard Source Operating Manual This page intentionally left blank. MV 106 & MV116 OPERATORS MANUAL Serial No. Win-man\mvman.wpd This page intentionally

More information

The Development and Application of High Compression Ratio Methanol Engine ECU

The Development and Application of High Compression Ratio Methanol Engine ECU National Conference on Information Technology and Computer Science (CITCS 2012) The Development and Application of High Compression Ratio Methanol Engine ECU Hong Bin, 15922184696 hongbinlqyun@163.com

More information

Energy Guard: Home Energy Management

Energy Guard: Home Energy Management Energy Guard: Home Energy Management Spencer Sullivan, Tyler Ensey, Gabriel Holland, and Omar Mohammed II. POWER SUPPLY The power strip will receive its power from a household wall outlet. This supply

More information

Gas and Air Sensors. Product Specification. SenseAir S8. Miniature CO 2 sensor module

Gas and Air Sensors. Product Specification. SenseAir S8. Miniature CO 2 sensor module Gas and Air Sensors Product Specification SenseAir S8 Miniature CO 2 sensor module SenseAir S8 Miniature infrared CO 2 sensor module Warning! ESD sensitive device! Figure 1a. SenseAir S8 Article no. 004-0-0013

More information

O 2 SENSORS Zirconium Dioxide (ZrO 2 ) Software & Hardware Design Guide

O 2 SENSORS Zirconium Dioxide (ZrO 2 ) Software & Hardware Design Guide O 2 SENSORS Zirconium Dioxide (ZrO 2 ) Software & Hardware Design Guide This document describes the recommended software and hardware requirements to control and analyse data from SST Sensing s range of

More information

Integrated Diode Laser System DioPower

Integrated Diode Laser System DioPower Integrated Diode Laser System DioPower PC with LETSoft program DioPower Integrated Components Applications Laser Diode from 15 to 120W Material processing Laser Diode driver up to 6V / 100A Laser soldering

More information

Driesen + Kern GmbH. SenseAir S8

Driesen + Kern GmbH. SenseAir S8 SenseAir S8 SenseAir S8 Miniature infrared CO 2 sensor module Warning! ESD sensitive device! SenseAir S8 Article no. 004-0-0050 SenseAir S8 Article no. 004-0-0051 2 (10) Key technical specification Item

More information

Advanced Soldier Monitoring and Tracking System Using GPS and GSM Introduction

Advanced Soldier Monitoring and Tracking System Using GPS and GSM Introduction Advanced Soldier Monitoring and Tracking System Using GPS and GSM Introduction The infantry soldier of tomorrow promises to be one of the most technologically advanced modern warfare has ever seen. Around

More information

Project Name: SpyBot

Project Name: SpyBot EEL 4924 Electrical Engineering Design (Senior Design) Final Report April 23, 2013 Project Name: SpyBot Team Members: Name: Josh Kurland Name: Parker Karaus Email: joshkrlnd@gmail.com Email: pbkaraus@ufl.edu

More information

Harris IRT Enterprises Multi-Channel Digital Resistance Tester Model XR

Harris IRT Enterprises Multi-Channel Digital Resistance Tester Model XR Harris IRT Enterprises Multi-Channel Digital Resistance Tester Model 6012-06XR Specifications & Dimensions 2 Theory of Operation 3 System Block Diagram 4 Operator Controls & Connectors 5 Test Connections

More information

OVEN INDUSTRIES, INC. Model 5C7-362

OVEN INDUSTRIES, INC. Model 5C7-362 OVEN INDUSTRIES, INC. OPERATING MANUAL Model 5C7-362 THERMOELECTRIC MODULE TEMPERATURE CONTROLLER TABLE OF CONTENTS Features... 1 Description... 2 Block Diagram... 3 RS232 Communications Connections...

More information

Introduction to the Arduino Kit

Introduction to the Arduino Kit 1 Introduction to the Arduino Kit Introduction Arduino is an open source microcontroller platform used for sensing both digital and analog input signals and for sending digital and analog output signals

More information

The wireless alternative to expensive cabling...

The wireless alternative to expensive cabling... The wireless alternative to expensive cabling... ELPRO 905U Wireless Solutions for Process Applications New Products... New Solutions The ELPRO 905U range of telemetry modules provide remote monitoring

More information

Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani

Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani Abstract Aim of this research is to help a remote user to remain in touch with what

More information

Computer Controlled Curve Tracer

Computer Controlled Curve Tracer Computer Controlled Curve Tracer Christopher Curro The Cooper Union New York, NY Email: chris@curro.cc David Katz The Cooper Union New York, NY Email: katz3@cooper.edu Abstract A computer controlled curve

More information

ANALOG TO DIGITAL CONVERTER ANALOG INPUT

ANALOG TO DIGITAL CONVERTER ANALOG INPUT ANALOG INPUT Analog input involves sensing an electrical signal from some source external to the computer. This signal is generated as a result of some changing physical phenomenon such as air pressure,

More information

CNC4PC. C19 A/C FREQUENCY CONVERTER Rev. 4

CNC4PC. C19 A/C FREQUENCY CONVERTER Rev. 4 CNC4PC Manual C19 A/C FREQUENCY CONVERTER Rev. 4 Overview This unit is an easy to use speed controller for routers. It work by modifying the output frequency according to an external control signal. It

More information

Figure 2 shows the actual schematic for the power supply and one channel.

Figure 2 shows the actual schematic for the power supply and one channel. Pass Laboratories Aleph 3 Service Manual rev 0 2/1/96 Aleph 3 Service Manual. The Aleph 3 is a stereo 30 watt per channel audio power amplifier which operates in single-ended class A mode. The Aleph 3

More information

RUNYI GROUP AJ FLOW TOTALIZER. Features

RUNYI GROUP AJ FLOW TOTALIZER. Features AJ FLOW TOTALIZER Features Suitable for flow (Heat) displaying, calculating and controlling of all kinds of liquids, single or mixed gases and vapor. Input multiple flow sensor signals (Such as VSF, Turbine,

More information

Analog Inputs and Outputs

Analog Inputs and Outputs Analog Inputs and Outputs PLCs must also work with continuous or analog signals. Typical analog signals are 0-10 VDC or 4-20 ma. Analog signals are used to represent changing values such as speed, temperature,

More information

International Journal of Advanced Research in Electrical, Electronics and Instrumentation Engineering. (An ISO 3297: 2007 Certified Organization)

International Journal of Advanced Research in Electrical, Electronics and Instrumentation Engineering. (An ISO 3297: 2007 Certified Organization) International Journal of Advanced Research in Electrical, Electronics Device Control Using Intelligent Switch Sreenivas Rao MV *, Basavanna M Associate Professor, Department of Instrumentation Technology,

More information

Infrared Carbon Dioxide Gas Module ( single beam )

Infrared Carbon Dioxide Gas Module ( single beam ) Infrared Carbon Dioxide Gas Module ( single beam ) Wuhan Cubic Optoelectronics Co., Ltd Add:Fenghuang No.3 Road, Fenghuang Industrial Park,Eastlake Hi-tech Development Zone Wuhan 430205, China Tel: 86-27-81628831

More information

Lab 10: Oscillators (version 1.1)

Lab 10: Oscillators (version 1.1) Lab 10: Oscillators (version 1.1) WARNING: Use electrical test equipment with care! Always double-check connections before applying power. Look for short circuits, which can quickly destroy expensive equipment.

More information

TESTING EQUIPMENT SHEAR STRENGTH PARAMETERS SOIL. established in 1972

TESTING EQUIPMENT SHEAR STRENGTH PARAMETERS SOIL.   established in 1972 SOIL www.alfatestusa.com established in 1972 SOIL Used to perform large range of Triaxial tests on soil samples to determine the strength parameters and the mechanical properties. Capable of performing:

More information

Keyword: AVR Microcontroller, GSM, LCD, remote monitoring, Sensors, ZigBee.

Keyword: AVR Microcontroller, GSM, LCD, remote monitoring, Sensors, ZigBee. Volume 3, Issue 7, July 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Design & Implementation

More information

Solid State Pressure Sensors D8M

Solid State Pressure Sensors D8M Solid State Pressure Sensors D8M Solid State Pressure Sensors with Analog, Pulse or Frequency Outputs Compact housing measures 30L x 30W x 12.4H mm. Accept 4 mm OD tubing (D8M-A1, -R1); 3 mm OD tubing

More information

I. INTRODUCTION MAIN BLOCKS OF ROBOT

I. INTRODUCTION MAIN BLOCKS OF ROBOT Stair-Climbing Robot for Rescue Applications Prof. Pragati.D.Pawar 1, Prof. Ragini.D.Patmase 2, Mr. Swapnil.A.Kondekar 3, Mr. Nikhil.D.Andhare 4 1,2 Department of EXTC, 3,4 Final year EXTC, J.D.I.E.T Yavatmal,Maharashtra,

More information

TC LV-Series Temperature Controllers V1.01

TC LV-Series Temperature Controllers V1.01 TC LV-Series Temperature Controllers V1.01 Electron Dynamics Ltd, Kingsbury House, Kingsbury Road, Bevois Valley, Southampton, SO14 OJT Tel: +44 (0) 2380 480 800 Fax: +44 (0) 2380 480 801 e-mail support@electrondynamics.co.uk

More information

D3 04AD 4-Channel Analog Input

D3 04AD 4-Channel Analog Input 4-Channel Analog Input 22 Module Specifications The following table provides the specifications for the Analog Input Module. Review these specifications to make sure the module meets your application requirements.

More information

BATAILG TAIL GAS ANALYZER. Rev. 1.1

BATAILG TAIL GAS ANALYZER. Rev. 1.1 BATAILG TAIL GAS ANALYZER Rev. 1.1 The Tail Gas Analyzer is part of the BAGGI BASE Instruments Series. They are the result of combining the latest state-of-the-art-technology with over 60 years of industry

More information

905U Wireless. New Products... New Solutions. The wireless alternative to expensive cabling... Simple but Reliable. Easy to Use

905U Wireless. New Products... New Solutions. The wireless alternative to expensive cabling... Simple but Reliable. Easy to Use Wireless New Products... New Solutions The range of telemetry modules provide remote monitoring and control by radio or twisted-pair wire, over short or long distances. Transducer signals connected at

More information

DC Resistance Meters 2840 Series

DC Resistance Meters 2840 Series Data Sheet DC Meters Touch screen to zoom, select, and enter values The DC resistance meters feature high accuracy and resolution measurements in the milliohm range. Both meters are ideally suited for

More information

LDC Channels of Laser Diode Control. 16-Channel Laser Diode Controller. Product Features

LDC Channels of Laser Diode Control. 16-Channel Laser Diode Controller. Product Features Product Features 16 independent, isolated channels for laser and TEC control Wide variety of laser controller modules (current and temperature) with up to 3A available per channel Dual channel laser current

More information

Freescale Semiconductor Data Sheet: Technical Data

Freescale Semiconductor Data Sheet: Technical Data Freescale Semiconductor Data Sheet: Technical Data Media Resistant and High Temperature Accuracy Integrated Silicon Sensor for Measuring Absolute, On-Chip Signal Conditioned, Temperature Compensated and

More information

500 W up to 28,800 W 60 V up to 800 V 45 ma up to 2,700 A. Electronic Load ZS

500 W up to 28,800 W 60 V up to 800 V 45 ma up to 2,700 A. Electronic Load ZS 500 W up to 28,800 W 60 V up to 800 V 45 ma up to 2,700 A Electronic Load AC Electronic Loads, Interface overview RS-232 USB GPIB LAN System bus Analog X Analog isolated X Standard ption / not available

More information

SL300 Snow Depth Sensor USL300 SNOW DEPTH SENSOR. Revision User Manual

SL300 Snow Depth Sensor USL300 SNOW DEPTH SENSOR. Revision User Manual USL300 SNOW DEPTH SENSOR Revision 1.1.2 User Manual 1 Table of Contents 1. Introduction... 3 2. Operation... 3 2.1. Electrostatic Transducer... 4 2.2. SL300 Analog Board... 4 2.3. SL300 Digital Circuit

More information

Gas and Air Sensors. Product Specification. SenseAir S8. Miniature CO2 sensor. Document PSP 107. Rev 8. Page 1 (10)

Gas and Air Sensors. Product Specification. SenseAir S8. Miniature CO2 sensor. Document PSP 107. Rev 8. Page 1 (10) Gas and Air Sensors Product Specification SenseAir S8 Miniature CO2 sensor 8 1 (10) SenseAir S8 Miniature infrared CO 2 sensor module Warning! ESD sensitive device! Figure 1. SenseAir S8 Article no. 004-0-0013

More information

Logarithmic Circuits

Logarithmic Circuits by Kenneth A. Kuhn March 24, 2013 A log converter is a circuit that converts an input voltage to an output voltage that is a logarithmic function of the input voltage. Computing the logarithm of a signal

More information

Shock Sensor Module This module is digital shock sensor. It will output a high level signal when it detects a shock event.

Shock Sensor Module This module is digital shock sensor. It will output a high level signal when it detects a shock event. Item Picture Description KY001: Temperature This module measures the temperature and reports it through the 1-wire bus digitally to the Arduino. DS18B20 (https://s3.amazonaws.com/linksprite/arduino_kits/advanced_sensors_kit/ds18b20.pdf)

More information

ECE 477 Digital Systems Senior Design Project Rev 8/09. Homework 5: Theory of Operation and Hardware Design Narrative

ECE 477 Digital Systems Senior Design Project Rev 8/09. Homework 5: Theory of Operation and Hardware Design Narrative ECE 477 Digital Systems Senior Design Project Rev 8/09 Homework 5: Theory of Operation and Hardware Design Narrative Team Code Name: _ATV Group No. 3 Team Member Completing This Homework: Sebastian Hening

More information

April 1994 UCM-420A. Setpoint Controller. Operating and Installation Instructions

April 1994 UCM-420A. Setpoint Controller. Operating and Installation Instructions April TM UCM-A Setpoint Controller Operating and Installation Instructions A LARGE number of applications in a SMALL package... REMOTE SETPOINT CONTROLLER LOCAL SETPOINT CONTROLLER - ma SIGNAL GENERATOR

More information