ECE 4510/5530 Microcontroller Applications Week 10

Size: px
Start display at page:

Download "ECE 4510/5530 Microcontroller Applications Week 10"

Transcription

1 ECE 4510/5530 Microcontroller Applications Week 10 Dr. Bradley J. Bazuin Associate Professor Department of Electrical and Computer Engineering College of Engineering and Applied Sciences

2 Lab 9 & 10 Elements Inter-Integrated Circuit (I2C) Interface SCL and SDA connections Calendar MCP7940M-I/P Real-Time Clock/Calendar PING ECE

3 Lab 8 Note: ADC Dynamic Range ECE 4510/5530 3

4 The True Range of and ADC V ADC values are readily defined for and N-bit converter ADC_integer _ InUnipolar 2.5 V _ In N 2 But what is really being measured? ECE 4510/ ADC_integer 2 Bipolar N 1 Voltage guard bands! you don t want to go all the way to 0.0V or 2.5V Example: Temperature indoor/outdoor -30 C to + 50 C or -22 F to 122 F With our device, the measurement range is -0.3V to + 0.5V Unipolar ADC range: decimal 0 to 13,107 or hex 0x0000 to 0x3333 Bipolar ADC range: decimal 28,836 to 39,322 or hex 0x70A4 to 0x999A We have lost over two bits of measurement precision! Only 20% of the measurement range is being used! 4

5 Tailoring ADCs to tasks: Options 1) Adjust the internal gain. The device we are using could use an internal gain of 4. The new measurement range would be to V 2) Provide external gain. Provide an analog op amp circuit so that the signal range nearly fills the ADC range (you still may only use 80% of the total) 3) Use a different Vref for the ADC A possible solution, but normally applying gain is preferred. The noise in the ADC has a defined voltage level. Measuring signals smaller than the noise voltage is not a good idea. ECE 4510/5530 Analog sensor signals are often buffered, had gain applied, filtered, or otherwise preconditioned before the ADC. DAC outputs may also be conditioned. 5

6 Lab 9: Real-Time Clock/Calendar ECE 4510/5530 6

7 I2C Real-Time Clock/Calendar MCP7940M Features Real-Time Clock/Calendar (RTCC): Hours, Minutes, Seconds, Day of Week, Day, Month and Year Dual alarm with single output On-Chip Digital Trimming/Calibration: Range -127 to +127 ppm, Resolution 1 ppm Programmable Open-Drain Output Control: CLKOUT with 4 selectable frequencies Alarm output 64 Bytes SRAM Low-Power CMOS Technology: Dynamic Current: 400 A max write 100 khz and 400 khz Compatibility ESD Protection >4,000V Packages include 8-Lead SOIC, TSSOP, 2x3 TDFN, MSOP and PDIP Temperature Ranges: Industrial (I): -40 C to +85 C

8 Typical Application Schematic

9 MCP7940M Address Map Detail Same as textbook Extra bits Matches clock structure Matches clock structure

10 MCP7940M Control Register Bit 7 is the OUT bit. This sets the logic level on the MFP when not using this as a square wave output. (prefer high for potential interrupt signals = 1) Bit 6 is the SQWE bit. Setting this bit enables the divided output from the crystal oscillator.(we wish to use the signal as an alarm interrupt = 0) Bits 5:4 determine which alarms are active. (set according to requirement) 00 No Alarms are active 01 Alarm 0 is active 10 Alarm 1 is active 11 Both Alarms are active Initial test: 0x40 (1 Hz output) Alarms: 0x80, 0x90, 0xA0 or 0xB0 (high output going low alarm condition) Bit 3 is the EXTOSC enable bit. Setting this bit will allow an external khz signal to drive the RTCC registers, eliminating the need for an external crystal. (set to 0) Bit 2:0 sets the internal divider for the khz oscillator to be driven to the MFP. The duty cycle is 50%. The output is responsive to the Calibration register. The following frequencies are available: (typically 000) Hz khz khz khz 1xx enables the Cal output function. Cal output appears on MFP if SQWE is set (64 Hz Nominal). See Section Calibration for more details.

11 MCP7940M Alarms 0x07h Is the Control register. Bits 5:4 determine which alarms are active. ALMxPOL = 0 00 No Alarms are active 01 Alarm 0 is active ALMxC2 = Alarm 1 is active 11 Both Alarms are active Locations 0x0Dh and 0x14h have additional bits for alarm configuration. ALMxPOL: This bit specifies the level that the MFP will drive when the alarm is triggered. ALM2POL is a copy of ALM1POL. The default state of the MFP when used for alarms is the inverse of ALM1POL. ALMxIF: This is the Alarm Interrupt Fag. This bit is set in hardware if the alarm was triggered. The bit is cleared in software. ALMxC2:0: These Configuration bits determine the alarm match. The logic will trigger the alarm based on one of the following match conditions 000 Seconds match 001 Minutes match 010 Hours match (takes into account 12/24 hour) 011 Matches the current day, interrupt at a.m. 100 Date 111 Seconds, Minutes, Hour, Day, Date, Month

12 MCP7940M I2C Data Transfer MCP7940M supports both 100 khz and 400 khz data transfer. The device address (ID) of the MCP7940M is

13 Lalith s Example Code I2C routines i2c.h and i2c.c // Function prototypes int I2Cinit (char baud_divisor, char dev_id); int I2Cstart (char); int I2Crestart (char); int I2Cwritec (char data); int I2Cwritestr (char *,int); char I2Creadc_ack (void); char I2Creadc_nack (void); int I2Creadstr (char *,int); // uses special definitions for I2C_STOP IBCR I2C_TX_ACK IBCR I2C_TX_NACK IBCR I2C_ACK_CHK(x) Real Time Clock/Calendar rtic.h and rtic.c // Function prototypes int RTICinit (void); int RTICwrite (char,char); char RTICread (char); int RTICpwm (void); //global declaration externs

14 Day of Week from Month/Day/Year The Day of the Week can be determined based on knowing the day, month and year. Microchip Application Note AN1303 Software Real-Time Clock and Calendar Using PIC16F Add a century offset (6 for ) Add the two digits of the year (13 for 2013) Add the number of leap years since 2000 ( int(13/4) = 3) Add a month offset based on a table of values (March = 3) Add the Date (22 March 2013) Take the modulo 7 of the sum ( = 47 5) With Sunday as 0 compute the day. (5 Friday) ECE 4510/

15 Lab 10: see PING Notes ECE 4510/

HM-4201-RTCM High-Temp Real Time Clock Module

HM-4201-RTCM High-Temp Real Time Clock Module HM-4201-RTCM High-Temp Real Time Clock Module HM-4201-RTCM Product Description & Applications High Temp Real Time Clock/Calendar Module with Build-In 32.768KHz Crystal Oscillator. Timing, Calendar and

More information

HM-4201-RTCM High-Temp Real Time Clock Module

HM-4201-RTCM High-Temp Real Time Clock Module HM-4201-RTCM High-Temp Real Time Clock Module HM-4201-RTCM Product Description & Applications High Temp Real Time Clock/Calendar Module with Build-In 32.768KHz Crystal Oscillator. Timing, Calendar and

More information

M41T50 Serial Access Digital Input Real-Time Clock with Alarms

M41T50 Serial Access Digital Input Real-Time Clock with Alarms Serial Access Digital Input Real-Time Clock with Alarms PRELIMINARY DATA FEATURES SUMMARY TIMEKEEPING DOWN TO 1.3V 1.7V TO 3.6V I 2 C BUS OPERATING VOLTAGE OPERATES FROM 50Hz OR 60Hz DIGITAL CLOCK SIGNAL

More information

M41T81S. Serial Access Real-Time Clock with Alarms

M41T81S. Serial Access Real-Time Clock with Alarms Serial Access Real-Time Clock with Alarms FEATURES SUMMARY COUNTERS FOR TENTHS/HUNDREDTHS OF SECONDS, SECONDS, MINUTES, HOURS, DAY, DATE, MONTH, YEAR, AND CENTURY 32KHz CRYSTAL OSCILLATOR WITH INTEGRATED

More information

M41T81. Serial Access Real-Time Clock with Alarms

M41T81. Serial Access Real-Time Clock with Alarms Serial Access Real-Time Clock with Alarms FEATURES SUMMARY 2.0 TO 5.5V CLOCK OPERATING VOLTAGE COUNTERS FOR TENTHS/HUNDREDTHS OF SECONDS, SECONDS, MINUTES, HOURS, DAY, DATE, MONTH, YEAR, AND CENTURY AUTOMATIC

More information

Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL

Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL K.R.N.Karthik #1, M.Nagesh Babu #2, Fazalnoorbasha #3 #1 Student of VLSI Systems Research Group, Department of Electronics and Communication

More information

Using the Alarm Feature on the MCP79410 RTCC to Implement a Delayed Alarm E SCK. C2 = 0.1 µf RA4/T0 CKI RC3/SCK1/SCL1 2K VDD

Using the Alarm Feature on the MCP79410 RTCC to Implement a Delayed Alarm E SCK. C2 = 0.1 µf RA4/T0 CKI RC3/SCK1/SCL1 2K VDD Using the Alarm Feature on the MCP79410 RTCC to Implement a Delayed Alarm Author: INTRODUCTION Alexandru Valeanu Microchip Technology Inc. An increasing number of applications that involve time measurement

More information

BOILED WATER TEMPERATURE MEASUREMENT SYSTEM USING PIC MICROCONTROLLER

BOILED WATER TEMPERATURE MEASUREMENT SYSTEM USING PIC MICROCONTROLLER BOILED WATER TEMPERATURE MEASUREMENT SYSTEM USING PIC MICROCONTROLLER A T. Karuppiah 1, Azha. Periasamy 2, P. Rajkumar 3 M.Phil Scholar, Dept. of Electronics and Instrumentation, Bharathiar University,

More information

The design of the human body infrared thermometer

The design of the human body infrared thermometer The design of the human body infrared thermometer Chenjie Zhang Changchun University of Science and Technology, Changchun 130022, China Abstract In order to overcome the main shortcoming of the traditional

More information

Bacnet Room Setpoint & Temp Display. Descriptions. Specifications

Bacnet Room Setpoint & Temp Display. Descriptions. Specifications Descriptions Bacnet Room Setpoint & Temp Display is designed for environment monitoring and controlling in industrial, commercial and other buildings. These transmitters can be used to monitor air temperature

More information

Automotive Sensor Signal Conditioners Overview

Automotive Sensor Signal Conditioners Overview Automotive Sensor Signal Conditioners Overview Sensing Solutions Overview IDT is a trusted partner in the sensing market with more than twenty years of experience developing leading-edge core technologies

More information

MS4525DO SPECIFICATIONS FEATURES APPLICATIONS

MS4525DO SPECIFICATIONS FEATURES APPLICATIONS FEATURES PSI Pressure Ranges PCB Mountable Digital Output Barbed Pressure Ports APPLICATIONS Blocked Filter Detection Altitude and Airspeed Measurements Medical Instruments Fire Suppression System Panel

More information

S3F8S28. Smoke Detector. Revision 0.00 February Samsung Electronics Co., Ltd. All rights reserved.

S3F8S28. Smoke Detector. Revision 0.00 February Samsung Electronics Co., Ltd. All rights reserved. S3F8S28 Smoke Detector Revision 0.00 February 2011 Application Note 2011 Samsung Electronics Co., Ltd. All rights reserved. Important Notice The information in this publication has been carefully checked

More information

Meridian wiredhart. HART Field Device Specification Goldmine Rd. Monroe, NC USA

Meridian wiredhart. HART Field Device Specification Goldmine Rd. Monroe, NC USA HART Field Device Specification Meridian wiredhart 4320 Goldmine Rd. Monroe, NC 28110 USA HART is a registered trademark of the HART Communication Foundation TABLE OF CONTENTS 1. Introduction...5 1.1 Scope...5

More information

Issue C. Installation Instructions for the Basic Amplified Board Mount Pressure Sensors, ABP Series

Issue C. Installation Instructions for the Basic Amplified Board Mount Pressure Sensors, ABP Series Installation Instructions for the Basic Amplified Board Mount Pressure GENERAL SPECIFICATIONS The ABP Series are piezoresistive silicon pressure sensors offering a ratiometric analog or digital output

More information

DISCONTINUED PRODUCT. For reference only SMOKE DETECTOR WITH INTERCONNECT FEATURES. ABSOLUTE MAXIMUM RATINGS (Voltages are referenced to V SS

DISCONTINUED PRODUCT. For reference only SMOKE DETECTOR WITH INTERCONNECT FEATURES. ABSOLUTE MAXIMUM RATINGS (Voltages are referenced to V SS WITH INTERCONNECT Data Sheet 60.6 NO CONNECT. I / O LOW-V SET NO CONNECT. LED + SUPPLY TIMING RES. FEEDBACK 3 4 5 6 7 NC NC LOGIC OSC. & TIMING DRIVER 0 6 5 4 3 8 V SS GUARD DETECT. IN GUARD SENSITIVITY

More information

TTSIM-1 Sensor Interface Module

TTSIM-1 Sensor Interface Module R Sensor Interface Module Installation/Operation Guide General Information Please read these instructions and keep them in a safe place. These instructions must be followed carefully to ensure proper operation.

More information

AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER

AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER S.M.Ghayas Hasan 1, Fazil Alam 2, Amrish Dubey 3 1, 2 Students, Electrical Engineering Department Greater Noida Institutes of Technology, Gr.Noida,

More information

Android Controlled Fire Fighting Robot

Android Controlled Fire Fighting Robot IJSTE - International Journal of Science Technology & Engineering Volume 3 Issue 09 March 2017 ISSN (online): 2349-784X Android Controlled Fire Fighting Robot S. Sakthi Priyanka R. Sangeetha Department

More information

Temperature Controllers

Temperature Controllers Model TEC-4100 1/4 DIN Model TEC-4100 1/4 DIN Temperature Controller Ordering Code: Power Input BOX 1 4 = 90-250 VAC 5 = 11-26 VAC / VDC TEC-4100- Configurable for 4 Programmable Outputs and NEMA 4X/IP65

More information

LCP-6144A4EDRx. 10GBASE-SR SFP+ Optical Transceiver FEATURES. Description. Applications. RoHS compliant. Compliant to SFP+ Electrical MSA SFF-8431

LCP-6144A4EDRx. 10GBASE-SR SFP+ Optical Transceiver FEATURES. Description. Applications. RoHS compliant. Compliant to SFP+ Electrical MSA SFF-8431 10GBASE-SR SFP+ Optical Transceiver FEATURES RoHS compliant Compliant to SFP+ Electrical MSA SFF-8431 Compliant with SFF-8472 MSA Compliant with CPRI protocols for wireless base station Standard LC duplex

More information

I/A Series 716C 1/16 DIN Temperature Controller

I/A Series 716C 1/16 DIN Temperature Controller Product Specifications I/A Series 716C 1/16 DIN Temperature Controller PSS 2C-1B5 A The Foxboro 716C is a powerful compact, 1/16 DIN, microprocessor-based temperature controller that offers a variety of

More information

Web Site: Forums: forums.parallax.com Sales: Technical:

Web Site:   Forums: forums.parallax.com Sales: Technical: Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Datasheet: K-22 LO Sensor

Datasheet: K-22 LO Sensor Datasheet: K-22 LO Sensor The K- 22 LO is a CO2 sensor module designed to be built- in into stationary ventilation equipment, such as window vent or duct exhaust actuators, serving as a linear transmitter

More information

Microcontroller based design for Tele-sensing and extinguishing fire

Microcontroller based design for Tele-sensing and extinguishing fire Microcontroller based design for Tele-sensing and extinguishing fire Hany abdelhady Almedhegi 1, Ameen babekr abdelnaby 2, Abdelrasoul Jabar Alzubaidi 3 1 Sudan Academy of Sciences (SAS); Council of Engineering

More information

ENACTMENT OF SCADA SYSTEM FOR JUDICIOUS DWELLING

ENACTMENT OF SCADA SYSTEM FOR JUDICIOUS DWELLING Int. J. Engg. Res. & Sci. & Tech. 2014 Mohammed Tabrez Ud Doula and G Kalaimagal, 2014 Research Paper ISSN 2319-5991 www.ijerst.com Vol. 3, No. 2, May 2014 2014 IJERST. All Rights Reserved ENACTMENT OF

More information

T Mirror Cooling Specifications & Design Revision: -

T Mirror Cooling Specifications & Design Revision: - . REV - DESCRIPTION Initial Release DATE 8/28/09 BY EAW T3-3151 Mirror Cooling Specifications & Design Revision: - FILENAME: T3-3151_Mirror Cooling Spec & Design.doc LAST SAVE: 12/14/2009 11:17 AM Page

More information

KIT 53. CODEPAD/ALARM USING 68HC705P9

KIT 53. CODEPAD/ALARM USING 68HC705P9 This project started out to use the K1 micro-controller (as used in some of our other Kits) for a codepad - entering a four digit code would operate a relay. The most common use of such a codepad is to

More information

Web Site: Forums: forums.parallax.com Sales: Technical:

Web Site:  Forums: forums.parallax.com Sales: Technical: Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Zilog s ZMOTION Detection and Control Family. Featuring PIR Technology

Zilog s ZMOTION Detection and Control Family. Featuring PIR Technology S MOTION CONTROL AND LIGHTING SOLUTIONS Zilog s ZMOTION Detection and Control Family PB022504-0112 ZMOTION DETECTION & CONTROL FAMILY ADVANTAGES MCU, PIR SENSOR, AND LENS SOLUTION MOTION DETECTION ALGORITHMS

More information

DS1486/DS1486P RAMified Watchdog Timekeepers

DS1486/DS1486P RAMified Watchdog Timekeepers RAMified Watchdog Timekeepers www.maxim-ic.com FEATURES 128 kbytes of User NV RAM Integrated NV SRAM, Real-Time Clock, Crystal, Power-Fail Control Circuit and Lithium Energy Source Totally Nonvolatile

More information

Smoke Check Service Manual

Smoke Check Service Manual Contents page ON OFF smoke Safety Precaution 2 Important safeguards 2 Looking after your Smoke Check 2 Introduction 2 Before you begin 2 Smoke Check system overview 3 CO sensor 5 Smoke Check exploded view

More information

Team Rescue X: Autonomous Firefighting Robot

Team Rescue X: Autonomous Firefighting Robot Team Rescue X: Autonomous Firefighting Robot Team Members Project Manager: Shervin Haghgouy Parts Manager: Shervin Nikravesh Website Designer: Vincent Thomas Repository Manager: Alexander Camp Report Editor:

More information

Break-in Detector and Alarm System

Break-in Detector and Alarm System EE 318, Electronic Design Lab report, EE Dept, March 2007 Break-in Detector and Alarm System Group No. : B3 Abhijit Gupta(04007004) Chirag Singla(04007005)

More information

Modbus TCP/IP Option Instruction Manual

Modbus TCP/IP Option Instruction Manual W A L C H E M An Iwaki America Company WebMaster Modbus TCP/IP Option Web Master WIND Modbus TCP/IP Option Instruction Manual s825v008 and higher Five Boynton Road Hopping Brook Park Holliston, MA 01746

More information

Replaced by A5367CA. DISCONTINUED PRODUCT SMOKE DETECTOR WITH INTERCONNECT AND TIMER FEATURES

Replaced by A5367CA. DISCONTINUED PRODUCT SMOKE DETECTOR WITH INTERCONNECT AND TIMER FEATURES Data Sheet 260.8 TIMER START I / O LOW-V SET TIMER OUT + SUPPLY TIMING RES. FEEDBACK 2 3 4 5 6 7 V DD LOGIC OSC. & TIMING DRIVER 8 V SS 9 ABSOLUTE MAXIMUM RATINGS (Voltages are referenced to V SS ) Supply

More information

Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module

Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module Clavex Plus Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module PC Software Controller with Graphic Display Printer Module Features

More information

Advanced Hardware and Software Technologies for Ultra-long FFT s

Advanced Hardware and Software Technologies for Ultra-long FFT s Advanced Hardware and Software Technologies for Ultra-long FFT s Hahn Kim, Jeremy Kepner, M. Michael Vai, Crystal Kahn HPEC 2005 21 September 2005 HPEC 2005-1 This work is sponsored by the Department of

More information

Intelligent monitoring system for automobiles

Intelligent monitoring system for automobiles RESEARCH ARTICLE OPEN ACCESS Intelligent monitoring system for automobiles M.PADMA LALITHA 1, M.MUNI KUMAR 2, K.NAGENDRA BABU 3, K.RAVI TEJA 4 Dept. of Electrical and Electronics Engineering, Annamacharya

More information

Series Digital Controller Instruction Sheet

Series Digital Controller Instruction Sheet 216/3/11 Series Digital Controller Instruction Sheet Thank you very much for purchasing DELTA DTC Series Temperature Controller. Please read this instruction sheet before using your DTC series to ensure

More information

LCP-10G3B4QDRx-G. 10GBASE-LR SFP+ Optical Transceiver FEATURES. Description. Applications. Performance. RoHS compliant

LCP-10G3B4QDRx-G. 10GBASE-LR SFP+ Optical Transceiver FEATURES. Description. Applications. Performance. RoHS compliant 10GBASE-LR SFP+ Optical Transceiver FEATURES RoHS compliant Compliant to SFP+ Electrical MSA SFF-8431 Compliant with SFF-8472 MSA Standard LC duplex fiber-optic connector I 2 C for integrated Digital Optical

More information

SSC Series Standard Accuracy Plastic Silicon Pressure Sensors ±2 % Total Error Band, Digital Output, SMT and DIP, 1 psi to 150 psi

SSC Series Standard Accuracy Plastic Silicon Pressure Sensors ±2 % Total Error Band, Digital Output, SMT and DIP, 1 psi to 150 psi SSC Series Standard Accuracy Plastic Silicon Pressure Sensors ±2 % Total Error Band, Digital Output, SMT and DIP, 1 psi to 150 psi DESCRIPTION The Standard Accuracy Silicon Ceramic (SSC) Series is a piezoresistive

More information

OPERATING MANUAL. EchoTherm PROGRAMMABLE DIGITAL CHILLING INCUBATOR MODELS IN35, IN45 and IN55-12VDC. DOCUMENT NUMBER IN35-03 Revised 15 May 2015

OPERATING MANUAL. EchoTherm PROGRAMMABLE DIGITAL CHILLING INCUBATOR MODELS IN35, IN45 and IN55-12VDC. DOCUMENT NUMBER IN35-03 Revised 15 May 2015 OPERATING MANUAL EchoTherm PROGRAMMABLE DIGITAL CHILLING INCUBATOR MODELS IN35, IN45 and IN55-12VDC DOCUMENT NUMBER IN35-03 Revised 15 May 2015 TORREY PINES SCIENTIFIC, INC. 2713 Loker Ave. West Carlsbad,

More information

Oxygen & Carbon Dioxide Analyser

Oxygen & Carbon Dioxide Analyser Oxygen & Carbon Dioxide Analyser Model 1637-Mk II TABLE OF CONTENTS 1. Overview & Specifications... 3 1.1 Hardware Specifications... 4 1.2 Product & Logging Specifications... 5 1.3 Heater Supply for the

More information

89BSD Digital Output

89BSD Digital Output SPECIFICATIONS Stainless Steel with O-Ring Seal Pressure/Temperature Read-Out (24-bit DS ADC) ASIC Calibrated Absolute, Sealed Gage 9mm Diameter The 89BSD is a 9mm diameter small profile, media compatible,

More information

AN10943 Decoding DTMF tones using M3 DSP library FFT function

AN10943 Decoding DTMF tones using M3 DSP library FFT function Rev. 1 17 June 2010 Application note Document information Info Content Keywords M3, LPC1300, LPC1700, DSP, DFT, FFT, DTMF Abstract This application note and associated source code example demonstrates

More information

MEAS PICTAIL PLUS FOR MICROCHIP EXPLORER 16

MEAS PICTAIL PLUS FOR MICROCHIP EXPLORER 16 FOR MICROCHIP EXPLORER 16 SENSOR SOLUTIONS /// MEAS PICTAIL PLUS 08/2016 Page 1 Microchip Explorer 16 Board Setup PIM used for the sample code is PIC24FJ128GA010. SENSOR SOLUTIONS /// MEAS PICTAIL PLUS

More information

OPERATING MANUAL MOLECULAR DIMENSIONS, INC. PROGRAMMABLE DIGITAL CHILLING INCUBATOR MODELS MD5-601 AND MD5-603

OPERATING MANUAL MOLECULAR DIMENSIONS, INC. PROGRAMMABLE DIGITAL CHILLING INCUBATOR MODELS MD5-601 AND MD5-603 OPERATING MANUAL MOLECULAR DIMENSIONS, INC. PROGRAMMABLE DIGITAL CHILLING INCUBATOR MODELS MD5-601 AND MD5-603 DOCUMENT NUMBER DM5-601/603-1 January 21, 2011 MOLECULAR DIMENSIONS, INC. United Kingdom Office

More information

Automatic Customer Counter and Payment Tool for Shopping Centers and commercial spaces

Automatic Customer Counter and Payment Tool for Shopping Centers and commercial spaces Automatic Customer Counter and Payment Tool for Shopping Centers and commercial spaces Said Ghalleb 1 1Embedded Systems Student, Electrical Engineering Dept., Higher Institute of Technological Studies

More information

SERVICE & SETUP MANUAL WATER HEATER ELECTRONIC CONTROLLER

SERVICE & SETUP MANUAL WATER HEATER ELECTRONIC CONTROLLER SERVICE & SETUP MANUAL WATER HEATER ELECTRONIC CONTROLLER PVI INDUSTRIES, LLC - Fort Worth, Texas 76111 - Web www.pvi.com - Phone 1-800-433-5654 Page 1/ 24 PV500-41 03/17 INDEX 1. TECHNICAL DATA 3 2. WIRING

More information

Honeywell Zephyr Digital Airflow Sensors: HAF Series High Accuracy ±50 SCCM to ±750 SCCM

Honeywell Zephyr Digital Airflow Sensors: HAF Series High Accuracy ±50 SCCM to ±750 SCCM Short Port Fastener Mount Honeywell Zephyr Digital Airflow Sensors: ±50 SCCM to ±750 SCCM Long Port Fastener Mount Short Port Snap Mount DESCRIPTION Honeywell Zephyr HAF Series sensors provide a digital

More information

OVEN INDUSTRIES, INC.

OVEN INDUSTRIES, INC. OVEN INDUSTRIES, INC. OPERATING MANUAL Model 5C7-252 TEMPERATURE CONTROLLER With PLC Inputs Introduction Thank you for purchasing our controller. The Model 5C7-252 is an exceptionally versatile unit and

More information

Environmental Sensor Outdoor Humidity Soil

Environmental Sensor Outdoor Humidity Soil ESO-H 200 Environmental Sensor Outdoor Humidity Soil ESO-H 200 from EnOcean enables measurements of the soil humidity. It is designed for use with the EMOS 200LH Transceiver Module. ESO-H implements dedicated

More information

C-Bus Four Channel Analogue Output Unit Installation Instructions

C-Bus Four Channel Analogue Output Unit Installation Instructions C-Bus Four Channel Analogue Output Unit Installation Instructions 5504AMP Series REGISTERED PATENT Table of Contents Section... Page 1.0 Product Range...3 2.0 Description...3 3.0 Capabilities...3 4.0 Wiring

More information

RS485 MODBUS Module 8AI

RS485 MODBUS Module 8AI Version 1.4 15/04/2013 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the device. The information contained in this manual have

More information

FPS CL Burst Mode SFF BIDI EPON ONU TRANSCEIVER(20Km)

FPS CL Burst Mode SFF BIDI EPON ONU TRANSCEIVER(20Km) FEATURES Dual Wavelength Bi-Directional Tx/Rx 1.25Gbps/1310nm Burst Mode Transmitter 1.25Gbps/1490nm CW Mode Receiver IEEE 802.3ah Compliant Single 3.3 Voltage Supply 2X10 SFF Package Outline Single Fiber

More information

Thermostat Reference Design Using the MC9S08LL16. Devices Supported: MC9S08LL16

Thermostat Reference Design Using the MC9S08LL16. Devices Supported: MC9S08LL16 Thermostat Reference Design Using the MC9S08LL16 Devices Supported: MC9S08LL16 Document Number: DRM106 Rev. 1 07/2009 How to Reach Us: Home Page: www.freescale.com Web Support: http://www.freescale.com/support

More information

CELLTROL II BIOREACTOR CONTROL SYSTEM OPERATIONS MANUAL

CELLTROL II BIOREACTOR CONTROL SYSTEM OPERATIONS MANUAL Operation Manual Celltrol II Bioreactor Control System Page 1 of 33 Table of Contents 1) Introduction... 3 1.1) Scope of Document... 3 1.2) Control System Overview... 3 1.3) Introduction to Celltrol II...

More information

E PIR Motion Detector. Features. General Description. Applications. Single Sensor Application Circuit

E PIR Motion Detector. Features. General Description. Applications. Single Sensor Application Circuit E9.92 PIR Motion Detector Features Fully integrated PIR motion detector Digital signal processing On chip supply regulator with wide operating voltage range Low power consumption Temperature compensation

More information

SAFETY PRE-ALARM MONITOR SYSTEM BASED ON GSM AND ARM

SAFETY PRE-ALARM MONITOR SYSTEM BASED ON GSM AND ARM Int. J. Elec&Electr.Eng&Telecoms. 2015 J M Bhagyalakshmi, 2015 Research Paper ISSN 2319 2518 www.ijeetc.com Vol. 4, No. 1, January 2015 2015 IJEETC. All Rights Reserved SAFETY PRE-ALARM MONITOR SYSTEM

More information

ICS Regent. Fire Detector Input Modules PD-6032 (T3419)

ICS Regent. Fire Detector Input Modules PD-6032 (T3419) ICS Regent Fire Detector Input Modules (T3419) Issue 1, March, 06 Fire detector input modules provide interfaces for 16 fire detector inputs such as smoke detectors, flame detectors, temperature detectors,

More information

DS1286 Watchdog Timekeeper

DS1286 Watchdog Timekeeper www.dalsemi.com FEATURES Keeps track of hundredths of seconds, seconds, minutes, hours, days, date of the month, months, and years; valid leap year compensation up to 2100 Watchdog timer restarts an out-of-control

More information

Smart Personal Security Alert Walking Stick For Visually Challenged People

Smart Personal Security Alert Walking Stick For Visually Challenged People Smart Personal Security Alert Walking Stick For Visually Challenged People Punitha.V Revathi.S Sathiya Priya.B.M Department of Information Technology, Adhiyamaan College of Engineering, Hosur, Tamilnadu,

More information

56W Vapor Proof LED Fixture V Dimmable - DALI Network lms - IP67 - Outdoor Applications

56W Vapor Proof LED Fixture V Dimmable - DALI Network lms - IP67 - Outdoor Applications 56W Vapor Proof LED Fixture - 0-10V Dimmable - DALI Network - 7000 lms - IP67 - Outdoor Applications Part #: GVP-ADC-48-2L-LED-D-V2 Page: 1 The Larson Electronics GVP-ADC-48-2L-LED-D-V2 Dimmable LED Light

More information

Compod. Instruction Manual IM-COMPOD Revision: C.1, November 2010

Compod. Instruction Manual IM-COMPOD Revision: C.1, November 2010 Compod Programmable Control Module For 100 Series Digital Mass Flow Meters & Controllers Instruction Manual IM-COMPOD Revision: C.1, November 2010 CORPORATE HEADQUARTERS 5 Harris Court, Building L, Monterey,

More information

PACSystems* RX3i. Thermocouple Input Module, 12 Channels, IC695ALG412. GFK-2578B October 2011

PACSystems* RX3i. Thermocouple Input Module, 12 Channels, IC695ALG412. GFK-2578B October 2011 October 2011 PACSystems* RX3i Thermocouple Input Module, 12 Channels, IC695ALG412 The PACSystems * Thermocouple Input module IC695ALG412 provides twelve isolated differential thermocouple input channels.

More information

Virtual Boundary System Using Passive Infrared Sensor

Virtual Boundary System Using Passive Infrared Sensor International Journal of Education and Science Research Review E-ISSN 2348-6457 Volume-3, Issue-2 April- 2016 Virtual Boundary System Using Passive Infrared Sensor Saptarshi Gupta Assistant Professor SRM

More information

PORTABLE ISOTOPE IDENTIFIER Search Tool / Sample Counting System

PORTABLE ISOTOPE IDENTIFIER Search Tool / Sample Counting System FEATURES: HIGH GAMMA SENSITIVITY MULTI-CHANNEL ANALYZER (MCA) WORKS WITH VARIETY OF PROBES RADIONUCLIDE LIBRARY TAILORED TO CUSTOMER REQUEST SIMULTANEOUSLY MEASURES ; DISPLAYS; ALARMS 1-3 SEPARATE DETECTORS

More information

Homework 5: Theory of Operation and Hardware Design Narrative

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: DijiJock Home Security Group No. 7 Team Member Completing This Homework:

More information

Natural Ventilation Controller with 24vDC drive NVC-1204

Natural Ventilation Controller with 24vDC drive NVC-1204 Natural Ventilation Controller with 24vDC drive NVC-1204 BACnet Enabled C-036 08/11 FEATURES > 24V DC supply > Native BACnet communications > Master/Slave grouping (shared information) > 3 x 0-10V outputs

More information

PROCESS & TEMPERATURE UNIVERSAL INPUT DIGITAL METERS

PROCESS & TEMPERATURE UNIVERSAL INPUT DIGITAL METERS PROCESS & TEMPERATURE UNIVERSAL INPUT DIGITAL METERS NOVA PD56 Series Thermocouple, RTD, & Process Inputs Universal Power Supply 1-24 VAC Up to 3 Alarm Relays Retransmitting 4-2 ma Output Input Max/Min

More information

CRUSH: Cognitive Radio Universal Software Hardware

CRUSH: Cognitive Radio Universal Software Hardware CRUSH: Cognitive Radio Universal Software Hardware George F. Eichinger III MIT Lincoln Laboratory Lexington MA Kaushik Chowdhury, Miriam Leeser University Boston, MA USA 1 This work is sponsored by the

More information

LCP-10G3B4HDR(T)-G. 10GBASE-LR Lite SFP+ Optical Transceiver. Description. Applications. Performance FEATURES. RoHS compliance

LCP-10G3B4HDR(T)-G. 10GBASE-LR Lite SFP+ Optical Transceiver. Description. Applications. Performance FEATURES. RoHS compliance 10GBASE-LR Lite SFP+ Optical Transceiver FEATURES RoHS compliance Compliant with SFP transceiver SFF-8472 MSA specification 1310nm FP laser Built-in digital diagnostic monitoring function Compliant with

More information

Technical Specification. For. Arla Tankvagt

Technical Specification. For. Arla Tankvagt Technical Specification For Arla Tankvagt Tankvagt - technical specifications ver. 4.2 CONTENT 1 DOCUMENT CONTROL...2 1.1 Revision History...2 1.2 Reviewers...2 1.3 Related Documents...2 2 INTRODUCTION...3

More information

Total Solution Sirius Cooling Control Unit (CCU) Sirius CONFIGURATION TOOL. (Windows -based configuration application.)

Total Solution Sirius Cooling Control Unit (CCU) Sirius CONFIGURATION TOOL. (Windows -based configuration application.) Sirius CONFIGURATION TOOL (Windows -based configuration application.) All units are at the time of shipment to customer configured ready for operation to a user specific hardware and firmware setup as

More information

An Ambient-Light-Ignoring Infrared Active Motion Detector

An Ambient-Light-Ignoring Infrared Active Motion Detector An Ambient-Light-Ignoring Infrared Active Motion Detector Design Team Members: Namita Ahuja Robert Mitchell Karl Schrader Michael Perry Joe Ha Table of Contents: Project Objectives Background Information

More information

Process & TeMPerATUre UniversAl input DigiTAl MeTers

Process & TeMPerATUre UniversAl input DigiTAl MeTers Process & TeMPerATUre UniversAl input DigiTAl MeTers nova PD56 series Thermocouple, rtd, & Process inputs Universal Power supply 1-24 va c Up to 3 Alarm relays retransmitting 4-2 ma output input Max/Min

More information

Break-in Detection and Alarm System

Break-in Detection and Alarm System EE318 Electronic Design Lab-I, Project Report, EE Dept., IIT Bombay, March 2007 Break-in Detection and Alarm System Group no: B6 Rohan Joshi (04007022) Sudhanshu Tungare (04007021)

More information

DS1486/DS1486P RAMified Watchdog Timekeeper

DS1486/DS1486P RAMified Watchdog Timekeeper RAMified Watchdog Timekeeper www.dalsemi.com FEATURES 128 kbytes of user NV RAM Integrated NV SRAM, real time clock, crystal, power-fail control circuit and lithium energy source Totally nonvolatile with

More information

ArchestrA Direct Connect

ArchestrA Direct Connect Table of Contents ArchestrA Direct Connect... 1 Introduction... 1 ArchestrA Direct Connection... 1 ArchestrA Data Source Definition... 2 Data Source Definition... 2 Importing Alarms from ArchestrA... 6

More information

ALFRED MAZHINDU KWIRIRAYI NHUBU SIMBARASHE CHIWESHE

ALFRED MAZHINDU KWIRIRAYI NHUBU SIMBARASHE CHIWESHE SENSORS AND ACTUATORS_PAPER DESIGN COURSEWORK ALFRED MAZHINDU KWIRIRAYI NHUBU SIMBARASHE CHIWESHE Supervised by Dr P Jiang Burglar Alarm Project Report K.NHUBU, A.MAZHINDU & S.CHIWESHE TABLE OF CONTENTS

More information

Rosemount 3490 Series

Rosemount 3490 Series Product Data Sheet July 2014 00813-0100-4841, Rev DA Rosemount 3490 Series 4 20 ma + HART Compatible Controller Field mounted controller with integral multi-function LCD and keypad Tough weatherproof wall

More information

Natural Ventilation Controller with 24vDC drive NVC-1204

Natural Ventilation Controller with 24vDC drive NVC-1204 Natural Ventilation Controller with 24vDC drive NVC-1204 BACnet Enabled C-038 08/16 FEATURES SPECIFICATION > 24V DC supply > Native BACnet communications > Master/Slave grouping (shared information) >

More information

FlameGard 5 UV/IR HART

FlameGard 5 UV/IR HART FlameGard 5 UV/IR HART HART Communication Manual The information and technical data disclosed in this document may be used and disseminated only for the purposes and to the extent specifically authorized

More information

Analog Input Module IC670ALG630

Analog Input Module IC670ALG630 1 IC670ALG630 The Thermocouple (IC670ALG630) accepts 8 independent thermocouple or millivolt inputs. Module features include: Self calibration Two data acquisition rates based on 50 Hz and 60 Hz line frequencies

More information

Automatic control and protection of Coal Conveyor System using PIC

Automatic control and protection of Coal Conveyor System using PIC Open Access Annals of Civil and Environmental Engineering Research Article ISSN 2574-0350 Automatic control and protection of Coal Conveyor System using PIC Mumtaj S 1, Dhamodharan K 2 *, Hari Prasad K

More information

ARCHITECTURAL DOOR HARDWARE KEY PADS & CARD READERS CATALOG

ARCHITECTURAL DOOR HARDWARE KEY PADS & CARD READERS CATALOG ARCHITECTURAL DOOR HARDWARE KEY PADS & CARD READERS CATALOG January 1, 2017 v3 West Coast Office (800) 544-4422 East Coast Office (800) 225-6737 intldoorclosers.com Index KEY PADS & CARD READERS Heavy

More information

Recalibrate the way you look at gas detection

Recalibrate the way you look at gas detection Catalogue Gas detection solution Recalibrate the way you look at gas detection Next generation gas detection for industrial refrigeration The next generation of Danfoss gas detectors are based on a digital

More information

Connections, displays and operating elements C D E G H. Installing the control unit

Connections, displays and operating elements C D E G H. Installing the control unit 1 2 3 GB Control unit 0-10 V REG-K/3-gang with manual mode Operating instructions Art. no. MTN646991 ¼ DANGER Risk of fatal injury from electrical current. All work on the device should only be carried

More information

User Guide OI/FEX100HART EN Rev. A. WaterMaster FEX100 HART Field Device Specification

User Guide OI/FEX100HART EN Rev. A. WaterMaster FEX100 HART Field Device Specification User Guide OI/FEX100HART EN Rev. A WaterMaster FEX100 The Company We are an established world force in the design and manufacture of measurement products for industrial process control, flow measurement,

More information

Compod. Instruction Manual IM-COMPOD Revision: F, December 2015

Compod. Instruction Manual IM-COMPOD Revision: F, December 2015 Compod Programmable Control Module For 100 Series Digital Mass Flow Meters & Controllers Instruction Manual IM-COMPOD Revision: F, December 2015 CORPORATE HEADQUARTERS 5 Harris Court, Building L, Monterey,

More information

Temperature + Humidity (%RH) Control & Recording System with 8 / 16 Channel Mapping. Touch Panel PPI

Temperature + Humidity (%RH) Control & Recording System with 8 / 16 Channel Mapping. Touch Panel PPI HumiTherm Ultra Temperature + Humidity (%RH) Control & Recording System with 8 / 16 Channel Mapping Mapping Unit Micro PLC Control Unit Touch Panel Touch Operation Panel PPI HumiTherm Ultra GSM Module

More information

Sensors in Ventilators

Sensors in Ventilators Safety and Productivity Solutions Sensors in Ventilators An Application Note Background A medical ventilator is designed to move a mixture of air and oxygen into and out of the patient s lungs to either

More information

A Cost Effective Embedded Design for Security and Automation in Industries

A Cost Effective Embedded Design for Security and Automation in Industries A Cost Effective Embedded Design for Security and Automation in Industries Sandeep Kumar Yerlanki Visakha Institute of Engineering and Technology Dept. of ECE Visakhapatnam, India - 530027 Praveen L. V.

More information

Advanced Test Equipment Rentals ATEC (2832)

Advanced Test Equipment Rentals ATEC (2832) Established 1981 Advanced Test Equipment Rentals www.atecorp.com 800-404-ATEC (2832) FEATURES AND SPECIFICATIONS MOLYTEK 2702 AND 3702 RECORDERS 2702 3702 REV: 03302004 Standard Specifications for Model

More information

EU-Type Examination Certificate

EU-Type Examination Certificate EU-Type Examination Certificate Measuring Instrument Directive Certificate number: 0200-MID-02784 Issued by FORCE Certification A/S, Denmark EU-notified body number 0200 In accordance with the Directive

More information

USER MANUAL FOR OPERATING SYSTEM

USER MANUAL FOR OPERATING SYSTEM P2262 ALARM PANEL USER MANUAL FOR OPERATING SYSTEM 21765-07 September 1999 Associated Controls (Aust) PTY. LTD. 29 Smith Street, Hillsdale, NSW, 2036. PH (02) 9311 3255, FAX (02) 9311 3779 Page 1 of 177

More information

Option M16.x Configurable I/O extension cards, four multi-inputs (4-20 ma/0-5 V/Pt100) Description of option Functional description

Option M16.x Configurable I/O extension cards, four multi-inputs (4-20 ma/0-5 V/Pt100) Description of option Functional description MULTI-LINE 2 DESCRIPTION OF OPTION Option M16.x Configurable I/O extension cards, four multi-inputs (4-20 ma/0-5 V/Pt100) Description of option DEIF A/S Frisenborgvej 33 DK-7800 Skive Tel.: +45 9614 9614

More information

TSYS02S Digital Temperature Sensor

TSYS02S Digital Temperature Sensor SPECIFICATIONS High Accuracy Temperature Sensor 16 bit Resolution High Speed, low Response Time Low Power Consumption SDM Output representing Analogue Voltage Small TDFN8 Package The TSYS02S is a single

More information

Oxygen & Carbon Dioxide Analyser

Oxygen & Carbon Dioxide Analyser Oxygen & Carbon Dioxide Analyser Model 1637-Mk II Operators Manual December 2013 TABLE OF CONTENTS 1. Overview & Specifications... 3 1.1 Hardware Specifications... 4 1.2 Product & Logging Specifications...

More information