Smoke/Temperature Controlled Fan

Size: px
Start display at page:

Download "Smoke/Temperature Controlled Fan"

Transcription

1 Smoke/Temperature Controlled Fan 16 October 2006 Application Note DKAN0006A Features Interface smoke detector with ATTiny12 Interface temperature sensor with ATTiny12 A way to drive AC fans using ATTiny12 Introduction The STK500 and AVR Studio was used to initially create the code and run the simulations. This project uses a single set-point temperature sensor and a photodiode/amplifier IC for inputs into the ATTiny12. The ATTiny12 will output high levels to drive one or two solid state relays to turn on the AC fans. The initial use was for an outside wood boiler and attached shed. Based on the size of the shed, the larger AC fans were chosen based on the amount of air that could be moved. Application This application uses a LED and photodiode/amplifier pair as a smoke detector. As long as there is light on the photodiode, the IC will output a high to the ATTiny12. As with any LED/photodiode pair, if something blocks the light, the output will change to a low. When this happens, the ATTiny12 will sense the change on that input pin and then change the output pin to the relays, turning on the AC fans. The temperature sensor has a similar set-up in that when the temperature set point is reached, a high is output to the ATTiny12, which turns on the fans in the same way. There is also an override switch that will bypass the output of the smoke detector and turn the system on. An output from the ATTiny12 will light up a LED to show that the fans are turned on. The temperature sensor in this instance has a 2C hysteresis. It would be an easy alteration to use a dual temperature set point sensor in place of the single set-point. The ATTiny12 will go to Idle mode unless there has been a change on an input at which point it double checks things to make sure that it was not a spurious change. Hardware Overview: Based on the size of the code and the simplicity of the application, the program was written in assembly rather than C. The Atmel STK500 development board was used for the programming and the initial testing of the code. The ATTiny12 was in SCKT3400D1 (blue) on the STK500 with the ISP6PIN to SPROG1 (blue) in place. To run the program on the STK500, be sure to have wires connecting PB0 and PB2 to LEDS on the board. Also be sure to have PB1 and PB4 connected to switches to simulate the smoke detector and the temperature sensor. PB3 can also be attached to a LED on the board as an option. One thing to remember about the STK500 and the LEDS is that a low will turn them on as opposed to a high. So, when the program is run, the LEDS that are connected to PB0 and PB2 will be on. When the Page 1 of 7

2 switches are pressed, the LEDS will turn off until the switch is released. There will be about a one second delay between release of the switch and the turn on of the LED due to a delay loop within the code. To ensure that LED2 is shining on the smoke detector, a right angle socket was mounted for that IC. Standard sockets were used for the remaining ICs. A LM317 was used for the regulator based on ease of adjustment and what was available. The temperature sensor was chosen based on having a high or low output rather than a serial output. The choice of using the high output from the temperature sensor was based more on a power savings and keeping current from flowing by using the pull-up resistor on that I/O line. A power supply was developed on the board to be able to have the AC easily available. There are better ways to supply power to the assembly, one of which is using a straight 5VDC power supply. The outputs of the SSR(s) can be attached to either the AC Return or power side. For safety reasons, the return side was used but either will work. Software Overview: Essentially, the ATTiny12 goes through the initialization and then goes into an Idle mode. If PB1 goes low due to smoke or PB4 goes high due to high temperature, an interrupt will be generated. The code then does a double check of the pins to ensure that there wasn t a spurious change on one of those pins. If either of those inputs are valid, it will turn on PB3 (to show the fan(s) is active) and PB0 (and PB2 if used) to turn on the SSR. That in turn will turn on the fan(s). The ATTiny12 will then go back to an Idle mode until there is a change on one of those pins. In most situations, the temperature will stay higher even when the smoke might be cleared out enough for the smoke detector to reset. INT0 will only trip when there is smoke. Start Initialize Idle NO NO INT0: Turn On Fan(s) & LED INT0 IN T0 PC I0 PCI0 Is PB4 high? YES Is PB1 high? YES Turn off fan(s) & LED Delay Loop Based on Processor speed Enable INT0 & set up counter Figure 1. Software Flowchart Digi-Key Corporation Page 2 of 7

3 Capabilities, Limitations, and Alterations In this application note, two AC fans were used. However, if there is sufficient power available and it is desirable to run DC fans, than there is a limitation. The ATTiny12 is only able to source/sink an absolute maximum of 40mA per pin, with an absolute maximum of 100mA for the chip. If DC fans were incorporated rather than AC fans, the best way would be to connect the output pin(s) to a MOSFET(s) (as shown below) that is capable of supplying the necessary current to the fans. In this way, it is ensured that the amount of current will not be too much for the microcontroller. Conclusion Figure 2. Alternate DC Fan Control This application note is just one example of the many ways that a small AVR can be used. It is a straightforward application that doesn t use many of the resources of the ATTiny12. The example source code can be easily modified for use of one or two fans in independent modes. Also, a dual set-point temperature sensor can be added to the circuitry fairly easily but the code would have to be adjusted to account for that input. Of course, if DC fans are wanted, it is an easy change to a circuit. Appendix A: Example Source Code ********************************************************************* ***** ***** Program turns an AC fan on or off depending on the ***** presence of smoke across an opto sensor. PortB is ***** configured so that there can be a fan for fresh air input ***** and a fan for smoke output. PortB can be changed as ***** shown with comments if PortB2 is not going to be used. ***** *********************************************************************/.include "tn12def.inc".include "macros.inc".dseg.def Temp=r16 ; Temporary register.def Temp2=r17 ; Second Temporary register.def Fan=r18 ; Fan register.def Count1=r19 ; Timer counter 0 first count register.def Count2=r20 ; Timer counter 0 second count register Digi-Key Corporation Page 3 of 7

4 .equ On=1 ; equate On to a logical 1.equ Off=0 ; equate Off to a logical 0.cseg.org $0000 rjmp Reset.org INT0addr rjmp Smoke.org PCI0addr rjmp Change.org OVF0addr rjmp Count ; reset vector ; Smoke detected vector ; Smoke cleared vector ; Timer to be sure that smoke is cleared keeping ; fan running Reset: // ldi Temp,0x0D ; Set PortB data direction for Pin0, Pin2, and ; Pin3 as outputs and the rest inputs ; Comment out if only using one fan ldi Temp,0x09 ; Set PortB data direction for Pin0 and Pin3 as ; outputs and the rest inputs ; Comment out if using two fans out DDRB,Temp // ldi Temp,0x12 ; Use if PortB0 and PortB2 are used for fans ; Comment out if using just one fan ldi Temp,0x16 out PORTB,Temp ldi Temp,0x60 ; Use if PortB0 is used for fan ; Comment out if using just two fans ; Enable PortB Start: out GIMSK,Temp ;as a high ldi Temp,0x00 out MCUCR,Temp ldi Temp,(1<<SE) out MCUCR,Temp ; Enable PortB1 as an interrupt as a low and PortB4 ; Clear MCU Control Register for enabling pull ups ; on inputs, Idle mode for sleep ; Enable the Sleep mode so controller can go into ; Idle mode Idle: sei sleep rjmp Idle ; Enable Global interrupts ; Put controller to sleep ; RETI brings program counter to this line moving ; controller back to idle mode Smoke: setb PORTB,0 setb PORTB,2 setb PORTB,3 ldi Fan,On ldi Temp,0x60 out GIFR,Temp ldi Temp,0x20 out GIMSK,Temp ; Turn on PortB0 pin ; Turn on PortB2 pin. Can be commented ; out if not using second fan ; Turn on PortB3 pin to show fan is on ; Register to show the fan(s) is on. ; Write a logical 1 to General Interrupt Flag Register ; to clear any flags caused by pin changes ; Enable PortB as any pin change triggers an interrupt Digi-Key Corporation Page 4 of 7

5 reti ; Return to idle mode Change: SKBC PINB,4 rjmp Smoke SKBS PINB,1 ; If temperature sensor is cleared check smoke detector ; If set jump to turn on fan(s) in smoke routine ; Double check smoke detector input to ensure that it ; isn't a spurious level change ; If not set, return to idle mode, otherwise skip this line reti ldi Temp, 0x40 out GIMSK,Temp clr Temp out TCNT0,Temp ;Clear Timer Counter 0 ldi Temp,0x01 out TCCR0,Temp ;Reset interrupt mask so that smoke detector is enabled ;Turn on Timer Counter 0 and use clock as timer source Count: ; Delay routine before fan(s) are turned off inc Count1 cpi Count1,0xFF brne Count inc Count2 cpi Count2,0xFF brne Count Clrb PORTB,0 ; Turn off PortB0 ; If Count1 is not equal to hex FF, then go back to start ; of Count routine ; If Count2 is not equal to hex FF, then go back to start ; of Count routine Clrb PORTB,2 ; Turn off PortB2. Can be commented out if not using ; second fan Clrb PortB,3 ; Turn off PortB3 to turn off LED clr Temp out TCCR0,temp ; Turn off Timer Counter 0 ldi Fan,Off ; Register to show the fan(s) is off reti ; Return to idle mode Digi-Key Corporation Page 5 of 7

6 Appendix B: Example Schematic Figure 3. Example Schematic Digi-Key Corporation Page 6 of 7

7 Appendix C: Parts List Part Part Number Board ND IC1 ATTiny12-8PI-ND IC2 LM317TFS-ND IC3 TC622EPA-ND IC4 OPT101P-ND K1, K ND LED ND LED ND TR ND B1 DB101-BPMS-ND R1 110KQBK-ND R2,R3,R4 330QBK-ND C1 P820-ND C2 P5182-ND ACIN ND Sockets (2) AE9841-ND Socket ED58408-ND Fans (2) P12896-ND Finger Guards (4) CR224-ND ACOUT (2) ND Switch CKC5107-ND Disclaimer Digi-Key offers its Technical Assistance and Design Support Services as a convenience to Digi-Key customers. Digi-Key Technical Assistance and Design Support Services personnel strive to provide useful information regarding Digi-Key products. DIGI-KEY DOES NOT GUARANTEE THAT ANY INFORMATION OR RECOMMENDATION PROVIDED IS ACCURATE, COMPLETE, OR CORRECT, AND DIGI-KEY SHALL HAVE NO RESPONSIBILITY OR LIABILITY WHATSOEVER IN CONNECTION WITH ANY INFORMATION OR RECOMMENDATION PROVIDED, OR THE CUSTOMER'S RELIANCE ON SUCH INFORMATION OR RECOMMENDATION. THE CUSTOMER IS SOLELY RESPONSIBLE FOR ANALYZING AND DETERMINING THE APPROPRIATENESS OF ANY INFORMATION OR RECOMMENDATION PROVIDED BY DIGI-KEY TECHNICAL ASSISTANCE AND DESIGN SUPPORT SERVICES PERSONNEL, AND ANY RELIANCE ON SUCH INFORMATION OR RECOMMENDATION IS AT THE CUSTOMER'S SOLE RISK AND DISCRETION. ACCORDINGLY, THE CUSTOMER SHALL RELEASE AND HOLD DIGI-KEY HARMLESS FROM AND AGAINST ANY AND ALL LOSS, LIABILITY, AND DAMAGE INCURRED BY THE CUSTOMER OR ANY THIRD PARTY AS A RESULT OF ANY INFORMATION OR RECOMMENDATION PROVIDED TO THE CUSTOMER OR THE CUSTOMER'S RELIANCE ON SUCH INFORMATION OR RECOMMENDATION. Digi-Key Corporation Page 7 of 7

F 2 MC-8FX FAMILY MB95200 SERIES SMOKE DETECTOR DEMO REFERENCE SOLUTION 8-BITMICROCONTROLLER APPLICATION NOTE

F 2 MC-8FX FAMILY MB95200 SERIES SMOKE DETECTOR DEMO REFERENCE SOLUTION 8-BITMICROCONTROLLER APPLICATION NOTE Fujitsu Semiconductor (Shanghai) Co., Ltd. Application Note MCU-AN- 500054-E-10 F 2 MC-8FX FAMILY 8-BITMICROCONTROLLER MB95200 SERIES SMOKE DETECTOR DEMO REFERENCE SOLUTION APPLICATION NOTE Revision History

More information

Using the HT46R48 in a Gas Water Heater Application

Using the HT46R48 in a Gas Water Heater Application Using the HT46R48 in a Gas Water Heater Application D/: HA0134E Introduction This forced exhaust gas water heater uses a Holtek HT46R48 MCU as the controlling device. It includes many safety features during

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

Smoke Detector Demo Reference Solution

Smoke Detector Demo Reference Solution Fujitsu Microelectronics (Shanghai) Co., Ltd. Application Note MCU-AN- 500054-E-10 F 2 MC-8FX FAMILY 8-BITMICROCONTROLLER MB95200 SERIES Smoke Detector Demo Reference Solution APPLICATION NOTE Smoke Detector

More information

Defrost Board. Hardware Design and Test Document

Defrost Board. Hardware Design and Test Document Defrost Board Hardware Design and Test Document Revision History Date Revision Author Comment December, 00 New Fred Keske Initial Release May 0, 00 A Fred Keske Modified Figure June 8, 00 B Fred Keske

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

Exercise 1. Introduction to Sensors EXERCISE OBJECTIVE

Exercise 1. Introduction to Sensors EXERCISE OBJECTIVE Exercise 1 Introduction to Sensors EXERCISE OBJECTIVE When you have completed this exercise, you will be introduced to photoelectric, capacitive and inductive sensors; You will also be introduced to the

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

RELEASE DEVICE CONTROLS

RELEASE DEVICE CONTROLS RELEASE DEVICE CONTROLS RELEASE DEVICE MODEL C+ INSTALLATION MANUAL UL LISTED CANADIAN LISTED CSFM: 7300-48:00 GENERAL DESCRIPTION: MADE IN THE U.S.A. S/N: The LM0-C+ Release Device/Control Panel is a

More information

User Manual. Dryer Controller M720

User Manual. Dryer Controller M720 User Manual Dryer Controller M720 Hardware version 1.00 Software version 1.00 Preliminary version Manual M720 Dryer controller Page 1 of 42 Document history Preliminary version: - Created in April, 2009

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

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

Dryer Controller M720

Dryer Controller M720 User Manual Dryer Controller M720 Hardware version 2.00 Software version 2.00 Manual M720 Dryer controller Page 1 of 60 Document history Preliminary version: - Created in April, 2009 Hardware Version 2.00,

More information

SAFETY INFORMATION AND WARNINGS

SAFETY INFORMATION AND WARNINGS This manual refers to the Model SST-3 control panel manufactured since October 31, 2013, which uses a universal (100 277 VAC; 50/60 Hz) power supply. Older units use a voltage-specific power supply and

More information

C-Bus Four Channel General Input Unit Installation Instructions

C-Bus Four Channel General Input Unit Installation Instructions C-Bus Four Channel General Input Unit Installation Instructions 5504GI Series REGISTERED DESIGN REGISTERED PATENT Table of Contents Section...Page 1.0 Product Range... 3 2.0 Description... 3 3.0 Capabilities...

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

Engine Control Unit, ECU 100 Functional description Additional functions Parameter list

Engine Control Unit, ECU 100 Functional description Additional functions Parameter list DESIGNER'S REFERENCE HANDBOOK Engine Control Unit, ECU 100 Functional description Parameter list DEIF A/S Frisenborgvej 33 DK-7800 Skive Tel.: +45 9614 9614 Fax: +45 9614 9615 info@deif.com www.deif.com

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

Refrigeration Controller Operator s Manual (HRC) PO Box 6183 Kennewick, WA

Refrigeration Controller Operator s Manual (HRC) PO Box 6183 Kennewick, WA Refrigeration Controller Operator s Manual (HRC) PO Box 6183 Kennewick, WA 99336 www.jmcvr.com 1-509-586-9893 Table of Contents TABLE OF FIGURES...1 OVERVIEW OF THE HRC CAPABILITIES...2 INSTALLATION AND

More information

Dishwasher Load-Unload Indicator. Jitendra Tailor

Dishwasher Load-Unload Indicator. Jitendra Tailor Dishwasher Load-Unload Indicator Jitendra Tailor Circuit and Software Operation The key to this gadget involves timing the activity of the dishwasher users. I preset the time to empty the dishwasher at

More information

Combi B Alarm box. Mounting instructions

Combi B Alarm box. Mounting instructions Combi B Alarm box Mounting instructions EN Mounting instructions Alarm box Combi B VdS, G113064, G113065, G113066 Table of Contents 1 Description... 3 2 System overview... 3 3 Structure... 3 3.1 Power

More information

Heat Pump Defrost Board Replacement Kit

Heat Pump Defrost Board Replacement Kit Bard Manufacturing Company, Inc. Bryan, Ohio 43506 8620-223 Heat Pump Defrost Board Replacement Kit KIT FEATURES This kit is made up of the current defrost control board 8201-129 and a new defrost sensor.

More information

Micro-controller X C C1 C2 AL1 AL2 AL3. Model: PXR4/5/9. Operation Manual SEL PXR. ECNO:406e

Micro-controller X C C1 C2 AL1 AL2 AL3. Model: PXR4/5/9. Operation Manual SEL PXR. ECNO:406e C C1 C2 AL1 AL2 AL3 Micro-controller X Model: PXR4/5/9 PXR SEL Operation Manual ECNO:46e Table of Contents Part Names and Functions... 6 Operations... 7 2-1 Parameter list... 7 2-2 Basic operations...

More information

HA-263K HA-263D. OWNER'S MANUAL Installation And Operation 8-ZONE ALARM CONTROL PANEL FOR HOME AND OFFICE PROTECTIONS OPEN THE CABINET FOR SERVICE

HA-263K HA-263D. OWNER'S MANUAL Installation And Operation 8-ZONE ALARM CONTROL PANEL FOR HOME AND OFFICE PROTECTIONS OPEN THE CABINET FOR SERVICE D (OPERATION) INITIATE A DYNAMIC BATTERY TEST The system tests the back-up battery once every 24 hours. The owner can initiate a dynamic battery test at any time with the following codes while the system

More information

1) This manual covers 4400, 5400 and 6400 fire alarm systems. The differences are described in the appropriate sections.

1) This manual covers 4400, 5400 and 6400 fire alarm systems. The differences are described in the appropriate sections. ISSUES ISSUE DATE DETAILS OF CHANGE CHANGED BY 1 16/02/00 ORIGINAL ISSUE - 2 16/01/01 TABLES 2 & 3 UPDATED, ADDED TABLE 4 PWD 3 12/09/01 ADDITIONAL INFORMATION PWD 4 29/11/02 TABLES 2, 3 & 4 UPDATED &

More information

Control Panel Checklist

Control Panel Checklist Control Panel Checklist Versatronik -C Panel Checklist Option Selection for Control Panel Quotes Checklist Control Panel Checklist Section 1 General Information Customer name Phone number Fax number Email

More information

TYPE CM-2201 NELSON SINGLE POINT CIRCUIT MANAGEMENT SYSTEM

TYPE CM-2201 NELSON SINGLE POINT CIRCUIT MANAGEMENT SYSTEM 2 Line, 16 Characters/row LCD Display Temperature Input Range -50 C to +500 C -58 F to + 932 F Enclosure NEMA Type 4X Current Rating 30A max (resistive load only) Ambient Temperature -40 C to + 40 C -40

More information

Product Manual SZ1144

Product Manual SZ1144 Product Manual SZ1144 Refrigeration Temperature Monitor Communicating Controls Description The SZ1144 is a microprocessor-based monitoring and alarm interface designed to monitor up to four 1000 Ω platinum

More information

Fujitsu Microelectronics Europe Application Note MCU-AN E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 ALARM COMPARATOR APPLICATION NOTE

Fujitsu Microelectronics Europe Application Note MCU-AN E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 ALARM COMPARATOR APPLICATION NOTE Fujitsu Microelectronics Europe Application Note MCU-AN-300071-E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 ALARM COMPARATOR APPLICATION NOTE Revision History Revision History Date 2008-04-22 V1.0, First

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

TECHNICAL DATA SHEET CONVENTIONAL FIRE ALARM SYSTEMS Conventional Fire Alarm Control Panel

TECHNICAL DATA SHEET CONVENTIONAL FIRE ALARM SYSTEMS Conventional Fire Alarm Control Panel CVENTIAL ALARM S Features: Description: The LF-CP Series Fire Alarm Control Panel is manufactured based on advanced technology while maintaining high quality during assembly. It is of solid state circuitry

More information

EasyTronic III MANUAL SERVICE

EasyTronic III MANUAL SERVICE rev.6 EasyTronic III MANUAL SERVICE General characteristics: Power supply 24 Vac ±15% Max consumption at 24Vac 300mA Relay outputs 6 Maximum relay current 8 A res. Serial standard RS232 2 Serial standard

More information

MADE IN THE U.S.A. ADVANCE FIRE CONTROL MODEL LM21-AFC MANUAL RELEASE DEVICES TEST WEEKLY TO ASSURE PROPER OPERATION OF RELEASE DEVICE/CONTROL PANEL

MADE IN THE U.S.A. ADVANCE FIRE CONTROL MODEL LM21-AFC MANUAL RELEASE DEVICES TEST WEEKLY TO ASSURE PROPER OPERATION OF RELEASE DEVICE/CONTROL PANEL RELEASE DEVICES MADE IN THE U.S.A. ADVANCE FIRE CONTROL MODEL LM21-AFC MANUAL The LiftMaster Fire Control (LM21-AFC) Release Device/Control Panel is UL/CUL listed normally energized fail-safe device incorporating

More information

ViewMatrix. Software for Online Monitoring & Control of Matrix2000 Conventional Fire Alarm Panels. Version: 2.0 Revision: 0.1

ViewMatrix. Software for Online Monitoring & Control of Matrix2000 Conventional Fire Alarm Panels. Version: 2.0 Revision: 0.1 ViewMatrix Software for Online Monitoring & Control of Matrix2000 Conventional Fire Alarm Panels Version: 2.0 Revision: 0.1 CONTENTS 1. Introduction...3 2. Keyboard...5 2.1 POWER indication - Normal Operation...5

More information

A5364. Ionization Smoke Detector with Interconnect

A5364. Ionization Smoke Detector with Interconnect Features and Benefits Low average standby current for long battery life Interconnect up to 125 detectors Piezoelectric horn driver Guard outputs for detector input Pulse testing for low battery Power-on

More information

Networked Access Control Panel. Installation Guide

Networked Access Control Panel. Installation Guide XP2M Networked Access Control Panel V1.0X Installation Guide X P 2 M A C C E S S C O N T R O L S Y S T E M Installation Guide Document Ref: PLAN XP2M Installation Guide V4(G)2010 Access Control Services

More information

Web Services are based on Apache and Tomcat servers. The html/jsp (tags, beans) are fully customisable and extendable.

Web Services are based on Apache and Tomcat servers. The html/jsp (tags, beans) are fully customisable and extendable. New thinking Sentus Automation is able to control and manipulate data at ease whilst delivering a low cost per point return. XML interface: Information can be exported/viewed by an unlimited number of

More information

DOLKPL1KB DOLKPS1KB DOLKSF1KB

DOLKPL1KB DOLKPS1KB DOLKSF1KB DOLKPL1KB DOLKPS1KB DOLKSF1KB USER MANUAL INSTRUCTIONAL VIDEO 1] Connection Terminals 2] Basic Wiring Example 3] Quick Start Guide 4] Programming Guide 5] Specifications 1 Connection Terminals The DOLKPS1KB/DOLKPS1KB/DOLKSF1KB

More information

See the table on the following Page for full descriptions of each Pin Type.

See the table on the following Page for full descriptions of each Pin Type. 8 Pin Comms-22-1 8 Pin Comms Task Format IMPORTANT NOTES: Hardware Compatability. The 8 Pin Comms Task can only be used in Type 2 (CE) Control Module Hardware. 22. Firmware Compatablility. INTRODUCTION.

More information

TABLE OF CONTENTS. FOR THE RECORD 15 PROGRAMMING WORK SHEETS 16 CONTROL PANEL WIRING DIAGRAM inside back cover

TABLE OF CONTENTS. FOR THE RECORD 15 PROGRAMMING WORK SHEETS 16 CONTROL PANEL WIRING DIAGRAM inside back cover TABLE OF CONTENTS FEATURES 2 SPECIFICATIONS 2 INSTALLATION 3 Mounting the Panel... 3 Mounting the Keypad... 3 Auxiliary Power Connection... 3 PGM Terminal Connections... 3 Bell/Siren Connection... 3 Keypad

More information

Preliminary Design Report with Diagrams

Preliminary Design Report with Diagrams Medication Alarm Intuitive Dispenser - M.A.I.D Elderly Assistive System Preliminary Design Report with Diagrams EEL4924C - Electrical Engineering Design 2 27 January 2011 Members: Steven Sengberg & Christopher

More information

PRODUCT INSTRUCTIONS. Fire Door Control Panel (FDCP) Stock Code Description Doc No: PI-115. Ellard Fire Door Control Panel Ellard Slave Repeater Unit

PRODUCT INSTRUCTIONS. Fire Door Control Panel (FDCP) Stock Code Description Doc No: PI-115. Ellard Fire Door Control Panel Ellard Slave Repeater Unit PRODUCT INSTRUCTIONS Fire Door Control Panel (FDCP) Floats Rd, Wythenshawe, Manchester. M23 9WB T: 44 (0)161 945 4561 F: 44 (0)161 945 4566 Stock Code Description Doc No: PI115 00133 00134 Ellard Fire

More information

SD Series Optoschmitt Detector, TO-46 Metal Can Package

SD Series Optoschmitt Detector, TO-46 Metal Can Package Representative photograph, actual product appearance may vary. Due to regional agency approval requirements, some products may not be available in your area. Please contact your regional Honeywell office

More information

REPEATER FS5200R INSTRUCTION MANUAL

REPEATER FS5200R INSTRUCTION MANUAL REPEATER FS5200R INSTRUCTION MANUAL Instruction Manual Page1 CONTENTS 1. Introduction... 3 2. Function... 3 3. Technical data... 3 4. Contents of delivery... 4 5. General information... 5 6. Duty Mode...

More information

UDC100 Universal Digital Controller Specifications

UDC100 Universal Digital Controller Specifications UDC100 Universal Digital Controller Specifications 51-52-03-29 November 1999 Overview The UDC100 Universal Digital Controller is a microprocessor-based 1/4 DIN low cost temperature controller. It combines

More information

Reciprocating Chiller

Reciprocating Chiller HVAC PRO for Windows User s Manual 637.5 OEM Section Technical Bulletin Issue Date 1094 Reciprocating Chiller Reciprocating Chiller Page 3 Description 3 Theory of Operation 5 Overview 5 Control Sequence

More information

FIRERAY 5000 range USER GUIDE

FIRERAY 5000 range USER GUIDE FIRERAY 5000 range USER GUIDE 0044-003-04 IMPORTANT PLEASE NOTE: The beam path MUST be kept clear of obstructions at all times! Failure to comply may result in the Detector initiating a Fire or Fault signal.

More information

EOS INTERFACE GUIDE AND POINTS LIST For EOS BTCII Firmware Version J1239D-570 and newer

EOS INTERFACE GUIDE AND POINTS LIST For EOS BTCII Firmware Version J1239D-570 and newer Installation and interface must be performed by a qualified controls technician. IMPORTANT: THIS MANUAL CONTAINS INFORMATION REQUIRED FOR INSTALLATION, INTERFACE AND CONFIGURATION OF THIS EQUIPMENT. READ

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

200 SERIES ADVANCED PHOTO/THERMAL/IR DETECTOR PRODUCT SPECIFICATION

200 SERIES ADVANCED PHOTO/THERMAL/IR DETECTOR PRODUCT SPECIFICATION GENERAL DESCRIPTION This product is the photo/thermal/ir variant of 2 Series Advanced, the redesigned 2 Series all SMD adopting the new chamber and a new style of covers. It works with the 2 Series extended

More information

ABOUT THIS DOCUMENT AND THE DOCUMENT STRUCTURE WE USE

ABOUT THIS DOCUMENT AND THE DOCUMENT STRUCTURE WE USE ABOUT THIS DOCUMENT AND THE DOCUMENT STRUCTURE WE USE isocket Smart Relay is a complex Smart House system which is installed in the fuse cabinet (electric cabinet) in the house. We therefore assume that

More information

1040 Gas Monitor INSTALLATION AND OPERATING INSTRUCTIONS AMC-1040 WITH INTEGRAL ELECTROCHEMICAL SENSOR

1040 Gas Monitor INSTALLATION AND OPERATING INSTRUCTIONS AMC-1040 WITH INTEGRAL ELECTROCHEMICAL SENSOR 1040 Gas Monitor INSTALLATION AND OPERATING INSTRUCTIONS AMC-1040 WITH INTEGRAL ELECTROCHEMICAL SENSOR IMPORTANT: Please read these installation and operating instructions completely and carefully before

More information

TABLE OF CONTENTS TABLE OF CONTENTS 1

TABLE OF CONTENTS TABLE OF CONTENTS 1 TABLE OF CONTENTS TABLE OF CONTENTS 1 FEATURES 2 Keypad Programmable... 2 EEPROM Memory... 2 Static/Lightning Protection... 2 Supervision... 2 Operation... 2 SPECIFICATIONS 2 PC1550 Control Panel... 2

More information

ACCURATE ELECTRONICS INC

ACCURATE ELECTRONICS INC ACCURATE ELECTRONICS INC Page 1 of 7 Model 108078 2 Sept 09 WWW.ACCURATE.ORG PO BOX 1654 97075-1654 8687 SW Hall Blvd 97008 BEAVERTON OR USA 503.641.0118 FAX 503.646.3903 Practice Section 108078 Rev A

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

XP95/Series 90 Test Set

XP95/Series 90 Test Set PP1072/2003/Issue 5 XP95/Series 90 Test Set XP95/SERIES 90 TEST SET BIT 0 BIT 1 BIT 2 NEW TEST MIN/MAX DOWN * UP # LOOP POWER OFF ON OUTPUT HEALTHY LOOP + - User Manual 1 Apollo XP95/Series 90 Test Set

More information

Enhanced FOUNDATION Fieldbus Physical Layer Diagnostics with the DeltaV System

Enhanced FOUNDATION Fieldbus Physical Layer Diagnostics with the DeltaV System November 2006 Page 1 Enhanced FOUNDATION Fieldbus Physical Layer Diagnostics This document provides possible solutions that allow enhanced Ff (FOUNDATION fieldbus) physical layer diagnostics using the

More information

With Magictrl, you can control MatiGard anytime & anywhere via your smartphone, even without data network.

With Magictrl, you can control MatiGard anytime & anywhere via your smartphone, even without data network. MatiGard User Guide 02 Menu Feature-------------------------------------------------------------- 05 Overviews---------------------------------------------------------- 07 Read Before Using-----------------------------------------------

More information

SETTING UP A VIRTUAL KEYPAD WITH A DSC POWERSERIES ALARM SYSTEM

SETTING UP A VIRTUAL KEYPAD WITH A DSC POWERSERIES ALARM SYSTEM DN1902-0909 SETTING UP A VIRTUAL KEYPAD WITH A DSC POWERSERIES ALARM SYSTEM The purpose of this application note is to configure the EntraPass system to interface with the DSC PowerSeries tm alarm systems

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

P2267 NETWORK INTERFACE

P2267 NETWORK INTERFACE P2267 NETWORK INTERFACE USER MANUAL FOR OPERATING SYSTEMS: 22031-03 23636-01 October 2009 Associated Controls (Australia) Pty. Limited 2-4 Norfolk Road Greenacre, NSW, 2190. PH +61 2 9642 4922, FAX +61

More information

Version 1.03 January-2002 USER S MANUAL

Version 1.03 January-2002 USER S MANUAL Version 1.03 January-2002 1 USER S MANUAL 2 Version 1.03 January-2002 System Details CUSTOMER:...... PHONE:... FAX:... INSTALLED BY:...... PHONE:... FAX:... MAINTENANCE & SERVICE:...... PHONE:... FAX:...

More information

Grove - Laser PM2.5 Sensor (HM3301)

Grove - Laser PM2.5 Sensor (HM3301) Grove - Laser PM2.5 Sensor (HM3301) The Grove - Laser PM2.5 Sensor (HM3301) is a new generation of laser dust detection sensor, which is used for continuous and real-time detection of dust in the air.

More information

ToolStick Debug Adapter

ToolStick Debug Adapter ToolStick Debug Adapter TOOLSTICK DEBUG ADAPTER USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics.

More information

CAN bus-based I/O module, CIO relays Mounting Terminals and wiring Commissioning, using the utility software

CAN bus-based I/O module, CIO relays Mounting Terminals and wiring Commissioning, using the utility software INSTALLATION AND COMMISSIONING GUIDE CAN bus-based I/O module, CIO 208 8 relays Mounting Terminals and wiring Commissioning, using the utility software DEIF A/S Frisenborgvej 33 DK-7800 Skive Tel.: +45

More information

DEIF A/S. Description of options. Option M17, Configurable inputs and RPM supervision Engine Controller EC-1/EC-1M. Description of option

DEIF A/S. Description of options. Option M17, Configurable inputs and RPM supervision Engine Controller EC-1/EC-1M. Description of option Description of options Option M17, Configurable inputs and RPM supervision Engine Controller EC-1/EC-1M 4189340401D SW 1.4X.X Description of option Functional description DEIF A/S Parameter list DEIF A/S,

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

MODEL B2 INSTALLATION MANUAL

MODEL B2 INSTALLATION MANUAL RELEASE DEVICES GENERAL DESCRIPTION MODEL B2 INSTALLATION MANUAL S/N: The B2 Series Time Delay Release Devices are UL Listed, Canadian Listed, and CSFM Listed for use on rolling doors, single-slide and

More information

IRIS Touch 400 & 600 Range Installation Manual. Honeywell Galaxy Range. Version 2.0

IRIS Touch 400 & 600 Range Installation Manual. Honeywell Galaxy Range. Version 2.0 IRIS Touch 400 & 600 Range Installation Manual Honeywell Galaxy Range Version 2.0 Table of Contents 1 System Overview... 4 2 IRIS Touch 440 & 640 PCB Layout... 5 3 Connection & Configuration for Honeywell

More information

CT398 Heaterstat TM Temperature Controller. Technical User Guide

CT398 Heaterstat TM Temperature Controller. Technical User Guide CT398 Heaterstat TM Temperature Controller Technical User Guide CT398 HeaterStat Controller Contents CT398 HeaterStat Controller... 2 Contents... 2 Document Overview... 2 For More Information... 2 Introduction...

More information

ENERGY LIGHT USER S GUIDE ENERGY LIGHT USER S GUIDE

ENERGY LIGHT USER S GUIDE ENERGY LIGHT USER S GUIDE ENERGY LIGHT USER S GUIDE Release January 2001 CONTENTS 1.0 GENERAL CHARACTERISTICS... 4 1.1 MAIN CHARACTERIS TICS... 4 2.0 USER INTERFACE (CODE C5121230)... 5 2.1 DISPLAY... 5 2.2 MEANING OF THE LEDS...

More information

Installation, Operating and Maintenance Manual

Installation, Operating and Maintenance Manual STATUS ZONES CONTROLS FIRE FAULT DISABLED FIRE 1 2 3 4 5 6 7 8 TEST FAULT DISABLED 1 5 BUZZER SILENCE RESET 1 2 TEST 2 6 LAMP TEST 3 SUPPLY 3 7 SYSTEM FAULT 4 8 SOUNDERS ACTIVATE/ SILENCE 4 FAULTS INSTRUCTIONS

More information

BASIC-Tiger Application Note No. 029 Rev Waking up sleeping tigers. Gunther Zielosko. 1. Basics Real Time Clock

BASIC-Tiger Application Note No. 029 Rev Waking up sleeping tigers. Gunther Zielosko. 1. Basics Real Time Clock Waking up sleeping tigers Gunther Zielosko 1. Basics 1.1. Real Time Clock BASIC- or TINY-Tiger with built-in Real Time Clock (RTC) have a few advantages over those without RTC. This CMOS clock with its

More information

Fire Extinguishing Control Panel INSTRUCTION MANUAL. Revision 8/ Instruction Manual Page 1 Revision 8/01.17 of 63

Fire Extinguishing Control Panel INSTRUCTION MANUAL. Revision 8/ Instruction Manual Page 1 Revision 8/01.17 of 63 Fire Extinguishing Control Panel FS5200Е INSTRUCTION MANUAL Revision 8/01.17 Instruction Manual Page 1 1. 2. 3. 4. 4.1. 4.2. 4.2.1. 4.2.2. 4.2.3. 4.2.4. 4.2.5. 4.2.6. 4.2.7. 4.2.8. 4.2.9. 4.2.10. 4.2.11.

More information

Intelligent Security & Fire Ltd

Intelligent Security & Fire Ltd Product Data Sheet Mx-4000 Series User Manual MX-4100, MX-4200, MX-4400, Mx-4400/LE & Mx-4800 Fire Alarm Control Panels The operation and functions described in the manual are available from Software Versions

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F330 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

Comfort Thermostat Function

Comfort Thermostat Function Comfort Thermostat Function Introduction The Thermostat function in Comfort allows Comfort to control up to 8 sets of heating and cooling valves by means of temperature setpoints and temperature readings.

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

Danfoss gas detection units

Danfoss gas detection units Data sheet Danfoss gas detection units Types GD Premium, Premium+, Premium Duplex, Premium Remote, Premium Flex and Premium Uptime The Premium line gas detection units are used for monitoring and warning

More information

200i/KN2, KN4 Firmware Revision Sheet

200i/KN2, KN4 Firmware Revision Sheet 200i/KN2, KN4 Firmware Revision Sheet Revision 2.9 Special Release 1- November 2013 1. Added an external boiler Failsafe feature. The J6 Analog Output can be used to enable a SSR which can be used to enable

More information

RAYCHEM NGC-30 COMPONENTS

RAYCHEM NGC-30 COMPONENTS PANEL MOUNTED ELECTRONIC MULTI-CIRCUIT HEAT-TRACING CONTROL, MONITORING AND POWER DISTRIBUTION SYSTEM PRODUCT OVERVIEW CABLE DUCT Card Rack Modules TERMINAL STRIP PLINTH MAIN SWITCH 800 mm USER INTERFACE

More information

Failure Modes, Effects and Diagnostic Analysis

Failure Modes, Effects and Diagnostic Analysis Failure Modes, Effects and Diagnostic Analysis Project: Oldham OLCT 200 Transmitter Company: Industrial Scientific Corporation Oakdale, PA USA Contract Number: Q11/05-009 Report No.: IS 10/10-010 R001

More information

PLEASE READ ALL INSTRUCTIONS PRIOR TO INSTALLING THE SYSTEM. HANDLE THE EQUIPMENT CAREFULLY.

PLEASE READ ALL INSTRUCTIONS PRIOR TO INSTALLING THE SYSTEM. HANDLE THE EQUIPMENT CAREFULLY. 575 Birch Street, Forestville, CT 06010 Phone (866) 322-1237 Fax (866) 322-1233 WWW.LOCKNETICS. CL-CONTROLLER CL-CONTROLLER UNLIMITED USERS ALLOWED 2000 AUDIT EVENTS SOFTWARE-MANAGED TIME ZONES SOFTWARE-MANAGED

More information

F PC and AO OUTPUT BOARDS INSTRUCTION MANUAL. Blue-White. Industries, Ltd.

F PC and AO OUTPUT BOARDS INSTRUCTION MANUAL. Blue-White. Industries, Ltd. F-2000 PC and AO OUTPUT BOARDS INSTRUCTION MANUAL Blue-White R Industries, Ltd. 500 Business Drive Huntington Beach, CA 92649 USA Phone: 714-89-8529 FAX: 714-894-9492 E mail: sales@blue-white.com or techsupport@blue-white.com

More information

AUTOMATIC ROOM LIGHT AND FAN CONTROLLER WITH BI- DIRECTIONAL VISITOR COUNTER

AUTOMATIC ROOM LIGHT AND FAN CONTROLLER WITH BI- DIRECTIONAL VISITOR COUNTER AUTOMATIC ROOM LIGHT AND FAN CONTROLLER WITH BI- DIRECTIONAL VISITOR COUNTER R.R.Yuganandhine 1, Kiruthika.J 2, Manju.S 3, Mythili.K 4, Manikandan.R.K 5 1 Assistant Professor, 2,3,4,5 Student Members Department

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

Pump-Up Controller MODEL 4062

Pump-Up Controller MODEL 4062 Pump-Up Controller 4-20mA Input/Scalable Output Seal Fail Monitoring Duplex Pump Alternation Hand-Off-Auto Controls Dual Run-time Meters RS-485/Modbus Communications DESCRIPTION The Model 4062 Pump-Up

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

Control Panel User Guide (TO BE RETAINED BY THE USER)

Control Panel User Guide (TO BE RETAINED BY THE USER) Fire Detection & Alarm System Control Panel V3 (Suitable for Quadnet control panels from V2.00) Control Panel User Guide (TO BE RETAINED BY THE USER) 26-0585 Issue 7 Fike s policy is one of continual improvement

More information

IRtech. E instruments. IRtech Radiamatic IR20 LS series. Infrared Technology

IRtech. E instruments. IRtech Radiamatic IR20 LS series.  Infrared Technology E instruments IRtech Temperature range up to 2200 C Optical resolution up to 300:1 Close focus 0,5mm 8-14µm, 1.6µm, 1µm, 2.3µm, 3.9µm, 4.2µm, 4.6µm, 5.1µm and 7.9µm Spectral response Dual laser true target

More information

Models NFPA 1221-A, NFPA 1221-B Public Safety DAS Annunciator Panel. Revision E 61117

Models NFPA 1221-A, NFPA 1221-B Public Safety DAS Annunciator Panel. Revision E 61117 Models NFPA 1221-A, NFPA 1221-B Public Safety DAS Annunciator Panel Revision E 61117 CAUTION: (Read This First) This panel has been designed to make it nearly bullet proof to mistakes made when wiring

More information

OPERATING MANUAL Enertronic Control System 2

OPERATING MANUAL Enertronic Control System 2 OPERATING MANUAL Enertronic Control System 2 The integrated control system for Lennox chillers in the Ecologic and Seconscrew ranges Manufacturer Lennox Benelux B.V. Postbus 1028, 3860 BA NIJKERK Watergoorweg

More information

CDR-AL Room CO 2 Traffic Light Alarm Units and Sensors

CDR-AL Room CO 2 Traffic Light Alarm Units and Sensors Product sheet SN1.402 Type CDR-AL CDR-AL Room CO 2 Traffic Light Alarm Units and Sensors CDR-AL sensors are designed to detect carbon dioxide concentration and temperature in the room spaces. The units

More information

Product Manual SZ1145

Product Manual SZ1145 Product Manual SZ114 General Purpose Monitor Communicating Controls Description The SZ114 is a microprocessor-based monitoring and alarm interface designed to monitor up to four 1000 Ω platinum temperature

More information

Verasys System Operation Overview Technical Bulletin

Verasys System Operation Overview Technical Bulletin Contents subject to change. Verasys System Operation Overview Technical Bulletin Code No. LIT-12012370 Issued January 2016 Refer to the QuickLIT Web site for the most up-to-date version of this document.

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F381 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

USER MANUAL COMBINED FIRE & EXTINGUISHING CONTROL PANEL COMPLIES WITH BS EN PART 1 & EN54 PARTS 2 & 4

USER MANUAL COMBINED FIRE & EXTINGUISHING CONTROL PANEL COMPLIES WITH BS EN PART 1 & EN54 PARTS 2 & 4 PREMIER EX8 EXTINGUISHING PANEL USER MANUAL COMBINED FIRE & EXTINGUISHING CONTROL PANEL COMPLIES WITH BS EN 12094 PART 1 & EN54 PARTS 2 & 4 USER MANUAL Approved Document No: GLT.MAN-132 INDEX Extinguishing

More information

OPERATING MANUAL Enertronic Control System 2

OPERATING MANUAL Enertronic Control System 2 OPERATING MANUAL Enertronic Control System 2 The integrated control system for Lennox chillers in the Ecologic range Manufacturer: Lennox Benelux B.V. Postbus 1028, 3860 BA NIJKERK Watergoorweg 87, 3861

More information

ECO N DATE DESCRIPTION OF CHANGE CHG

ECO N DATE DESCRIPTION OF CHANGE CHG Model Number: M21E-24-DIN Description: The product is a loop powered device which controls an unsupervised dual pole output channel suitable to manage 24VAC loads. The M21E-24-DIN is micro-controller operated,

More information

NGC-40 Bridge. Modbus Overview. Raychem-AR-H58862-NGC40BridgeModbusOV-EN-1805 nvent.com 1

NGC-40 Bridge. Modbus Overview. Raychem-AR-H58862-NGC40BridgeModbusOV-EN-1805 nvent.com 1 NGC-40 Bridge Overview Raychem-AR-H58862-NGC40BridgeOV-EN-1805 nvent.com 1 Table of Contents 1. NGC-40 Overview... 9 1.1 Example NGC-40 System... 10 2. Legal stuff... 11 3. Protocols... 12 3.1 Data es...

More information