Project Description. The design details and parameters: Are as follows:

Size: px
Start display at page:

Download "Project Description. The design details and parameters: Are as follows:"

Transcription

1 Project Description Problem: I have a gas forced hot air furnace with an Aprilair Humidifier. I live in the Mid-Atlantic states. My winter Humidity is controlled by Honeywell Humidistats. They are grossly inaccurate and my house is either too dry or too humid. My Solution: Design and build an Arduino based Humidistat. It will be powered by the furnace 500ma terminal on the Furnace s circuit board that is active only during the heating cycle when the fan is on. The design details and parameters: Are as follows: The 24VAC will be converted to 7.5VDC and will turn on and power the Arduino. The ambient Humidity will be sampled by a DHT22 Temperature and Humidity Sensor. A potentiometer will set the point to turn on the humidifier and will set a humidity range between 30% and 50% initially but may be reprogrammed to set a range between 20% and 40%. If the humidity drops below the set point a optically coupled solid state relay will be energized which will turn on the water solenoid to supply water to the humidifier. The humidity will be sampled every 5 seconds if the sampled humidity is higher than the set point. If the water solenoid is energized there will be a two minute delay before the humidity is sampled again to avoid short cycling of the humidifier s water valve solenoid. Progress so far: Project completed Circuit Description completed Schematic completed Arduino code sketch completed Pictures completed Final project mounted and connected to furnace and humidifier Final testing phase (will last a couple of weeks)

2 Circuit Description Please Reference Schematic ma is fed from the furnace (HUM) terminal on the furnace s circuit board to the bridge rectifier and filtered with a 100uf 50 volt electrolytic capacitor yielding about 35VDC. The (HUM) terminal only receives power when the furnace is in its heating cycle and the circulating fan is running. The 35VDC is fed into a DC/DC adjustable linear regulator set to 7.5VDC. The output of the regulator is fed into the Arduino s power jack and will power the Arduino only when the furnace is in the heat cycle and the circulating fan is running, hence starting the Arduino s program. A 10 K Ohm potentiometer is connected to 5VDC, ground, and the wiper is connected to the analog input (A0). This generates values between zero and 1023 to the Arduino. This value gets converted to a range of 30 to 50 and is used to as a set point for the humidity. It is compared to the humidity read from the DHT22 and is used to trigger the solenoid to supply water to the Humidifier. A DHT22 (I2C) Humidity/Temperature sensor is connected to 5VDC (Pin1), ground (Pin 4) and (Pin 2) to the Arduino s Pin2 and measures Temperature and Humidity. The program reads this value of this sensor every 5 seconds. Note that there is a 10K Ohm resister between Pin 1 and Pin 2 of the DHT22 sensor. Pin 4 of the Arduino is connected to an optically-coupled solid state AC relay through a 330 Ohm resistor. If pin 4 goes high, the relay triggers to the on state and completes the circuit between pins 6 and pins 8 of the relay. The relay contacts are connected in parallel with the old furnace Humidistat (note the old furnace Humidistat is used for failsafe backup but is normally turned off). If the relay contacts are energized (closed), they will complete the circuit and turn on the furnace s water valve solenoid suppling water to the Humidifier on the furnace. Three LEDs are used for status. All are connected through 3.3K Ohm resistors for current limiting. The first is a power indicator and is connected to 5VCD to indicate the Arduino is being powered. The second is connected to Pin 11 on the Arduino and indicated activity, it flashes for 250ms every time the DHT22 is sampled. The third is connected to Pin 13 on the Arduino and lights when the water solenoid relay is triggered supply water to the humidifier. The program is written with a test to make sure that the DHT sensor is connected and working. If the sensor cannot be read, both the Activity and the Water Solenoid lights will flash for 10 times, ½ second on, 1 second off to let you know there is a problem. If the Humidifier relay is energized, it will latch for two minutes, before sampling the room s ambient humidity again. Once the humidity in the room reaches the set point, the Humidistat s relay will deenergize and the program will again start to sample the ambient humidity and test it against the set point every 5 seconds.

3 Once the heat cycle on the furnace completes, the (HUM) terminal on the furnace will no longer supply voltage to the Arduino and the Arduino will power off.

4

5 Arduino Sketch #include "DHT.h" #define DHTPIN 2 // what pin we're connected to #define DHTTYPE DHT22 // DHT 22 (AM2302) #define solenoid 4 // Pin to Activate water solenoid #define activity 11 // Pin to show activity (reading sensor) DHT dht(dhtpin, DHTTYPE); void setup() { pinmode(activity, OUTPUT); pinmode(13,output); pinmode(solenoid, OUTPUT); Serial.begin(9600); dht.begin(); void loop() { // Wait a 5 seconds between measurements. delay(5000); // Reading temperature or humidity takes about 250 // milliseconds! // Sensor readings may also be up to 2 seconds 'old' // (it is a very slow sensor) digitalwrite(activity, HIGH); delay(100); float h = dht.readhumidity(); digitalwrite(activity, LOW); // Read temperature as Celsius float t = dht.readtemperature(); float tt = dht.convertctof(t); // Check if any reads failed and exit early (to try again). if (isnan(h) isnan(t)) { Serial.println("Failed to read from DHT sensor!"); // If the sensor fails to read successfully execute for loop // and flash the activity and solenoid lights together for // 10

6 // times a total of 15 seconds for(int x=0; x < 10; x++){ digitalwrite(activity,high); digitalwrite(13,high); delay(1000); digitalwrite(13,low); digitalwrite(activity,low); delay(500); return; // Read pot and convert to humidity values between 30 and 50% // humidtiysetpoint = the pot value // setpointvalue = the set point for the target humidity level // Test to see if the humidity is less than the set point // if so turn on solenoid // If not turn off solenoid // Temp is just displayed on serial console but not used float setpointvalue; int humidtiysetpoint=analogread(a0); if (humidtiysetpoint < 0) { humidtiysetpoint = 0; if (humidtiysetpoint > 1023) { humidtiysetpoint = 1023; setpointvalue=((humidtiysetpoint - 1) * 20 / 1023) + 30; if(h < setpointvalue ) { digitalwrite(solenoid, HIGH); digitalwrite(13, HIGH); delay(120000); else { digitalwrite(solenoid, LOW); digitalwrite(13,low); Serial.println (setpointvalue); Serial.print("Humidity: "); Serial.print(h); Serial.print(" %\t"); Serial.print("Temperature: "); Serial.print(tt);

7 Serial.println(" F ");

8 Note: Remote Control used for size reference. Project Pictures

9

10

11 Parts List Many of the parts are standard over the counter parts and not listed here. These are: Common Parts Bridge Rectifier Capacitors Resistors Potentiometers LED s Connectors Specialized Parts DHT-22 Humidity and Temperature sensor ~ $3.50 Amazon Arduino Uno (clone) ~ $3.20 Aliexpress Panasonic AQH0213 Compact DIP Solid State Relay ~ $2.00 from Newark Electronics Arduino Prototype Shield ~ $1.10 from Aliexpress DC-DC 5v 9v 12v 24v Converter Buck Module Linear Regulator Step Down Board ~ $6.00 ebay Two low voltage ½ height electrical boxes ~ $1.20 Home Depot Sheet of Plexiglas ~ $2.00 Home Depot Total cost of the project is about $30.00

Guillermo Alberto Pérez Guillen Automation Home

Guillermo Alberto Pérez Guillen Automation Home Guillermo Alberto Pérez Guillen Automation Home 1. Introduction 2. Schematic Diagram 3. Electric Diagram 4. Hardware 5. Software INDEX 6. Photographs 7. Links This work is author s property, and has been

More information

Instruction Manual Model A

Instruction Manual Model A 706 Bostwick Avenue, Bridgeport, CT 06605 TEL: 203-368-6751 FAX: 203-368-3747 1-800-566-6822 www.devarinc.com Instruction Manual Model 18-232A LOOP POWERED ALARM MANUAL NO. 990029 MODEL 18-232A LOOP POWERED

More information

QUICK REFERENCE GUIDE P.C. BOARD/WALL THERMOSTAT FOR 6535D, 6537C, 6538 A&B SERIES TWO TON PACKAGED HIGH EFFICIENCY HEAT PUMPS

QUICK REFERENCE GUIDE P.C. BOARD/WALL THERMOSTAT FOR 6535D, 6537C, 6538 A&B SERIES TWO TON PACKAGED HIGH EFFICIENCY HEAT PUMPS QUICK REFERENCE GUIDE P.C. BOARD/WALL THERMOSTAT FOR 6535D, 6537C, 6538 A&B SERIES TWO TON PACKAGED HIGH EFFICIENCY HEAT PUMPS RV Products A Division of Airxcel, Inc. P.O. Box 4020 Wichita, KS 67204 1-316-832-4357

More information

ESSEX ENGINEERING CORPORATION

ESSEX ENGINEERING CORPORATION WATER/WASTEWATER TREATMENT CONTROL SYSTEMS AND SUBSYSTEMS 2000 SERIES CONTROL SYSTEMS: 2000 series are for surface mounting inside a control cabinet Model 2024 Electronic Alternator Duplex (two pump) pump

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

INSTRUCTION MANUAL and DETAILED PRODUCT SPECIFICATION TRIPLEX PUMP CONTROL SYSTEM MODEL NUMBER CPC-3. M336 Rev F. November 21, 2000.

INSTRUCTION MANUAL and DETAILED PRODUCT SPECIFICATION TRIPLEX PUMP CONTROL SYSTEM MODEL NUMBER CPC-3. M336 Rev F. November 21, 2000. INSTRUCTION MANUAL and DETAILED PRODUCT SPECIFICATION TRIPLEX PUMP CONTROL SYSTEM MODEL NUMBER CPC-3 M336 Rev F November 21, 2000 ÇConsilium Consilium US, Inc. 59 Porter Rd Littleton, MA 01460-1431 USA

More information

tcm100, tcm101 Series Temperature Control Modules and PTS100, PTS100/3 Pipe Temperature Sensors Operations Manual

tcm100, tcm101 Series Temperature Control Modules and PTS100, PTS100/3 Pipe Temperature Sensors Operations Manual tcm100, tcm101 Series Temperature Control Modules and PTS100, PTS100/3 Pipe Temperature Sensors Operations Manual This manual covers operation of the tcm100 and tcm101 Series Temperature Control Modules.

More information

QUICK REFERENCE GUIDE P.C. BOARD/WALL THERMOSTAT FOR 6536A891, 6536B891 & 6536C891 TWO TON PACKAGED HEAT PUMPS

QUICK REFERENCE GUIDE P.C. BOARD/WALL THERMOSTAT FOR 6536A891, 6536B891 & 6536C891 TWO TON PACKAGED HEAT PUMPS QUICK REFERENCE GUIDE P.C. BOARD/WALL THERMOSTAT FOR 6536A891, 6536B891 & 6536C891 TWO TON PACKAGED HEAT PUMPS Note: This manual may also be used for 6536-871 series heat pumps if the 6535-3209 Replacement

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

B-40/B-41 Modulating Temperature Controller

B-40/B-41 Modulating Temperature Controller INSTALLATION & OPERATING INSTRUCTIONS B-40/B-41 Modulating Temperature Controller For Raytherm Boilers & Water Heaters H2 514-4001 WH2 2100-4001 Catalog No. 5000.70 Effective: 12-21-11 Replaces: NEW P/N

More information

Table of Contents. Page Quick Set-up Instructions 1. Theory of Operation 2. Specifications 3. TM 1003W Controls and Connections 4

Table of Contents. Page Quick Set-up Instructions 1. Theory of Operation 2. Specifications 3. TM 1003W Controls and Connections 4 Table of Contents Page Quick Set-up Instructions 1 Theory of Operation 2 Specifications 3 TM 1003W Controls and Connections 4 1. Power Source Connector 5 2. Alarm Output Connector 5 3. Variation Detection

More information

Carbon Monoxide Transmitter

Carbon Monoxide Transmitter Introduction The CO Transmitter uses an electrochemical sensor to monitor the carbon monoxide level and outputs a field-selectable 4-20 ma or voltage signal. The voltage signal may also be set to 0-5 or

More information

MODEL QTS-1800 SERIES WALL MOUNT DIGITAL AND ANALOG TRANSMITTER/SENSOR

MODEL QTS-1800 SERIES WALL MOUNT DIGITAL AND ANALOG TRANSMITTER/SENSOR MODEL QTS-1800 SERIES WALL MOUNT DIGITAL AND ANALOG TRANSMITTER/SENSOR INSTALLATION OPERATION AND MAINTENANCE MANUAL QUATROSENSE ENVIRONMENTAL LTD. 5935 OTTAWA STREET, PO BOX 749 RICHMOND, ONTARIO CANADA

More information

ANNUNCIATOR INSTRUMENTS Model PD141AFO Instruction Manual

ANNUNCIATOR INSTRUMENTS Model PD141AFO Instruction Manual ANNUNCIATOR INSTRUMENTS Model PD141AFO Instruction Manual From urgent alarms to routine messages, the PD141AFO VIGILANTE handles all types of operational messages with simplicity and economy. The VIGILANTE

More information

Electro-Sentry. Users Manual

Electro-Sentry. Users Manual Electro-Sentry Users Manual 2. To view an individual point, e.g. Speed just touch that point and it will display a graph showing the 45 min. of activity. Viewing a Leg: 1. Touch the desired leg, e.g. East

More information

Public Safety DAS Annunciator Panel

Public Safety DAS Annunciator Panel Public Safety DAS Annunciator Panel 120 VAC Models: 1221-A, 1221-B, 1221-C Revision D 91117 48 VDC Models: 1221-A-48, 1221-B-48, 1221-C-48 24 VDC Models: 1221A-24, 1221-B-24, 1221-C-24 CAUTION: (Read This

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

Module Features are-configurable, no module jumpers to set

Module Features are-configurable, no module jumpers to set December 2011 PACSystems* RX3i Isolated Thermocouple Input Module, 6 Channels, IC695ALG306 Isolated Thermocouple Input Module, 12 Channels, IC695ALG312 Isolated Thermocouple Input module IC695ALG306 provides

More information

Ç Consilium Consilium US, Inc. 59 Porter Rd Littleton, MA USA

Ç Consilium Consilium US, Inc. 59 Porter Rd Littleton, MA USA INSTRUCTION MANUAL and DETAILED PRODUCT SPECIFICATION TRIPLEX BACKUP PUMP CONTROL SYSTEM MODEL NUMBER BPC-3 November 22, 1999 Ç Consilium Consilium US, Inc. 59 Porter Rd Littleton, MA 01460-1431 USA Telephone:

More information

Analog Room Pressure Monitor RPC Series

Analog Room Pressure Monitor RPC Series Description The Room Pressure Monitor is used to measure differential pressure in the range of 0.125 to 1"wc or 30 to 250 Pa. It combines precision high sensitivity silicon sensing capabilities and the

More information

Operator: Save these instructions for future use!

Operator: Save these instructions for future use! WHITE-RODGERS 50A55-286 Integrated Furnace Control INSTALLATION INSTRUCTIONS Operator: Save these instructions for future use FAILURE TO READ AND FOLLOW ALL INSTRUCTIONS CAREFULLY BEFORE INSTALLING OR

More information

ELECTRONIC HUMIDISTAT: H270

ELECTRONIC HUMIDISTAT: H270 ELECTRONIC HUMIDISTAT: H0 ONE OR TWO STAGES HUMIDITY SUPPLY OUTDOOR TEMPERATURE RESET DESCRIPTION The H0 series low voltage, microcomputerbased PI (proportional and integral) humidistats are designed for

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

Dryer Master DM510 Commissioning Guide

Dryer Master DM510 Commissioning Guide COMMISSIONING GUIDE Dryer Master DM510 Dryer Moisture Systems Inc. 640 Superior Drive Waterloo, Ontario Phone 519.725.4700 Fax 519.885.4300 USA & Canada Toll Free 1-888-318-0009 E-mail: info@dryermaster.com

More information

RTD TEMPERATURE SENSING SYSTEM

RTD TEMPERATURE SENSING SYSTEM General Overview RTD TEMPERATURE SENSING SYSTEM The Prime Technology RTD Temperature System 9219-00-0002 is a three-channel temperature measuring system that utilizes two RTD Temperature Sensor inputs

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

Operator: Save these instructions for future use!

Operator: Save these instructions for future use! 031-01284-000/50A55-241 Integrated Furnace Control INSTALLATION INSTRUCTIONS Operator: Save these instructions for future use! FAILURE TO READ AND FOLLOW ALL INSTRUCTIONS CAREFULLY BEFORE INSTALLING OR

More information

Model OEM-2 INSTRUCTIONS FOR USE

Model OEM-2 INSTRUCTIONS FOR USE ECO SENSORS, INC. 3-03.2 OEM OZONE CONTROLLER Model OEM-2 INSTRUCTIONS FOR USE GENERAL The model OEM-2 is a system to control ozone generators and alarms based on an adjustable ozone concentration set

More information

Operator: Save these instructions for future use!

Operator: Save these instructions for future use! WHITE-RODGERS 50A55-474 & 50A55-571 Integrated Furnace Controls INSTALLATION INSTRUCTIONS Operator: Save these instructions for future use! FAILURE TO READ AND FOLLOW ALL INSTRUCTIONS CAREFULLY BEFORE

More information

MAINTENANCE & TROUBLESHOOTING GUIDE LEAK ALARM CHANNEL DRY OIL WATER AUX ALARM HIGH LOW CRITICAL WATER TANK LEVEL ALARM MODEL LDE-740 ADVANCE PAPER

MAINTENANCE & TROUBLESHOOTING GUIDE LEAK ALARM CHANNEL DRY OIL WATER AUX ALARM HIGH LOW CRITICAL WATER TANK LEVEL ALARM MODEL LDE-740 ADVANCE PAPER PNEUMERCATOR Liquid Level Control Systems Electronic Systems Excluding LC2000 And TMS Series MAINTENANCE & TROUBLESHOOTING GUIDE 400 300 500 FUEL LEVEL LEAK MONITOR 1 200 600 OIL/GAS NORMAL WATER PNEUMERCATOR

More information

MODEL 5100 VOTING LOGIC MODULE

MODEL 5100 VOTING LOGIC MODULE DESCRIPTION DESCRIPTION The SST Model 5100 Multi-Input Voting Logic Module is used to monitor the status of up to 14 different points in a hazard zone, and report when a selectable number of these points

More information

Lubrication cycle IP Enclosure Rating. 110 VAC, 220/230 VAC (50/60 Hz) Alarm Fault Relay Contacts. IP-55 (Liquid tight connector)

Lubrication cycle IP Enclosure Rating. 110 VAC, 220/230 VAC (50/60 Hz) Alarm Fault Relay Contacts. IP-55 (Liquid tight connector) SMAC Controller Industrial Lubrication Systems Operation The SMAC Controller is a multi-purpose programmable controller used with industrial lubrication systems. Controller settings are saved whenever

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

DUAL MONITORED INPUT/OUTPUT UNIT BN-305

DUAL MONITORED INPUT/OUTPUT UNIT BN-305 DUAL MONITORED INPUT/OUTPUT UNIT BN-30 Interactive fire detection systems Product Datasheet Features Interactive For interfacing and controlling external units to Autronica s interactive fire detection

More information

Humidity and Temperature Prototype for Education with Internet of Things

Humidity and Temperature Prototype for Education with Internet of Things Volume 119 No. 16 2018, 2487-2491 ISSN: 1314-3395 (on-line version) url: http://www.acadpubl.eu/hub/ Humidity and Temperature Prototype for Education with Internet of Things http://www.acadpubl.eu/hub/

More information

THA2 TEMPERATURE/ HUMIDITY/ DEWPOINT ALARM WITH LOGGING CAPABILITY. 99 Washington Street Melrose, MA Phone Toll Free

THA2 TEMPERATURE/ HUMIDITY/ DEWPOINT ALARM WITH LOGGING CAPABILITY. 99 Washington Street Melrose, MA Phone Toll Free 99 Washington Street Melrose, MA 02176 Phone 781-665-1400 Toll Free 1-800-517-8431 Visit us at www.testequipmentdepot.com THA2 TEMPERATURE/ HUMIDITY/ DEWPOINT ALARM WITH LOGGING CAPABILITY Introduction.

More information

Operator: Save these instructions for future use!

Operator: Save these instructions for future use! 50A65-843 Universal Integrated Furnace Control INSTALLATION INSTRUCTIONS Operator: Save these instructions for future use! FAILURE TO READ AND FOLLOW ALL INSTRUCTIONS CAREFULLY BEFORE INSTALLING OR OPERATING

More information

Operator: Save these instructions for future use!

Operator: Save these instructions for future use! 50V64-743 Integrated Furnace Control for Furnaces with Variable Fan Speed INSTALLATION INSTRUCTIONS Operator: Save these instructions for future use FAILURE TO READ AND FOLLOW ALL INSTRUCTIONS CAREFULLY

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

FireNET Plus Wiring Instructions

FireNET Plus Wiring Instructions FireNET Plus Wiring Instructions This manual provides wiring instructions for the 1 loop and 2 loop version of the FireNET Plus panels, which supports our finest Hochiki s DCP protocol. Note: Refer to

More information

50A Integrated Furnace Control

50A Integrated Furnace Control Goodman White-Rodgers 0130F00005 PCBBF110 PCBBF123 50A55-743 0130F00005S PCBBF110S PCBBF123S 50A55-289 B1809926 PCBBF112 50T55-289 B1809926S PCBBF112S 50A55-743 Integrated Furnace Control INSTALLATION

More information

Remote Chexit Module (RCM) System. General Information

Remote Chexit Module (RCM) System. General Information *911032-00* 911032-00 Wiring and Configuration Remote Chexit Module (RCM) System Installation Instructions General Information The Von Duprin RCM is designed for controlled egress applications. It meets

More information

Rectifier RC-series. Manual RC-series English MA doc. Manual Wall and 19 English

Rectifier RC-series. Manual RC-series English MA doc. Manual Wall and 19 English Rectifier RC-series Manual RC-series English Manual Wall and 19 English Presentation The RC-series is a rectifier for either directly powering the load or for use together with batteries. It is designed

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

ALARM OUTPUT MODULE. Product #7736

ALARM OUTPUT MODULE. Product #7736 ALARM OUTPUT MODULE The Alarm Output Module (AOM) enables you to use weather station alarms or commands from your computer to automatically start or stop external devices such as indicator lights, audio

More information

STRONG International FP-350 Operation and Installation Manual

STRONG International FP-350 Operation and Installation Manual STRONG International FP-350 TM Operation and Installation Manual Revision 2.00 June 2005 . FP-350 OPTICAL FAILSAFE & PROXIMITY CUE DETECTOR STRONG FP-350 Installation, Setup and Operation Manual PR016

More information

ANALOX SENSOR TECHNOLOGY LTD ANALOX DD1101 INSTALLATION & OPERATION MANUAL

ANALOX SENSOR TECHNOLOGY LTD ANALOX DD1101 INSTALLATION & OPERATION MANUAL ANALOX SENSOR TECHNOLOGY LTD ANALOX DD1101 INSTALLATION & OPERATION MANUAL SAFETY WARNING Please Refer to the Safety Warning in Section 7.1 regarding the chemicals in the oxygen sensor Analox Sensor Technology

More information

D3000. Installation & Setup Guide

D3000. Installation & Setup Guide Page 1 of 15 17483-00 Rev B s1 April 2009 Contents Description Page Safety... 3 Installation Standards 3 Specification. 3-4 Circuit Board Connection 5 Mounting Dimensions 6 Installation Procedure 6 Mechanical

More information

AMERITROL, INC. INSTALLATION OPERATION MANUAL AND WIRING DIAGRAM LX SERIES LIQUID LEVEL SWITCH WITH ADDITIONAL TEMPERATURE TRANSMITTER

AMERITROL, INC. INSTALLATION OPERATION MANUAL AND WIRING DIAGRAM LX SERIES LIQUID LEVEL SWITCH WITH ADDITIONAL TEMPERATURE TRANSMITTER AMERITROL, INC. INSTALLATION OPERATION MANUAL AND WIRING DIAGRAM LX SERIES LIQUID LEVEL SWITCH WITH ADDITIONAL TEMPERATURE TRANSMITTER Manual Number: LXTT-SPDT-2114-1-A 1185L Park Center Dr. Vista CA 92081

More information

EC Series Wall Unit Humidifier

EC Series Wall Unit Humidifier Read and Save These Instructions EC Series Wall Unit Humidifier Controller Operation Manual SEASONAL DRAIN SAFETY CIRCUIT OPEN POWER FILL VALVE OPEN WATER LEVEL FULL COOL DOWN CYCLE DRAIN VALVE OPEN HEATER

More information

ZIOU/230 - MAINS IO INSTRUCTION MANUAL

ZIOU/230 - MAINS IO INSTRUCTION MANUAL Description ZIOU/230 - MAINS IO INSTRUCTION MANUAL The Mains IO Modules are fully monitored loop powered devices which permit the interfacing of third party equipment with the Fire Alarm Control panel

More information

ELECTRONIC SOUNDER STROBE Model : AVD-C407

ELECTRONIC SOUNDER STROBE Model : AVD-C407 ELECTRONIC SOUNDER STROBE Model : AVD-C407 MULTRON range of combination Electronic Sounders with Strobe Lights are designed to complement our Fire Alarm products both technically and aesthetically as an

More information

A77 Series. Microprocessor Controlled SCR Filtered/Battery Eliminator Filtered Charger. Installation and Operation Manual

A77 Series. Microprocessor Controlled SCR Filtered/Battery Eliminator Filtered Charger. Installation and Operation Manual La Marche Manufacturing Company www.lamarchemfg.com A77 Series Microprocessor Controlled SCR Filtered/Battery Eliminator Filtered Charger Installation and Operation Manual This manual is subject to change

More information

This Manual is prepared for the use of trained Vulcan Service Technicians and should not be used by those not properly qualified.

This Manual is prepared for the use of trained Vulcan Service Technicians and should not be used by those not properly qualified. SERVICE MANUAL ERA & EBD SERIES ELECTRIC FRYERS WITH KLEENSCREEN PLUS FILTRATION SYSTEMS 2ER50AF KLEENSCREEN FRYER BATTERY MODEL ML MODEL ML 1ER50A 136730 2XER50AF 136747 1E50BD 136730 2XE50BDF 136747

More information

Safety Instructions MS 10B ALARM UNIT MS 10B ALARM UNIT. Used symbols. Always observe this information to prevent damage to the device

Safety Instructions MS 10B ALARM UNIT MS 10B ALARM UNIT. Used symbols. Always observe this information to prevent damage to the device Safety Instructions Used symbols Important Comments Before starting with installation of the MS 10B Alarm Unit, we recommend you to read the important information beneath. Qualification The installation

More information

MODEL SF-10 CONTROL OPERATION AND INSTRUCTION MANUAL

MODEL SF-10 CONTROL OPERATION AND INSTRUCTION MANUAL MODEL SF-10 CONTROL OPERATION AND INSTRUCTION MANUAL The SF-10 Temperature Control () is an efficient boiler operator with a digital LCD display with backlight, a boiler pump output, and an alarm. The

More information

Installation Guide for AL800UL-ADA. NAC Power Extender. Rev

Installation Guide for AL800UL-ADA. NAC Power Extender. Rev Installation Guide for AL800UL-ADA NAC Power Extender Rev. 090500 Overview: The Altronix AL800UL-ADA is an extremely cost effective 8 amps voltage regulated remote power supply /battery charger. The AL800UL-ADA

More information

FEC400 Series. Installation Manual

FEC400 Series. Installation Manual FEC400 Series Conventional microprocessor controlled fire detection and alarm panels with extinguishing control Installation Manual Version 2.3 / August 2004 Aritech is a GE Interlogix brand. http://www.geindustrial.com/ge-interlogix/emea

More information

EZY SWITCH. SMS-IRR-4 System Monitor Installation Manual

EZY SWITCH. SMS-IRR-4 System Monitor Installation Manual EZY SWITCH SMS-IRR-4 System Monitor Installation Manual Table of Contents COMMANDS Getting Started Setting Up Initial User 7 Adding a User 8 Removing a User 8 Adding an Administrator 8 Removing the Administrator

More information

SERVICE MANUAL FOR 6537 & 6538 SERIES TWO TON HIGH EFFICIENCY PACKAGED HEAT PUMPS

SERVICE MANUAL FOR 6537 & 6538 SERIES TWO TON HIGH EFFICIENCY PACKAGED HEAT PUMPS SERVICE MANUAL FOR 6537 & 6538 SERIES TWO TON HIGH EFFICIENCY PACKAGED HEAT PUMPS TABLE OF CONTENTS 1. Warnings.................................................................. 2 2. Accessibility Of Appliance....................................................

More information

ELECTRONIC HUMIDISTAT: H200

ELECTRONIC HUMIDISTAT: H200 ELECTRONIC HUMIDISTAT: H00 ONE OR TWO STAGES DESCRIPTION The H00 series low voltage, microcomputerbased PI (proportional and integral) humidistats are designed for accurate humidification and/or dehumidification

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

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

Beacon 200 Gas Monitor Operator s Manual. Part Number: RK Released: 6/6/08

Beacon 200 Gas Monitor Operator s Manual. Part Number: RK Released: 6/6/08 Beacon 200 Gas Monitor Operator s Manual Part Number: 71-2102RK Released: 6/6/08 Table of Contents Chapter 1: Introduction.................................................3 Overview.............................................................3

More information

TFD-1 Installation & User s Guide

TFD-1 Installation & User s Guide TFD-1 Installation & User s Guide TABLE OF CONTENTS CHAPTER 1 - INTRODUCTION... 4 1.1 GENERAL...4 1.2 DESCRIPTION...4 CHAPTER 2 - INSTALLATION... 5 2.1 UNPACKING...5 2.2 MOUNTING...5 2.3 SWITCH SETTINGS...6

More information

Instructions Oxygen Controller R8471C 2.1 8/

Instructions Oxygen Controller R8471C 2.1 8/ Instructions 95-8405 Oxygen Controller R8471C 8/07 95-8405 Table Of Contents Section I - General Information APPLICATION...1 FEATURES...1 DESCRIPTION...1 SPECIFICATIONS...2 Controller...2 C7052C O2 Detector...2

More information

M2500 Engine Controller Installation Manual

M2500 Engine Controller Installation Manual M2500 Engine Controller Installation Manual Revision: 23-04-2012 Page 1 Contents 1 Preface... 4 2 Installation... 5 3 Terminal Connections... 6 4 Inputs... 7 4.1 Power Supply... 7 4.2 Mode/ Control Inputs...

More information

DUAL MONITORED INPUT/OUTPUT UNIT BN-305-2

DUAL MONITORED INPUT/OUTPUT UNIT BN-305-2 DUAL MONITORED INPUT/OUTPUT UNIT BN-305-2 Interactive fire detection systems Product Datasheet Features Interactive For interfacing and controlling external units to Autronica s interactive fire detection

More information

AL802ULADA. NAC Power Extender. Installation Guide. (See Application Guide for additional information) Rev

AL802ULADA. NAC Power Extender. Installation Guide. (See Application Guide for additional information) Rev AL802ULADA NAC Power Extender Installation Guide (See Application Guide for additional information) Rev. 031703 Overview: The Altronix AL802ULADA is an extremely cost effective 8 amp voltage regulated

More information

HOKKIM INTEGRATED AMF CONTROL BOARD MANUAL FOR MODELS: HAMF-8 AND HAMF-4

HOKKIM INTEGRATED AMF CONTROL BOARD MANUAL FOR MODELS: HAMF-8 AND HAMF-4 HOKKIM INTEGRATED AMF CONTROL BOARD MANUAL FOR MODELS: HAMF-8 AND HAMF-4 INTRODUCTION Thank you for purchasing the Hokkim Integrated Automatic Mains Failure Control Board model HAMF- 8 or HAMF-4. We shall

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

AL800ULADA. NAC Power Extender. Installation Guide

AL800ULADA. NAC Power Extender. Installation Guide AL800ULADA NAC Power Extender Installation Guide Rev. 122000 AL800ULADA - NAC Power Extender Overview: The Altronix AL800ULADA is an extremely cost effective 8 amp voltage regulated remote power supply/battery

More information

STATUS ALARM ALARM HISTORY POWER HISTORY RESET

STATUS ALARM ALARM HISTORY POWER HISTORY RESET Instruction Manual Model 1582-70L2 RF Switch June 2011, Rev. D CH1 AUTO CH2 SWITCH 1 2 1 2 STATUS 1 2 MODEL 1582 SWITCH CROSS TECHNOLOGIES INC. CH1 ONLINE MANUAL SELECT CH2 SWITCH MANUAL REMOTE ONLINE

More information

Pump-Down Controller MODEL 4052

Pump-Down Controller MODEL 4052 Pump-Down 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 4052 Pump-Down

More information

21-light Remote Annunciator. Owner s Manual

21-light Remote Annunciator. Owner s Manual 21-light Remote Annunciator Owner s Manual Annunciator Description... Inside Font Cover Detailed Specifications... 1 Environmental Specifications... 1 Power Supply Requirements... 1 Communication With

More information

Liquid Helium Level Instruments

Liquid Helium Level Instruments Liquid Helium Level Instruments Versatile Reliable Affordable AMI American Magnetics, Inc. Excellence in Magnetics and Cryogenics Model 135 Liquid Helium Level Monitor... Sample-and-Hold Level Sensing

More information

2-wire Passive Intelligent Loop (LED) Display Meter

2-wire Passive Intelligent Loop (LED) Display Meter Features Two-wire passive intelligent loop current (LED) digital meter 2-wire Passive Intelligent Loop (LED) Display Meter Embedded 2-wire Passive Programmable 4-20mA Loop (Four Digits LED) Display Meter

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

Model 17A00 Expansion Enclosure

Model 17A00 Expansion Enclosure HOME AUTOMATION, INC. Model 17A00 Expansion Enclosure Installation Manual Document Number 17I00-1 Rev A March, 2002 Home Automation, Inc. Model 17A00 Expansion Enclosure Installation Manual Document Number

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

ACCURATE ELECTRONICS INC PO BOX SW HALL BLVD BEAVERTON OR USA FAX

ACCURATE ELECTRONICS INC PO BOX SW HALL BLVD BEAVERTON OR USA FAX Page 1 of 10 Model 10807800 January 2014 ACCURATE ELECTRONICS INC PO BOX 1654 97075-1654 8687 SW HALL BLVD 97008 BEAVERTON OR USA 503.641.0118 FAX 503.646.3903 WWW.ACCURATE.ORG Practice Section 10807800

More information

CAUTION & SYMBOL DEFINITIONS:

CAUTION & SYMBOL DEFINITIONS: 1441 Rice Street, St. Paul, MN 55117-3899 USA Phone (651) 487-8844 Fax (651) 487-8857 info@coolairinc.com www.coolairinc.com CAUTION & SYMBOL DEFINITIONS: LBW-50 SPECIFICATIONS (cont d) CAUTION: Gives

More information

RPSMLR2 RPSMLR2BB. Panic Device Power Controller Installation Guide LISTED. Rev

RPSMLR2 RPSMLR2BB. Panic Device Power Controller Installation Guide LISTED. Rev RPSMLR2 RPSMLR2BB Panic Device Power Controller Installation Guide LISTED Rev. 102715 Overview: RPSMLR2BB, RPSMLR2 will operate up to two (2) 24VDC panic hardware devices simultaneously. It is designed

More information

Instructions R8471J Gas Controller for use with Model OPECL Open Path Eclipse IR Gas Detector 1.1 1/

Instructions R8471J Gas Controller for use with Model OPECL Open Path Eclipse IR Gas Detector 1.1 1/ Instructions R8471J Gas Controller for use with Model OPECL Open Path Eclipse IR Gas Detector 1.1 1/08 Table Of Contents Section I Installation and Startup.................. 1 INSTALLATION............................................

More information

User's Manual: Series 260A Model 260A Process Current Loop-Powered Alarm

User's Manual: Series 260A Model 260A Process Current Loop-Powered Alarm User's Manual: Series 260A Model 260A Process Current Loop-Powered Alarm Table of Contents Page Introduction 1 Description 1 Specifications 2 Installation 3 Calibration 4 General Maintenance 5 List of

More information

FIREFLY II PLUS RELEASE DEVICES INSTALLATION MANUAL

FIREFLY II PLUS RELEASE DEVICES INSTALLATION MANUAL FIREFLY II PLUS RELEASE DEVICES INSTALLATION MANUAL MADE IN THE U.S.A. U.L. LISTED CANADIAN LISTED CSFM: 7300-1418:100 GENERAL DESCRIPTION SERIAL NUMBER The Cookson Company FIREFLY II PLUS Time Delay Release

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

TCI-W-U Series Wall Mounted Controller Installation and Operation Manual IOM-525

TCI-W-U Series Wall Mounted Controller Installation and Operation Manual IOM-525 TCI-W-U Series Wall Mounted Controller Installation and Operation Manual IOM-525 Installation and Set Up Overview Features...3 Duct Application...4 Room Application...5 Wiring Schematics...6-12 Operation...13-14

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

Sierra Series 900 Single & Dual Channel System. Instruction Manual

Sierra Series 900 Single & Dual Channel System. Instruction Manual Series 240/24 Instruction Manual Table of Contents Sierra Series 900 Single & Dual Channel System Instruction Manual Part Number IM-90-07/05 Revision D. 5 Harris Court, Building L Monterey, CA 93940 (83)

More information

STATUS ALARM ALARM HISTORY POWER HISTORY RESET

STATUS ALARM ALARM HISTORY POWER HISTORY RESET Instruction Manual Model 1582-152 RF Protection Switch November 2009, Rev B. CH1 AUTO CH2 SWITCH 1 2 1 2 STATUS 1 2 MODEL 1582 SWITCH CROSS TECHNOLOGIES INC. CH1 ONLINE MANUAL SELECT CH2 SWITCH MANUAL

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

Instruction Manual PCS-400-XY. Pump Controller. Y=2: 4-20 ma Y=6: 0-10 VDC X=5: 1-5 VDC. 4 Pump Control Relays 1 Alarm Relay 1 Signal Fail

Instruction Manual PCS-400-XY. Pump Controller. Y=2: 4-20 ma Y=6: 0-10 VDC X=5: 1-5 VDC. 4 Pump Control Relays 1 Alarm Relay 1 Signal Fail Manufacturers of Process Controls and Instrumentation Instruction Manual Model: Function: Input: PCS-400-XY Pump Controller X=2: 4-20 ma X=5: 1-5 VDC X=6: 0-10 VDC X=7: Output: Power: 4 Pump Control Relays

More information

Application and Installation Bulletin for Master-Bilt Refrigeration Superheat Controller Kit Assembly(A ), 120/208/240/1/60, R404A, LT/MT APPS

Application and Installation Bulletin for Master-Bilt Refrigeration Superheat Controller Kit Assembly(A ), 120/208/240/1/60, R404A, LT/MT APPS Application and Installation Bulletin for Master-Bilt Refrigeration Superheat Controller Kit Assembly(A900-22007), 120/208/240/1/60, R404A, LT/MT APPS Introduction The superheat controller is designed

More information

Instruction Manual Model L2 RF Switch

Instruction Manual Model L2 RF Switch Instruction Manual Model 1582-22L2 RF Switch November 2015, Rev. A CH1 AUTO CH2 SWITCH 1 2 1 2 STATUS 1 2 MODEL 1582 SWITCH CROSS TECHNOLOGIES INC. CH1 ONLINE MANUAL SELECT CH2 SWITCH MANUAL REMOTE ONLINE

More information

GENERAL STANDARD FEATURES. ISO-9001 Engineering and Manufacturing Quality System Certified to International Standard ISO-9001 PATENT PENDING

GENERAL STANDARD FEATURES. ISO-9001 Engineering and Manufacturing Quality System Certified to International Standard ISO-9001 PATENT PENDING GENERAL The VEC 25/50 is a state-of-the-art, compact, stand-alone or slave Emergency Voice Evacuation Control. The VEC 25/50 is offered in a self-contained, cost-effective design and includes a 25 Watt,

More information

Duct Humidity and Temperature Transmitter. Features. IP65 protection. Ordering

Duct Humidity and Temperature Transmitter. Features. IP65 protection. Ordering Duct Humidity and Temperature Transmitter DHT Apr. 17 Features Humidity and Temperature outputs in same unit Humidity output 0-10 Vdc or 4-20 ma Temperature output 0-10 Vdc or 4-20 ma As option passive

More information

DSGH. Radiation-Based Detector with GEN2000 Electronics for Density Measurement QUICK REFERENCE GUIDE

DSGH. Radiation-Based Detector with GEN2000 Electronics for Density Measurement QUICK REFERENCE GUIDE DSGH Radiation-Based Detector with GEN2000 Electronics for Density Measurement QUICK REFERENCE GUIDE Revision History Revision History Version of manual Description Date 1.0 Initial release 051025 1.1

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

La Marche Manufacturing Company Option 16 Series. Digital Combined Accessory Package. Installation and Operation Manual

La Marche Manufacturing Company   Option 16 Series. Digital Combined Accessory Package. Installation and Operation Manual La Marche Manufacturing Company www.lamarchemfg.com Option 16 Series Digital Combined Accessory Package Installation and Operation Manual This manual is subject to change without notice. You may obtain

More information