Dishwasher Load-Unload Indicator. Jitendra Tailor

Size: px
Start display at page:

Download "Dishwasher Load-Unload Indicator. Jitendra Tailor"

Transcription

1 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 4.65 minutes, which closely approximates the longest time it takes my family to unload clean dishes. If you can empty your dishwasher faster, then decrease the time by decreasing the i<65 value in the statement for(int i=0; i<65; i++). If you need a longer time, increase this value. Each pass through this loop takes 4.3 seconds, so you can calculate a delay time, or given a time, calculate the value needed for variable i. When the dishwasher door stays open--and the tilt switch stays open circuit--for more than 4.65 minutes, the red LED will start to start blink, indicating the dishwasher is empty. If someone opens the door for a minute or two to take out several dishes, the green LED will continue to blink so others know the dishwasher is still contains clean dishes. The LEDs blink only when someone approaches the dishwasher. Note: My project used a tilt switch with elemental mercury because I had one handy. This project includes a mercury-free mechanical tilt switch that will work equally well. Build Instructions Build the circuit shown in the schematic diagram (Figure 1) on a piece of perforated breadboard material.

2 Figure 1. Schematic diagram of the dishwasher circuit. For a list of components, see the Bill of Materials for this project. I prefer Veroboard, which you can purchase from several suppliers at amazon.com. Veroboard provides copper traces you use as conductors. By cutting traces you create stand-alone conductors for power and signals. You will find more information about how to use Veroboard on the Internet. Figure 2 shows the arrangement of components for my circuit.

3 Figure 2. This photograph shows the arrangement of components on a piece of prototyping board for the main-circuit module that mounts inside the dishwasher's lower section that houses the motor, pump, and hot-water inlet.

4 To simplify programming I recommend you use an 8-pin socket for the ATtiny-85 microcontroller (MCU) chip rather than solder the chip on the breadboard. I used a 10- pin male connector along one edge of the board to make it easy to test and service. You can solder wires directly to the breadboard if you choose, or use a suitable connector. Use stranded hook-up wire for off-board connections so cables have flexibility. The controller will operate inside the dishwasher enclosure and the remaining components will attach to the front kickplate. Mount the breadboard circuit board in a plastic enclosure with a metal lid. The sensing resistor attaches to the inside of the lid and a bit of heatsink compound between the lid and the resistor ensures good heat transfer between the two (see Figure 2). After you build the circuit and have the motion sensor, tilt switch and the indicators mounted and connected to the controller with long wires, you can program the ATtiny-85 MCU chip. You must use an Arduino UNO board as the MCU programmer. The following link provides information about how to perform the programming steps. It might help to print these instructions. You also need the stand-alone compiler for the Arduino, which you can download from the official Arduino Web site at: If you have not used an Auduino UNO board before, try some of the simple examples posted on the Arduino site. When you are ready to program the ATtiny 85 MCU, open the program listing for this gadget and copy the program listing. Next, go to the Arduino compiler editing window and clear it. You don't want bits and pieces of any test or example programs left in this editing window. Then, paste the copied code into the blank editing window and follow the programming steps at the link provided earlier. Before you program the ATtiny-85 MCU with the final program, follow the software-test instructions that follow. Software Tests For easy and quick testing, you will change several program commands to shorten delay loops so you can observe circuit and software actions. I recommend you print a copy of the program and mark your changes so you can go back and reset them to the original values, or you can simply reload the original program. (For the sake of clarity, I have reformatted or abbreviated comments in the code that follows.) Find the void loop () command block and make changes as noted below: delay( ); //After 60 minutes of the hot water run...

5 1. The delay( ); statement creates a 60-minute (1-hour) delay, where 1000 = 1 sec. For testing, change this delay to one minutes (1000 x 60 = 60000). 2. MCU operations in the loop, for(int i=0; i<65; i++), determine how long the dishwasher door must remain open (tilt-switch now open circuit) before the program determines the dishwasher was emptied, and the red LED starts to blink. for(int i=0; i<65; i++) //After dishwasher door is opened for longer than //set time (65x4300=4.65) minutes as the red and // green LED blinking time is 4300 sec. in // total), the Red LED blinks. Change the statement to decrease the delay to just over one second: for(int i=0; i<15; i++) Instead of 65 x 4300 = 4.65 minutes, 15 x 4300 = minutes. Or choose your own delay period. After you program the ATtiny-85 MCU with the changes noted in this section for testing, carefully insert the MCU IC into the 8-pin socket. Ensure you have the MCU properly positioned so pin 1 on the chip goes into pin 1 on the socket. In this circuit, pin-1 on the socket does not get used and does not connect to any signal. Keep the control box, tiltswitch, proximity sensor, and LEDs on your workbench. Hold the tilt switch in a position that closes its contacts. In the system tests that follow, you will apply power and check the controller's operation. To simulate hot water in the hose, use a hot-air hair dryer to heat the enclosure lid, and thus the temperature sensor underneath. Apply heat slowly. System Tests Now, when you power the unit, you should see the red LED blink. Place the tilt switch so it connects its two contacts (closed circuit). Apply heat to the heat sensor portion of the metal case top, one minute later the green LED will start to blink. You can check the motion sensor by moving your hand in front of the sensor eye at any time. You will see the green LED continue to blink for as long as you donʼt cause the tilt switch to open its contacts. Next, change the position of the tilt switch so its contacts become "open circuit," and keep it in that position for at least 30 seconds. Then re-orient the tilt switch so its contacts close. Within the set test time (1.075 minutes), you will still see the green LED blink. As soon as you leave the tilt switch in the open-circuit position for longer than

6 1.075 minutes, the red LED will start to blink. This is how you know that your gadget works properly. When you determine that the circuit and MCU software work properly, remove the MCU from its socket on the controller board. Change the statements in the program to their pre-testing form, or reload the original program and proceed to program the compiled code into your ATtiny MCU. Reprogram the MCU with the original unmodified code and replace the MCU in its socket on the controller board. Mounting Instructions With the prototype board in the plastic enclosure (the control box), close the aluminum lid with the temperature sensor on the inside side of the lid, and screw it tightly to the plastic case. Do not crimp the connections between the breadboard and the temperature-sensing resistor attached to the inside of the metal lid. The resistor should attach firmly to the metal lid, which in turn will press against the hot-water inlet hose as shown in Figure 3. You can use cable ties to secure the plastic case to this hose. The resistor will detect heat from hot water that flows into the dishwasher. Figure 3. The metal cover of the case that holds the control circuit must make physical contact with the hot-water inlet. The microcontroller measures the temperature via a variable-resistance sensor.

7 When the controller operates properly, you can attach the components to the dishwasher. The tilt switch (Figure 4) attaches to the dishwasher door to detect when someone opens it. I used long wires on the tilt switch to easily connect it to the control box. Then I inserted the tilt switch in a short piece of plastic tubing and sealed both ends of the tube with epoxy cement. Attach the tilt switch with double-sided tape behind the door. Make sure the tilt switch is straight side up when the door is closed, so the switch contacts provide a closed circuit. Figure 4. The tilt switch attaches to an internal part of the door that moves from vertical when closed to horizontal when open. The tilt switch should change to open circuit when you have the door completely open. You can mount the red and green LEDs either through the bottom kick plate or place them in a small plastic box and attach the box to the front of the dishwasher, as shown in Figure 5. Route the proximity-sensor and LED wires out of the bottom plate of the dishwasher. Close or replace the dishwasher's bottom kick plate and secure it in place, but not tight enough to crimp the wires for the proximity sensor and the LEDs.

8 You can use double-sided tape to hold the proximity sensor and the LEDs on the kick plate. Position the LEDs to reflect off the floor so people can easily see them when they light up. Position the proximity detector so it "sees" when someone walks near the dishwasher. Figure 5. Mounting positions of LEDs and infrared proximity sensor on the outside of the diskwasher's kick plate. The control box is not attached to the hot-water inlet in this photograph. The control circuit needs a 5-volt power supply such as the plug-in wall adapter listed in the bill of materials. You can use a standard extension cord to provide mains power to the adapter (Figure 6). In homes that have an in-sink disposer you might find a wall outlet under the sink. If you do not have this type of nearby outlet, you can cut off the male end of the extension cord and connect the extension-cord wires to the dishwasher power in the dishwasher junction box. If you must make this type of connection, check your local building and electrical codes. Your local building inspectors can suggest a way to make an approved electrical connection to a dishwasher's internal junction box. ALWAYS turn off power when you work with a mains-power circuit.

9 Figure 6. I used a plug-in wall-adapter power cube to power the dishwasher indicator circuit. The "cube" connects to mains power through an extension cord and a wall outlet. Check local building codes for permissible connections to mains power. Now turn on mains power to the dishwasher, or plug in the wall-adapter extension code and test your Load unload dishwasher Indicator. If it worked on the workbench, it should work with your dishwasher too end-----

10 Jitendra Tailor Dishwasher Indicator Page 1 of 3 //Source Code for dishwasher indicator: int sensorpin = 2; // select Pin# 3 of ATiny85 for the analog input OR sensor int digital_1 = 3; // select Pin#2 of ATiny85 for digital input 1 or tilt switch int ledred = 1; // select pin#6 of ATiny85 for the RED LED int ledgreen = 0; // select pin#6 of ATiny85 for the Green LED void setup() pinmode(sensorpin, INPUT); pinmode(digital_1, INPUT); pinmode(ledred, OUTPUT); pinmode(ledgreen, OUTPUT); digitalwrite(digital_1, HIGH); // Pull up internal resistor void loop() int value = digitalread(digital_1); int sensorreading = analogread(sensorpin); if(sensorreading <=450 ) //Thermal sensor input voltage > 2.2 vdc (Hot water hose sensor //1000/450=2.2V) Initially the dishwasher is in normal stage. //The Digital input is short to GND by tilt switch. //The Red Led will flash, indicating the dishes are dirty. //Off Green LED indicating the Dishes are not cleaned yet. delay( ); //After 60 minutes of the hot water run through the hose OR the sensor //voltage goes down to < 2.0 vdc.(time can be changed according to //your dishwasher cycle timing) the green LED start flashing digitalwrite(ledgreen, LOW); // Cleaned dish LED blinking 5 times as the code at the end of this page. digitalwrite(ledred, HIGH); // Dirty dish indicator RED led turned off while(value==low) for(int i=0; i<65; i++) //After dishwasher door is opened for longer then set time (65x4300=4.65 //minutes as the red and green LED blinking time is 4300 sec. in total), //the Red LED blinks. greenled(); value = digitalread(digital_1); // Micro sees the digital input short to the GND by the tilt switch

11 Jitendra Tailor Dishwasher Indicator Page 2 of 3 else redled(); void redled() digitalwrite(ledred, LOW); digitalwrite(ledred, HIGH); digitalwrite(ledred, LOW); digitalwrite(ledred, HIGH); delay(2000); void greenled() digitalwrite(ledgreen, LOW); digitalwrite(ledgreen, LOW); digitalwrite(ledgreen, LOW); //attached to the door. //If Any of above is not true, then do this. //By opening the dishwasher door, Tilt switch opens the short to //GND (Indicates the dishwasher is emptied) //Blinking Red LED indicates the Dishwasher is ready to be load. //Blinking Red LED indicates the Dishwasher is ready to be load. //After the hot water starts running through the hose,the dish cleaned //LED Green start blinking. (This action will be in effect after an hour // or so) //0.1 seconds delay time between rapid blinking. //After the hot water starts running through the hose,the dish cleaned //LED Green start blinking. (This action will be in effect after an hour // or so) //0.1 seconds delay time between rapid blinking. //After the hot water starts running through the hose,the dish cleaned //LED Green start blinking. (This action will be in effect after an hour // or so)

12 Jitendra Tailor Dishwasher Indicator Page 3 of 3 digitalwrite(ledgreen, LOW); digitalwrite(ledgreen, LOW); delay(1000); //0.1 seconds delay time between rapid blinking. //0.1 seconds delay time between rapid blinking. //After the hot water starts running through the hose,the dish cleaned //LED Green start blinking. (This action will be in effect after an hour // or so) //0.1 seconds delay time between rapid blinking. //After the hot water starts running through the hose,the dish cleaned //LED Green start blinking. (This action will be in effect after an hour // or so) //0.1 seconds delay time between rapid blinking. //1 seconds delay time between rapid blinking. //----end of program---

Installation Instructions. For the 18 Built-In Dishwasher and Front Color Panels

Installation Instructions. For the 18 Built-In Dishwasher and Front Color Panels Installation Instructions For the 18 Built-In Dishwasher and Front Color Panels Printed in USA 154232102 Before You Begin DO NOT INSTALL DISHWASHER UNTIL YOU HAVE READ ALL INSTRUCTIONS. FOR YOUR SAFETY,

More information

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

Project Description. The design details and parameters: Are as follows: 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

More information

Open Source Home Security System

Open Source Home Security System Open Source Home Security System Final Report ECE 410: Senior Project By: Allen Chu March 28, 2012 Project Advisor: Dr. John Ventura, PE Table of Contents Title 1 Table of Contents 2 1. Abstract 3 2. Customer

More information

Installation Instructions Azatrax Dual Infrared Model Train Detector MRD2 'Turnout' Edition

Installation Instructions Azatrax Dual Infrared Model Train Detector MRD2 'Turnout' Edition Installation Instructions Azatrax Dual Infrared Model Train Detector MRD2 'Turnout' Edition What it is: The MRD2 'turnout' edition is a two-channel model train detector. It can detect model trains at two

More information

Product Manual. TZ Analog Sensors. TZ Sensors 8115CF 8116CF 8117CF 8118CF. Date: January 2015 Document Number: _B

Product Manual. TZ Analog Sensors. TZ Sensors 8115CF 8116CF 8117CF 8118CF. Date: January 2015 Document Number: _B Product Manual Date: January 2015 Document Number: 112409-01_B About TZ Telezygology, Inc. (TZ) is a wholly owned subsidiary of publicly listed intellectual property and technology development company

More information

Azatrax Quad Infrared Proximity Detector Shield for ArduinoTM Uno, Mega and compatibles

Azatrax Quad Infrared Proximity Detector Shield for ArduinoTM Uno, Mega and compatibles User's Guide Azatrax Quad Infrared Proximity Detector Shield for ArduinoTM Uno, Mega and compatibles RIR4 What it is: The RIR4 has four infrared (IR) proximity detectors assembled on a circuit board with

More information

INSTALLATION INSTRUCTIONS UNDERCOUNTER DISHWASHERS

INSTALLATION INSTRUCTIONS UNDERCOUNTER DISHWASHERS INSTALLATION INSTRUCTIONS UNDERCOUNTER DISHWASHERS VIKING 111 Front Street Greenwood, Mississippi 38930 USA (662) 455-1200 IMPORTANT - PLEASE READ AND FOLLOW Before beginning - please read these instructions

More information

Installation Instructions

Installation Instructions Installation Instructions For the 18" Built-In Dishwasher Sears, Roebuck and Co. Sears Canada, Inc. Hoffman Estates, IL 60179 U.S.A. Toronto, Ontario, Canada M5B 2B8 154435201 Before You Begin DO NOT INSTALL

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

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

Redneck Air Conditioner

Redneck Air Conditioner Redneck Air Conditioner I have been somewhat successful in gleaning information from multiple sources and have put together a portable 12 volt and ice powered air conditioner. In an effort to give back,

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

Helpful Tip: NOTE:

Helpful Tip: NOTE: Grounded electrical supply required. Do not run drain lines, water lines or electrical wiring where they can interfere with or contact dishwasher motor or legs. The location where the dishwasher will be

More information

Technical Manual. VFD / Cabinet Heater Upgrade 110 VAC Heater to 12 VDC Heater. Provided by: Chart Inc.

Technical Manual. VFD / Cabinet Heater Upgrade 110 VAC Heater to 12 VDC Heater. Provided by: Chart Inc. Technical Manual VFD / Cabinet Heater Upgrade 110 VAC Heater to 12 VDC Heater Provided by: Chart Inc. 407 7th Street NW New Prague, MN 56071 USA (800) 400-4683 Part Number 20977233 Rev. A 2016 Chart Inc.

More information

Network based smoke alarm - using Arduino and iphone

Network based smoke alarm - using Arduino and iphone Network based smoke alarm - using Arduino and iphone 1 of 12 Introduction How cool would it not be to check the status of your smoke alarm through an mobile app over Internet?! I would say very cool and

More information

Installation Instructions

Installation Instructions GE Consumer & Industrial Appliances Installation Instructions Junction Box Cover Within this user bag, you will find a junction box cover and a #10 hex head screw used to attach the junction box cover

More information

Passive infrared ceiling sensor

Passive infrared ceiling sensor Passive infrared ceiling sensor 88 Description Control and command device, powered by the SCS BUS, with two different sensors, the combination of which enables managing the light level inside the room,

More information

SAVE THESE INSTRUCTIONS

SAVE THESE INSTRUCTIONS Built-In Dishwasher Dishwashers Write the model and serial numbers here: Model # Serial # You can find them on the tub wall just inside the door or. the lower part of back. Installation Instructions DDW1802W

More information

D-TECT 3 IP. GJD260 IP Motion Detector

D-TECT 3 IP. GJD260 IP Motion Detector D-TECT 3 IP GJD260 IP Motion Detector PACKAGE CONTENTS 1 x D-TECT 3 IP 1 x Drilling template for fixing holes 3 x 31.75mm wall plugs 3 x 31.75mm screws 2 x Spare sliding curtains 2 x Tamper feet 1 x Tamper

More information

IMPORTANT INFORMATION. Revised Dishwasher Installation Instructions

IMPORTANT INFORMATION. Revised Dishwasher Installation Instructions IMPORTANT INFORMATION Revised Dishwasher Installation Instructions To obtain a revised copy of the entire Dishwasher User s Manual, go to www.eurotechappliances.com. SPECIAL EDITION 11-20-02 SAVE THESE

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

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

Installation Instructions

Installation Instructions Installation Instructions Built-In Dishwasher If you have questions, call 800-944-9400(US),800-245-8352(Canada)or visit our website at: www.frigidaire.com BEFORE YOU BEGIN Read these instructions completely

More information

Ontech GSM 9040/50. Reference Manual English -1 -

Ontech GSM 9040/50. Reference Manual English -1 - Ontech GSM 9040/50 Reference Manual English -1 - Content Welcome... 5 This manual... 5 Text styles... 5 Support... 5 Disclaimer... 5 Overview... 6 Accessories... 6 External temperature sensor 9901... 7

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

A BLUETOOTH-BASED HOME ALARM SYSTEM STATUS EXTENDER

A BLUETOOTH-BASED HOME ALARM SYSTEM STATUS EXTENDER A BLUETOOTH-BASED HOME ALARM SYSTEM STATUS EXTENDER Joel P. Clouse Technical Advisor - Hal Broberg ECET 491 Senior Design Phase II Prof. Paul I-Hai Lin Friday December 8 th 2017 PRESENTATION OUTLINE Abstract

More information

A Wireless, General Purpose Tamper Detection System with Mobile User Notifications

A Wireless, General Purpose Tamper Detection System with Mobile User Notifications A Wireless, General Purpose Tamper Detection System with Mobile User Notifications Group Members: Group number: 7 Leaphar Castro: BSEE Daniel Gibney: BSCpE Aiman Salih: BSEE Motivation: There are plenty

More information

Built-In Dishwasher. Installation Instructions. BEFORE YOU BEGIN Read these instructions completely and carefully. IMPORTANT The dishwasher MUST be

Built-In Dishwasher. Installation Instructions. BEFORE YOU BEGIN Read these instructions completely and carefully. IMPORTANT The dishwasher MUST be Installation Instructions Built-In Dishwasher If you have questions, call 800.GE.CARES (800.432.2737) or visit our website at: www.ge.com BEFORE YOU BEGIN Read these instructions completely and carefully.

More information

Installation Instructions

Installation Instructions GE Consumer & Industrial Appliances Installation Instructions Junction Box Cover Within this user bag, you will find a junction box cover and a #10 hex head screw used to attach the junction box cover

More information

Installation & Operating Guide

Installation & Operating Guide HOT WATER DISPENSER Installation & Operating Guide Read all instructions thoroughly. Keep this guide for future reference. Proof of purchase is required for Warranty. Staple receipt or proof of purchase

More information

Installation instructions Built-in. Dishwasher READCAREFUL KEEPTHESE INSTRUCTIONS. Model(s): DDW2405BL. IMPORTANT: The dishwasher MUST be installed to

Installation instructions Built-in. Dishwasher READCAREFUL KEEPTHESE INSTRUCTIONS. Model(s): DDW2405BL. IMPORTANT: The dishwasher MUST be installed to Installation instructions Built-in Model(s): DDW2405W Dishwasher DDW2405BL DW2406BLS BEFORE YOU BEGIN: Read these instructions completely and carefully. IMPORTANT: The dishwasher MUST be installed to allow

More information

Dishwasher Installation Instructions DW 24XT/DW 24XV

Dishwasher Installation Instructions DW 24XT/DW 24XV Dishwasher Installation Instructions DW 24XT/DW 24XV Installation Instructions Dishwasher BEFORE YOU BEGIN Read these instructions completely and carefully. IMPORTANT Observe all governing codes and ordinances.

More information

D-TECT 2 IP. GJD230 IP Motion Detector

D-TECT 2 IP. GJD230 IP Motion Detector D-TECT 2 IP GJD230 IP Motion Detector PACKAGE CONTENTS 1 x D-TECT 2 IP 1 x Drilling template for fixing holes 3 x 31.75mm wall plugs 3 x 31.75mm screws 2 x Spare sliding curtains 2 x Tamper feet 1 x Tamper

More information

Pakton Technologies Pty Ltd ABN Ferrier Road, Narangba Qld 4504

Pakton Technologies Pty Ltd ABN Ferrier Road, Narangba Qld 4504 Remote Monitor PTE0700 SECURITY ELECTRONICS User Manual PTE0700 V2 Series Remote Monitor Pakton Technologies Pty Ltd ABN 66 405 694 842 16 Ferrier Road, Narangba Qld 4504 PO Box 408, Narangba QLD 4504

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

DEMA SOLID PRODUCT LAUNDRY MASTER TM MODEL: 581L-1W and 581L-2W INSTALLATION INSTRUCTIONS

DEMA SOLID PRODUCT LAUNDRY MASTER TM MODEL: 581L-1W and 581L-2W INSTALLATION INSTRUCTIONS Included Parts: A. 581.1 Solid Bowl B. 58.1LA Vacuum Breaker C. 58.6 Stainless Steel Supply Tube D. 58.29 90º Compression Fitting E. 58.24 Straight Compression Fitting F. 58.7 Vinyl Discharge Tube G. 66.123

More information

QUICKFIT INSTALL HOOK-UP SHEET FOR ESL KIT REV 1.17 OP

QUICKFIT INSTALL HOOK-UP SHEET FOR ESL KIT REV 1.17 OP QUICKFIT INSTALL HOOK-UP SHEET FOR ESL KIT REV 1.17 OP PROGRAMMING STARTS Entering Installer mode If you want to get into program mode press followed by your installer code, default set to 000000

More information

SEC 2000 Millenium Infrared Gas Detector

SEC 2000 Millenium Infrared Gas Detector SEC 2000 Millenium Infrared Gas Detector Instruction and Operation Manual Sensor Electronics Corporation 5500 Lincoln Drive Minneapolis, Minnesota 55436 USA (952) 938-9486 Fax (952) 938-9617 Email: sales@sensorelectronic.com

More information

Chilipepper CP9000. Installation Instructions READ BEFORE INSTALLING:

Chilipepper CP9000. Installation Instructions READ BEFORE INSTALLING: Chilipepper CP9000 Installation Instructions READ BEFORE INSTALLING: * The Chilipepper is not designed to be connected with rigid piping like copper or galvanized pipes. *Flexible hoses MUST be used. *

More information

Installation GUIDE VDWU524SS VDWU524WSSS FDWU524WS FDWU524 VDWU324SS FDWU324

Installation GUIDE VDWU524SS VDWU524WSSS FDWU524WS FDWU524 VDWU324SS FDWU324 Installation GUIDE VDWU524SS VDWU524WSSS FDWU524WS FDWU524 VDWU324SS FDWU324 To prevent accidents, which could cause serious injury or death, as well as machine damage read these instructions before installation

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

Chilipepper CP8000. Installation Instructions READ BEFORE INSTALLING:

Chilipepper CP8000. Installation Instructions READ BEFORE INSTALLING: Chilipepper CP8000 Installation Instructions READ BEFORE INSTALLING: * The Chilipepper is not designed to be connected with rigid piping like copper or galvanized pipes. *Flexible hoses MUST be used. *

More information

Sensor Evaluation Kit, SEK001

Sensor Evaluation Kit, SEK001 For Use with TruStability RSC Series and Digital Output Versions of the HSC Series and SSC Series Board Mount Pressure Sensors 32330034 Issue A Datasheet FEATURES The SEK001 has sockets to receive TruStability

More information

Installation Instructions

Installation Instructions Installation Instructions SELECTRONIC Hard-Wired AC Powered ICU Lavatory Proximity Faucet PRODUCT NUMBER 0. Certified to comply with ASME A..M 0 American Standard M 0. ICU Faucet shown Installed on American

More information

PSC-BL-I-FM-DC0(-BLE) Bi-level Dimming PIR Sensor

PSC-BL-I-FM-DC0(-BLE) Bi-level Dimming PIR Sensor TECHNICAL SPECIFICATIONS PSC-BL-I-FM-DC0(-BLE) Bi-level Dimming PIR Sensor Overview Quad Element PIR sensor 0-10V configurable output: set to 0% (OFF)*, 10%, 25% or 50% dimming Photocell for ambient light

More information

Installation Instructions Built-In Dishwasher

Installation Instructions Built-In Dishwasher RINSE CHINA CRYSTAL SPEED CYCLE NORMAL WASH COOK WARE SELECTIONS ANTI BACTERIA START RESET ENHANCEMENTS DELAY HOURS ADDED HEAT PRE WASH HEATED DRY TO LOCK CONTROLS PRESS HEATED DRY FOR 3 SECONDS GE Consumer

More information

Duct and Rough Service Carbon Monoxide Sensor

Duct and Rough Service Carbon Monoxide Sensor Product Identification and Overview Duct and Rough Service Carbon Monoxide Sensor BAPI s Carbon Monoxide Sensor offers enhanced electrochemical sensing with outstanding accuracy at low concentrations.

More information

MD12-2 Vehicle Loop Detector

MD12-2 Vehicle Loop Detector MD12-2 Vehicle Loop Detector Features Supply 12VDC Adjustable sensitivity (8 levels via dip switch) 2 x Relay outputs (each can be configured individually) Power up and loop activation LED indicator. Industry

More information

I make no guarantee(s) about this project and am not liable for any issues that may arise from the information provided here.

I make no guarantee(s) about this project and am not liable for any issues that may arise from the information provided here. Garage Monitor Disclaimer: I make no guarantee(s) about this project and am not liable for any issues that may arise from the information provided here. About: This project is highly influenced by the

More information

General System Layout Sketch

General System Layout Sketch General System Layout Sketch EZ-37 Solar Panels PV panel Can use Standard Copper, CPVC or PEX Pipes Pump Existing Water Heater Bottom Feed Connector 1 Introduction This document describes how to install

More information

DISHWASHER. Models DW2432 and DW2432SS. Installation Manual. Write Serial Number (on inner door of unit) here:

DISHWASHER. Models DW2432 and DW2432SS. Installation Manual. Write Serial Number (on inner door of unit) here: DISHWASHER Models DW2432 and DW2432SS Installation Manual Write Serial Number (on inner door of unit) here: Felix Storch, Inc. Summit Appliance Division 770 Garrison Avenue Bronx, New York 10474 www.summitappliance.com

More information

Installation. 324 Series Built-In Dishwashers U L. Viking Range, LLC 111 Front Street Greenwood, Mississippi USA (662)

Installation. 324 Series Built-In Dishwashers U L. Viking Range, LLC 111 Front Street Greenwood, Mississippi USA (662) Installation Viking Range, LLC Front Street Greenwood, Mississippi 890 USA (66) 455-00 For product information, call -888-845-464 or visit the Viking Website at vikingrange.com U L C U L 4 Series Built-In

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS INSTALLATION INSTRUCTIONS The SensorNet I/O Module provides attachment for up to 32 alarms and up to 16 switched devices. An RS-232 or RS-422 communications port is also provided for receiving serial alarms.

More information

R A D I O N I C S. READYKEY K2015A Alarm Event Manager. Installation Data Sheet. Description

R A D I O N I C S. READYKEY K2015A Alarm Event Manager. Installation Data Sheet. Description R A D I O N I C S READYKEY K2015A Alarm Event Manager Installation Data Sheet READER CONTROLLER INPUTS INPUTS RLY 8 RLY 7 RLY 6 RLY 5 RLY 4 RLY 3 RLY 2 RLY 1 8 Supervised Inputs (Normally Open or Normally

More information

HRX3000. Technical Manual

HRX3000. Technical Manual HRX3000 Technical Manual Contents: Specification...2 Connectors...3 Power (J21)...3 RS-485 Network Connectors (J6 and J7)...4 RS-232 to PC (J8)...5 Printer and Fire Alarm Panel (J19)...6 TCP/IP...8 Modem

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

II. METHODS AND MATERIALS

II. METHODS AND MATERIALS Smart Home using PLC Naveen Kumar P 1, Naveen Kumar K 2, Arvind M 3, Senthilraja S 4 1,2,3 U.G. Student, 4 Assistant Professor Department of Mechanical and Automation Engineering, Mahendra Engineering

More information

Section 2 Safety, Tools and Equipment, Shop Practices Unit 5 Tools and Equipment

Section 2 Safety, Tools and Equipment, Shop Practices Unit 5 Tools and Equipment Section 2 Safety, Tools and Equipment, Shop Practices Unit 5 Tools and Equipment Unit Objectives After studying this chapter, you should be able to: Describe hand tools used by the air-conditioning, heating,

More information

Section 2 Safety, Tools and Equipment, Shop Practices Unit 5 Tools and Equipment. Unit Objectives 3/1/2012. General Hand Tools (1 of 6)

Section 2 Safety, Tools and Equipment, Shop Practices Unit 5 Tools and Equipment. Unit Objectives 3/1/2012. General Hand Tools (1 of 6) Section 2 Safety, Tools and Equipment, Shop Practices Unit 5 Tools and Equipment Unit Objectives After studying this chapter, you should be able to: Describe hand tools used by the air-conditioning, heating,

More information

Characteristics of different sensors used for Distance Measurement

Characteristics of different sensors used for Distance Measurement Characteristics of different sensors used for Distance Measurement Pavithra B. G 1, Siva Subba Rao Patange 2, Sharmila A 3, Raja S 2, Sushma S J 1 1GSSS Institute of Engineering & Technology for Women,

More information

MD12-1 Vehicle Loop Detector

MD12-1 Vehicle Loop Detector MD12-1 Vehicle Loop Detector Features Supply 12VDC Adjustable sensitivity (16 levels via a trimpot) 2 x Relay outputs (each can be configured individually) Power up and loop activation LED indicator. Industry

More information

Mix Boiler & Font Range ( #, #, #, , )

Mix Boiler & Font Range ( #, #, #, , ) Mix Boiler & Font Range (1000870#, 1000871#, 1000880#, 1000878, 1000879) Service Manual Marco Beverage Systems Ltd. 63d Heather Road, Sandyford Industrial Estate, Dublin 18, Republic of Ireland Ireland

More information

Scotsman Technical Training. CU50 Cube Ice Machine

Scotsman Technical Training. CU50 Cube Ice Machine Scotsman Technical Training CU50 Cube Ice Machine Major Topics Overview Installation Start Up Sequence of Operation Maintenance Diagnostics Service Procedures Models Two Base Models Gravity Drain Pump

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

AddressPro Digital Dimming Technical Product Information

AddressPro Digital Dimming Technical Product Information AddressPro Digital Dimming Technical Product Information Installation Guidelines Control Wiring: Additional control wiring is required for AddressPro systems. The control wiring (violet and gray wires)

More information

DC200 Digital Dispenser Operating Manual

DC200 Digital Dispenser Operating Manual DC200 Digital Dispenser Operating Manual 2015 Fisnar Phone: (973) 646-5044 E-mail: info@fisnar.com Table of Contents Product Safety Statements 4 Specifications 6 Accessories 6 External Controls 7 Machine

More information

Installation Instructions Built-In Dishwasher

Installation Instructions Built-In Dishwasher GE Consumer & Industrial Appliances Installation Instructions Built-In Dishwasher If you have questions, call 800.GE.CARES (800.432.2737) or visit our website at: www.ge.com BEFORE YOU BEGIN Read these

More information

Introduction... 3 Setup & Suggestions... 4 Basic Use... 4 Setting Time... 4 Setting Temperature... 5 Setting Height / Pressure...

Introduction... 3 Setup & Suggestions... 4 Basic Use... 4 Setting Time... 4 Setting Temperature... 5 Setting Height / Pressure... Table of of Contents Contents... 2 Introduction... 3 Setup & Suggestions... 4 Basic Use... 4 Setting Time... 4 Setting Temperature... 5 Setting Height / Pressure... 6 Aligning the pedestal... 6 Guidelines

More information

Smoke/Temperature Controlled Fan

Smoke/Temperature Controlled Fan 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

More information

Colour also can display the time Build a LED colour clock

Colour also can display the time Build a LED colour clock Colour also can display the time Build a LED colour clock Not all clocks use digits to display the time. This neat little clock tells you the time by using different colours for each digit. The colours

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

Tempco PCT-3000 Series Temperature Control Console with Relay Output for Heating or Cooling Applications

Tempco PCT-3000 Series Temperature Control Console with Relay Output for Heating or Cooling Applications Instruction Manual Tempco PCT-3000 Series Temperature Control Console with Relay Output for Heating or Cooling Applications Manual PCT-3000 Revision 9/2014 The PCT-3000 series control console incorporates

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS INSTALLATION INSTRUCTIONS BUILT-IN BOTTOM MOUNT REFRIGERATOR/FREEZER DBRTGK72SS-GRILLE KIT (FOR designer SERIES ONLY) VIKING RANGE CORPORATION 111 Front Street Greenwood, Mississippi (MS) 38930 USA (662)

More information

Data Sheet Version 1.0

Data Sheet Version 1.0 LED Modules - Dim To Warm Round Power of Luminus in standard and custom LED modules Data Sheet Version 1.0 Lean & Fast. Made Smarter. Design Faster use standard modules to shorten development time Easy

More information

Regulations Governing Fire Protection Systems That will be connected to the Town of Wayland Municipal Fire Alarm System.

Regulations Governing Fire Protection Systems That will be connected to the Town of Wayland Municipal Fire Alarm System. Regulations Governing Fire Protection Systems That will be connected to the Town of Wayland Municipal Fire Alarm System. 508-358-4747 1. All owners, architects, contractors and sub-contractors contemplating

More information

Installation Manual PS-225 & PS-275

Installation Manual PS-225 & PS-275 Installation Manual PS-225 & PS-275 Table of Contents Pre-Uncrating Checklist... 1 Verifying System Requirements... 2 Verifying System Direction... 2 Verifying the Electrical Requirements... 2 Removal

More information

How to modify Volvo Alarm Siren after it has given Message: Alarm system Service Required Ver. 1.2

How to modify Volvo Alarm Siren after it has given Message: Alarm system Service Required Ver. 1.2 How to modify Volvo Alarm Siren after it has given Message: Alarm system Service Required Ver. 1.2 We will show how to modify the Alarm Siren Unit without using Battery. If you are not sure or do not know

More information

FUSION ALARMS TROUBLESHOOTING GUIDE CURRENT LIMIT VOLTAGE LIMIT

FUSION ALARMS TROUBLESHOOTING GUIDE CURRENT LIMIT VOLTAGE LIMIT 1 FUSION ALARMS TROUBLESHOOTING GUIDE CURRENT LIMIT Description: Controller is limiting the load current to the current limit set on the controller. Display: CURRENT LIMIT Alarm Reset Action: Automatically

More information

GEM-C Wireless User & Installation Manual. Revision October Apollo Solar Electric Limited. Documentation

GEM-C Wireless User & Installation Manual. Revision October Apollo Solar Electric Limited. Documentation Documentation GEM-C Wireless User & Installation Manual Revision October 2014 Apollo Solar Electric Limited Contents GEM-C Wireless User Manual 3 Important Safety Information 3 Introduction 4 The GEM-C

More information

Top Control Dishwasher

Top Control Dishwasher INSTALLATION GUIDE Top Control Dishwasher NS-DWH2BS8/NS-DWH2SS8/NS-DWR2BS8/NS-DWR2WH8/NS-DWR2SS8 Before using your new product, please read these instructions to prevent any damage. Contents Introduction......................................................................................................

More information

Installation Instructions 30 French Door Built-in Wall Ovens

Installation Instructions 30 French Door Built-in Wall Ovens Installation Instructions 30 French Door Built-in Wall Ovens Questions? Call 1.800.GE.CARES (1.800.432.2737) or visit www.geappliances.com In Canada, call 1.800.561.3344 or visit www.geappliances.ca DESIGN

More information

Dishwasher Installation Manual

Dishwasher Installation Manual Dishwasher Installation Manual DW 51600 SS DW 51600 FBI DWT 51600 SS DWT 51600 FBI DWT 81800 FBI DWT 81800 SS DWT 81800 SSIH DWT 81800 SSWS DWT 52600 WIH DWT 52600 SSIH DWT 52600 BIH DWT 52800 WIH DWT

More information

Labkotec Ice Detector

Labkotec Ice Detector Labkotec Ice Detector LID 3300IP Level and flow know-how since 1964 Benefits of using Ice Detector Stops wind turbine to prevent icethrow Safety first of all! Safety device Authorities / construction licence

More information

Installation Instructions

Installation Instructions Installation Instructions Before you begin... 2 Location... 2 Recommended grounding instructions... 2 Electrical requirements... 2 Exhaust requirements... 3 Water supply and drain requirements... 3 Please

More information

Installation Instructions

Installation Instructions Installation Instructions Built-In Dishwasher If you have questions, call 800-GECARES or visit our website at: www.geappliances.com BEFORE YOU BEGIN Read these instructions completely and carefully. IMPORTANT

More information

W C. Table of Contents... 2 Table des matières... 25

W C. Table of Contents... 2 Table des matières... 25 INSTALLATION INSTRUCTIONS UNDERCOUNTER DISHWASHER PLASTIC GIANT TUB MODELS INSTRUCTIONS D'INSTALLATION LAVE-VAISSELLE SOUS COMPTOIR MODÈLES À TRÈS GRANDE CUVE EN PLASTIQUE Table of Contents... 2 Table

More information

Summary of SNAP thermal tests

Summary of SNAP thermal tests Summary of SNAP thermal tests Rich Lacasse Aug. 4, 2016 Introduction In late July and early August of 2016 a series of tests were run to measure the thermal properties of the SNAP board in the RFI case

More information

MIX Boiler & Font Range Service Manual

MIX Boiler & Font Range Service Manual MIX Boiler & Font Range Service Manual 1000870# 1000871# 1000875# 1000880# 1000887# 1000878 1000879 2300268 www.marcobeveragesystems.com Ireland Tel: +353 (1) 295 2674 UK Tel: +44 (0207) 2744577 Service

More information

IMPORTANT SAFETY INFORMATION READ ALL...

IMPORTANT SAFETY INFORMATION READ ALL... INSTALLATION and SERVICE MANUAL HOUSEPURE MODELS HP03 and HP04 736-0137 Table of Contents IMPORTANT SAFETY INFORMATION READ ALL... 3 P/N 41482 Rev A 06/04 INSTRUCTIONS BEFORE USING... 3 FEEDWATER... 4

More information

INSTALLATION INSTRUCTIONS FOR SERIES 9 INTERMITTENT PILOT IGNITION CONTROL

INSTALLATION INSTRUCTIONS FOR SERIES 9 INTERMITTENT PILOT IGNITION CONTROL INSTALLATION INSTRUCTIONS FOR SERIES 9 INTERMITTENT PILOT IGNITION CONTROL Figure 1 Series 9 Intermittent Pilot Ignition Control Application The Series 9 Intermittent Pilot Ignition Control is a microprocessor

More information

LINEAR HEAT DETECTION CABLE DURÁN-SAFE

LINEAR HEAT DETECTION CABLE DURÁN-SAFE LINEAR HEAT DETECTION CABLE DURÁN-SAFE Installation & User Manual 2018 DURAN ELECTRONICA S.L. - All rights reserved www.duranelectronica.com I-manSAFECABLE-v05 TABLE OF CONTENTS Pages 1. INTRODUCTION...

More information

Passive Infrared Perimeter Monitoring Alarm System

Passive Infrared Perimeter Monitoring Alarm System Passive Infrared Perimeter Monitoring Alarm System Digital Dynamic Tesfayohnes Woldselassi Jonathan Applewhite Brittany Jackson Overview Background Problem Formulation Design Requirements Current Status

More information

Smart Starter Bundle. Hub. Smart Motion Sensor. Smart Door/ Window Sensor

Smart Starter Bundle. Hub. Smart Motion Sensor. Smart Door/ Window Sensor User Guide 01 Smart IP Camera Smart Zigbee Hub Smart Motion Sensor Smart Door/ Window Sensor Smart Starter Bundle Thanks for using Aztech Kyla product If you need support or help, please visit www.kyla.aztech.com

More information

Filtration. General Instructions

Filtration. General Instructions Filtration General Instructions Ultrafryer Systems 302 Spencer Lane P.O. Box 5369 San Antonio, TX 78201 Local: (210) 731-5000 Toll-Free: (800) 525-8130 Fax: (210) 731-5099 Web: www.ultrafryer.com 30A181-Jul2007

More information

International Journal of Scientific & Engineering Research Volume 9, Issue 2, February-2018 ISSN

International Journal of Scientific & Engineering Research Volume 9, Issue 2, February-2018 ISSN 62 IOT Based Air Pollution Monitoring System Harsh N. Shah 1, Zishan Khan 2, Abbas Ali Merchant 3, Moin Moghal 4, Aamir Shaikh 5, Priti Rane 6 1, 2, 3, 4,5 Student, Diploma in Computer Engineering, BGIT,

More information

PRO-TEC SYSTEM ONE. Trailer Security Systems Model # PTS-2. Photo includes PTS-2 with optional pager unit

PRO-TEC SYSTEM ONE. Trailer Security Systems Model # PTS-2. Photo includes PTS-2 with optional pager unit PRO-TEC SYSTEM ONE Trailer Security Systems Model # PTS-2 Photo includes PTS-2 with optional pager unit Professional Technology to Pro-Tec Your Investment More helpful install information on our website

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

Added password for IP setup page : Password must be in IP format!

Added password for IP setup page : Password must be in IP format! NETWORK POWER MONITOR Release : 21 August 2014 Hardware Version : Version 7 Firmware version 1.00 PC Application Software : Version (latest)...2 Added password for IP setup page : Password must be in IP

More information

XPIN -XT X-ray Detector Operation Manual

XPIN -XT X-ray Detector Operation Manual Detectors XPIN -XT X-ray Detector XPIN-XT-AB (Angle bracket sold separately) XPIN-XT-HS (Heat sink sold separately) DET-MAN-MED00014, Rev C, Page 1 Contents XPIN-XT X-ray Detector... 3 Initial Inspection...

More information

MW402 Integrated Dishwasher

MW402 Integrated Dishwasher MW402 Integrated Dishwasher Manual for Installation, Use and Maintenance 1 Customer Care Department The Group Ltd. Harby Road Langar Nottinghamshire NG13 9HY T : 01949 862 012 F : 01949 862 003 E : customer.care@cda.eu

More information