PLC Controlled Motor Circuit

Size: px
Start display at page:

Download "PLC Controlled Motor Circuit"

Transcription

1 PLC Controlled Motor Circuit William Heater Sinclair Community College Electronics Engineering Technology EET 2278, S16, Spring Term

2 Page 1 Table of Contents Acknowledgements..pg. 2 Abstract.pg. 3 Introduction pg. 4 Principles of Design...pg. 5 Design Details...pg. 6 Construction..pg. 12 Testing...pg. 16 Operation. pg. 17 Conclusions. pg. 19 Recommendations. pg. 20 References.....pg. 21 Addenda pg. 22

3 Page 2 Acknowledgements For the success of this project I would like to thank Warren Kerns and Chad Johnson. These are co workers who assisted in the final layout design idea and many conversations concerning its logical operations. Also to my wife and family who were very patient and understanding about the many hours spent away from them.

4 Page 3 Abstract The PLC (Programmable Logic Controller) Controlled Motor Circuit is designed to be a training tool for anyone interested in industrial PLC use. Motors are used heavily throughout industry and being familiar with some simple concepts of controlling them is important to understand. The trainer utilizes various voltages (120Vac, 5Vdc and 24Vdc), and a PLC to read inputs and send outputs to a number of lamps, push buttons, and switches. All of which are essential to proper control of the motors. The trainer operates three, identical, single phase motors. The ladder logic for the PLC is written as though two of the motors are driving conveyor belts and the third motor is opening and closing a bin gate that the conveyors dump into (there are no actual conveyor belts or bin gates on the trainer, only the motors used as a demonstration of them). The conveyor motors continually run as though they are filling up the imaginary bin. Once the bin is full (as determined by a timing sequence written in the ladder logic), the bin gate motor turns on just long enough to empty the bin. The two conveyor motors also have a safety cover with a switch. If the safety covers are removed, the corresponding motor will stop running and a warning light will illuminate. The trainer motors can be controlled locally by a panel of switches and pushbuttons, or they can be controlled by an HMI (Human Machine Interface) via laptop. If being controlled locally, and the operator fills the imaginary bin to full capacity (again, the timing sequence written in the logic), and the conveyor motor will automatically stop until the operator clears the bin by pressing the dump bin button. Alternatively, an operator can control the process using the HMI. In this case, while the conveyor motors are running, the bin gate will automatically turn on as the imaginary bin reaches full capacity, then turn off when the bin is empty. Automatic mode will continually operate with no input from the operator. The PLC for the trainer contains approximately 60 rungs of ladder logic to make the motors, and lights function as desired. This serves as a good example of how seemingly simple functions such as turning on a motor or blinking a light can require many lines of logic.

5 Page 4 Introduction The PLC controlled motor circuit is not a new concept. It is used throughout industry in a variety of ways for motor control and process monitoring. The idea for this project came about after recognizing a desire to expose fellow students to real life applications for their electronic education. Coupling this idea with my interest in PLCs and ladder logic begat the finished project presented here. The original concept for the project was simple: to program and wire a PLC to start and stop a single phase motor. This simple concept quickly evolved into a more complex idea involving indicator lights, safety switches, and a motor interlock to prevent one motor from running unless a second motor was running. The completed original concept was as follows: Program a PLC that will receive inputs from push buttons to start and stop two motors. Using these inputs, the PLC will output a signal to start/stop the motor. While the motors are running, the PLC should output a signal to illuminate an indicator light, corresponding to the running motor. The PLC will also receive inputs from safety switches, and will not allow the motor to run if the corresponding safety switch input is not present. Lastly, the PLC will not allow motor #2 to start unless motor #1 is already running. As the project progressed, it also evolved. I became aware that the PLC being used was accompanied by a software HMI program which I quickly decided to incorporate. By doing so, the operator could now control the trainer using the push button station or via laptop. I also obtained a third motor and was able to implement it into my programming as a bin gate. Doing this added more complexity to the project and a better example of real world applications. Although, the first design idea went through several changes, the original concept remained the same: a motor circuit controlled by PLC programming.

6 Page 5 Principles of Design There are various electronic components used in the trainer, each requiring its own power. Failure to apply the proper voltages to the proper components can have a devastating effect on the project and will most likely cause irreparable damage to expensive equipment. An example of this would be applying 120Vac to the PLC, which only requires 5Vdc to operate. The motors used are single phase and require 120Vac to function. This voltage can be acquired from any household outlet and is also necessary to power the 5V and 24V adapters. The PLC itself, along with the two output modules require 5Vdc to operate, while the input cards need a 24Vdc signal to recognize the inputs. Applying a 5V signal to the 24V input module will result in the PLC failing to recognize the input signal and cause undesired operation. The second key concept for the project is proper programming of logic. Improper programming will not damage the project, but will cause incorrect operation. Although the trainer is meant to be a learning tool and has plenty of latitude for programming errors, a basic understanding of ladder logic is still necessary. Firstly, the programmer must have a plan for how s/he wants the project to function. This will determine how many input/output bits are necessary. Knowing this is crucial because the PLC is only capable of a fixed number of inputs and outputs, without buying additional equipment. The programmer must be able to recognize that implementing a push button will require the use of 1 of the limited inputs. Accordingly, using a lamp will take away 1 of the available outputs, etc. The PLC used for this project is a Velocio Branch 221. It is capable of 12 digital inputs, 12 digital outputs, and 6 analog inputs (Velocio). Once the plan is established, the programmer is then required to understand the various capabilities of the ladder logic. E.g. the difference between a normally open bit vs. a normally closed bit. A normally open bit means that a logical path is passed when a signal is present. A normally closed bit is opposite to that: a logical path is passed when a signal is not present. The programmer will also be required to make use of output coils, timers, and latch/unlatch functions. Again, the trainer is meant to be a learning tool and the PLC will allow plenty of latitude for the programmer to learn these things as s/he progresses through the programming process.

7 Page 6 Design Details Figure 1 shows a functional block diagram for the PLC Controlled Motor Circuit. Not meant to be a detailed schematic, the diagram shows a power supply box (fed from a 120Vac outlet) that provides power to a terminal block box. The terminal box provides both 24V and 5V power simultaneously to the control panel and PLC. Via push buttons, the control panel sends signals to the input modules, which then relay the signals to the PLC. The PLC uses this information in its logic and outputs accordingly to the output modules. The output modules send a signal to both the control panel (indicator lamps) and the motors via electromechanical relays. As all of these functions are occurring, the PLC and Laptop are continually communicating with each other via a USB cable. Figure 2 shows a detailed schematic of both the power supply box and terminal block box. Beginning with the power supply box, you can see that all power originates from a 120Vac power source (common household outlet). The line side of this circuit is protected with a 3A fuse. The line side and neutral are both daisy chained on the left side of the terminal strip. Terminals 1 & 4 provide the power to the 5V adapter (located in bottom of box), the output of which then runs to the terminal box. Terminals 2 & 5 provide the power to the 24V adapter (located in bottom of box), the output of which then runs to the terminal box. Terminal 3 provides the common line feed for all three motors at the output module E. Terminals 6, 7, & 8 are the return neutral of all 3 motors. Still referring to Figure 2, we can also see a detailed connection diagram for the terminal box. On the left side of this box is the 5V feed from the adapter. Again, the left side of this terminal strip is daisy chained. Terminals 1 & 4 of TB2 provide power to the PLC. Terminals 2 & 5 provide power to output module D, while Terminals 3 & 6 provide power to output Module E. On the right hand side of the terminal box is TB3. The 24V feed for this strip lands at terminals 1 & 15 and is again daisy chained throughout. Terminals 1 through 12 provide the 24V+ to the control panel push buttons. It should be noted that the labels in parentheses are where the wires land first before landing at the Input terminals. Also, the safety flags are not located in the control panel, but rather on the mounting panel. The remaining terminals follow this same format. Figure 3 shows the detailed schematic for the two input modules B & C. The 24V+ is supplied from the terminal box, passes through the corresponding switch/push button and finally lands at the input module. It should be noted that the 24V common lands at the module and a jumper wire is installed on the module to connect the commons. This is true for both input modules. Figure 4 shows the detailed schematic for the two output modules D & E. The 24V+ is supplied from the terminal box and serves as a common feed for the relays on module D. When the relays are switched, the 24V signal is passed to the indicator lamps located on the control panel with the return wires landing at terminal box TB3. Output Module E is a little

8 Page 7 different in that the common is the line feed directly from the power supply box at TB1 3. As the relays on this module are switched, the corresponding motors are turned on/off. The return/neutral of all three motors land at the power supply box TB1. The design details for the ladder logic contained in the PLC will not be described here. The logic design will be different to each individual who is doing the programming depending on the desired functionality of the push buttons, motors, and lamps. Describing each rung of the program is outside the scope of this project, however some pitfalls and potential problems will be addressed in the Conclusion and Recommendations section of this report.

9 Figure 1: Functional Block Diagram Page 8

10 Figure 2: Power Supply and Terminal Box Connections Page 9

11 Figure 3: Input Module Connections Page 10

12 Figure 4: Output Module Connections Page 11

13 Page 12 Construction Construction of the PLC Controlled Motor Circuit required quite a bit of fabrication: Step 1: Construct the base. A thin piece of metal was used (approx. 27 x20 ), with 1 x1 aluminum angle attached to the underside to elevate and provide room for wire runs underneath the base. See Picture 1. Picture 1: Base Panel Construction Step 2: Cut holes in Control Panel. The control panel is home to many push buttons, switches, and lamps. Determine the layout and cut the holes accordingly. See Picture 2. Picture 2: Control Panel Cutout

14 Page 13 Step 3: Install push buttons, lamps, and switches in panel. See Pictures 3 & 4. Picture 3: Components installed Picture 4: Underside of Control Panel Step 4: Mount Boxes, Control Panel, Motors, PLC and Modules. Determine the desired layout, drill mounting holes in the base and mount. This is also a good time to mount the terminal blocks inside the boxes and create the safety covers to protect the motors. See Pictures 5 & 6. Note that unseen in Picture 6, the safety covers each have 4 posts that fit into pre drilled holes in the base. This prevents the covers from moving around and inadvertently opening the safety switch. Picture 5: Mounting before Wiring Picture 6: Safety Covers

15 Page 14 Step 5: Solder connections inside Control Panel and run the wiring. Note that the push buttons used here required soldering a 500 ohm resistor to each push button for proper illumination of the LEDs. If illuminated push buttons are not used, this additional step is not necessary. See picture 7. Picture 7: Connections and Wiring of Control Panel Step 6: Run and terminate all wiring. Here it is vital that you follow the schematics closely. Failure to do so will most likely result in a messy bundle of wire and much confusion. See Pictures 8 through 11. Picture 8: Wire Pulls Picture 9: Power Supply Box

16 Page 15 Picture 10: Terminal Box Picture 11: Module Wiring

17 Page 16 Testing and Validation Before I applied power to my project, I took a few precautionary measures. The first thing I did was to verify all wiring by using an ohmmeter and the schematics. I also tested all push buttons for proper operation. Once satisfied that the wiring was correct, I then opened all knife switches in the power supply box and terminal box. After these steps were complete, I plugged in the 120Vac power to the power supply box. Using a multimeter, I verified 120V at TB1 1 &4 (Figure 2). I then closed all knife switches on TB1 and verified 5 volts across TB2 1 & 4. I also verified 24 volts across TB3 1 & 15. Satisfied that the proper voltages were present in the proper places, I then closed all of the remaining knife switches. When this was complete, I noted that the PLC had power and lights, the modules had power indication, and the control panel buttons were illuminated. All of which were positive and expected signs of proper wiring. My next step was to test the control panel. I pressed several buttons, but had no reaction from the motors or lamps. Using a multimeter, I verified voltages at the PLC input modules. I hooked up a laptop and verified that a program was loaded into the PLC but still could not operate the motors properly. Using the software included with the PLC, I began debugging the program. I found that the program was waiting for inputs from the HMI program. After initializing the HMI program and placing in Auto mode, the project began operating as programmed. Further testing revealed that when the HMI program is closed out, the bits for auto/manual control default to manual. This prevents the program from proper operation unless the HMI is up and running. This is not a major concern, since the project is designed to run with an HMI. Although operating as designed, I found a few minor issues with the program I had written. For example, the E stop did not stop the bin motor from running when pressed. The remedy for this was to simply place the E Stop input bit in series with the motor output logic rung. Other minor program tweaks were necessary and were corrected in much the same way.

18 Page 17 Operation To properly operate the PLC Controlled Motor Circuit, you must first understand that it is designed to be part of an imaginary process. This process is one that moves material along two conveyor belts, both of which dump into the same bin (Figure 5). M M M Figure 5: Overview of Process There are two operator stations, both of which can control the process. The first station is the HMI. For either one of the conveyor motors to operate, all permissives have to be met. These permissives include: Safety Circuit OK (E stop and safety cover switch), HMI in Auto, and control panel in Auto. Once all permissives have been met, the operator must press the Start button on the HMI and the motor will begin to run. As the motor runs, the HMI displays a level indication of the bin. When the bin reaches 90% full, the bin motor will automatically turn on until the bin is empty. This process repeats indefinitely until one of the permissives are no longer met or the operator presses the Stop button on the HMI. Control of the second conveyor motor is identical to the first. However, when both conveyor motors are running simultaneously, the bin will fill up twice as fast and dump half as fast. An option that the HMI station has that the control panel does not have is that of safety override. If for some reason, the operator wished to bypass the safety circuit (not recommended in real world applications), s/he simply has to toggle the safety override radio button on the HMI. Doing so results in the E stop and safety switch being removed from the circuit that makes it necessary for the motor to run. The control panel operation is nearly identical to that of the HMI. The control panel and HMI must both be in Auto and the safety circuit must be intact before the motors will run. Here, the operator utilizes actual pushbuttons to start and stop the motors. When a motor is running, the corresponding lamp will be illuminated. A key difference, however, is the jog button found on the control panel. When the operator selects control to manual, he can

19 Page 18 then use the jog button to turn on the motors. However, s/he must continue to hold the button in. Once the jog button is released, the motor will stop. With both conveyors in manual mode, if the bin level reaches capacity, neither conveyor motor will function until the operator presses the dump bin button to empty the bin. A final note on operation. While either of the conveyor motors are running, if the corresponding safety cover is removed, the safety circuit permissive is no longer met and that motor will cease to run. This is provided that the safety circuit is not overridden by the HMI.

20 Page 19 Conclusions The PLC Controlled Motor Circuit project has been quite a learning experience. The time involved in planning, fabricating, wiring, and testing was much more than originally anticipated. However, the project is functioning as designed and has a clean, professional look. The HMI was a pleasant discovery. The company that produces the PLC also provides the software for this very simple HMI. This was my first experience with such software and it was a learning experience to program the lights, gauges and buttons necessary to make it operate the motors via laptop. However, I would like to have seen more functionality and graphics made available on this software. There are some disappointments in my project. One is related to the programming. A few of the tweaks I made while troubleshooting were not accompanied by proper rung comments. Although the program works fine, I suspect I will have difficulty figuring out why some of the logic is present because I did not take the time to describe the reasoning in rung comments. Another disappointment was the lack of wire labeling. This was due solely to the small gauge wire. I could not find appropriate wire labels for such small wire. I opted to use color coding, but found that I needed many more colors than what I could find in the stores (keeping budget in mind). In the end, I relied heavily upon my detailed schematics and an ohmmeter to wire my project. Although the wiring has a clean look, I would still like to see the labels. Overall, the final result of this project met or exceeded all of the criteria of its original design. Rather than operating two motors, the project operates three motors and also utilizes an HMI interface that was not conceived of in the original design. The end result is more complex than the original idea.

21 Page 20 Recommendations There are a few things that I would do differently if building this project again. One of which is the use of resistors on the push buttons. After I had soldered several of these resistors, I realized that I could have accomplished the same voltage drop across all the push buttons by placing a single resistor in series with the 24V return line. This would have saved a lot of time and improved the appearance of the project. Another item that could have been approached differently is my programming. When I began programming the ladder logic, it was my thought that I would only need a few rungs to make the project operate appropriately. As the programming progressed, I realized that I should have programmed an input list and output list. The input/output list could have tied a single input/output to a corresponding internal (soft) bit. I could have then used the soft bits throughout the rest of the programming. Doing this would have enabled me to change the state of all soft bits at once simply by changing a single hard input/output. This would have made troubleshooting and testing much simpler. Another programming item that I could have done better is the rung comments. Although I did make notes throughout my program using rung comments, I have learned that you can never have too many of these comments. The more comments and more descriptions in the program, the easier it is to troubleshoot later. Along these same lines is descriptive bit labels. Here, I am satisfied with my work but it is a good practice for all programmers to use as much description as possible when labeling bits in their programs. Again, doing so will facilitate troubleshooting in the future.

22 Page 21 References Velocio. n.p, n.d Web. 24 Apr < content/uploads/2014/07/branchds1.pdf>

23 Page 22 Addenda Addendum 1 Specifications General Information The PLC Controlled Motor Circuit is intended to provide the user with a training example of how different voltages are used in a control circuit to start and stop a motor. The user must provide a laptop or home computer for proper function. This unit is not designed to be used in a production environment, nor is the motor intended to provide any external work. Proper use of this product will provide the user with an opportunity to start/stop a motor via pushbuttons, switches, and forcing outputs in the PLC. The user will also be able to monitor and manipulate the PLC logic to observe results of said changes. Maintenance and Troubleshooting The PLC Controlled Motor Circuit is accompanied by an electrical schematic to aid in troubleshooting. The system is designed for several conditions to be met before the motor will begin to operate. A basic knowledge of electrical symbols and use of a multimeter is necessary for troubleshooting. For best performance, keep the PLC Motor Controlled Circuit in a clean environment and free from dirt and debris. Voltages Used: Motors: PLC: Velocio Branch 221 Specifications 110Vac (provided by user) 24Vdc 5Vdc 110Vac, Single Phase 5Vdc 12 digital inputs 12 digital outputs 6 analog inputs (not used) Overall Dimensions: Length: 36 Width: 30 Height: 14 Weight: 25lbs. Operating System: Windows Vista, 7, 8 or 10 (32 or 64 bit)

24 Page 23 Addendum 2 Parts List PROJECT NAME: PLC controlled Motor Starter Circuit DATE: 4/24/2016 Project Manager Name: William Heater Qty Descriptor Description Cost Extended Procured from Each Cost 1 PLC Velocio Branch 221 $ $ Velocio.net 2 24V module Convert 24V to 5V signal $19.00 $38.00 Velocio.net 2 Relay module Output Module for PLC $19.00 $38.00 Velocio.net 3 120Vac Motor Single Phase $9.95 $29.85 National Equipment 7 Pushbuttons w/ LED illumination $4.95 $34.65 AdaFruit.com AWG wire Stranded $0.25 $3.75 Mendelson's AWG wire 3 pair, twisted $0.30 $15.00 Mendelson's 2 Switches SPST $3.95 $7.90 AdaFruit.com 1 24V Power $9.95 $9.95 Mendelson's Supply 1 5 V Power $4.95 $4.95 Mendelson's Supply 5 Lamp 24V, Green $1.10 $5.50 AdaFruit.com 4 Aluminum Rail Used for base $3.00 $12.00 Lowes 1 Metal Sheet Used for base $5.00 $5.00 Mendelson's 1 Wire Ties Various sizes $10.00 $10.00 Lowes 1 Plexi Glass Used for safety covers $20.00 $20.00 Lowes 36"x36" 1 Extension Cord 16 AWG $7.00 $7.00 Lowes TOTAL COST $380.55

Contents. Please read and remember the following warnings before using the RELAYplate:

Contents. Please read and remember the following warnings before using the RELAYplate: Contents 1 Warnings o 1.1 What is a Relay? o 1.2 Basic Features of the RELAYplate o 1.3 Attaching a Load to the RELAYplate o 1.4 The RELAYplate Command Set 1.4.1 RELAY Control Functions 1.4.2 LED Control

More information

Branch PLC. Velocio s Branch PLC

Branch PLC. Velocio s Branch PLC Velocio s Branch PLC Branch PLC The Branch PLC is a member of the Velocio s groundbreaking series of programmable logic controllers. These PLCs introduce revolutionary new concepts, capabilities, performance

More information

January Bob Wright. 1 P age Bob Wright

January Bob Wright. 1 P age Bob Wright The upgrade is completed using the 401 control board and three Step1 driver boards supplied as a kit by Conqueror Design and Engineering Ltd. The kit includes all cable terminators for connections to the

More information

SPECIAL INSTRUCTIONS FOR CAPACITORS COMPACT GENERATORS

SPECIAL INSTRUCTIONS FOR CAPACITORS COMPACT GENERATORS SPECIAL INSTRUCTIONS FOR CAPACITORS COMPACT GENERATORS (WITH CAPACITOR CHARGER BOARD A3517-02) The process depends on Generator and System configuration. This document applies to installation of Capacitors

More information

Standard Instructions Special Instructions High-Speed Instructions SIMATIC S7-200 Programmable Controller System Manual

Standard Instructions Special Instructions High-Speed Instructions SIMATIC S7-200 Programmable Controller System Manual Programming A PLC STEP 7-Micro/WIN32 is the program software used with the S7-2 PLC to create the PLC operating program. STEP 7 consists of a number of instructions that must be arranged in a logical order

More information

This Presentation Will

This Presentation Will Investigating Basic Circuits Pre-Activity Discussion Digital Electronics 2014 Project Lead The Way, Inc. This Presentation Will Introduce you to basic circuits and their symbols. Introduce you to components

More information

PLC Fundamentals. Module 2: Hardware and Terminology. Academic Services Unit PREPARED BY. August 2011

PLC Fundamentals. Module 2: Hardware and Terminology. Academic Services Unit PREPARED BY. August 2011 PLC Fundamentals Module 2: Hardware and Terminology PREPARED BY Academic Services Unit August 2011 Applied Technology High Schools, 2011 ATE1212 PLC Fundamentals Module 2: Hardware and Terminology Module

More information

PLC Programming. Ladder Diagrams

PLC Programming. Ladder Diagrams Ladder Diagrams Consider the diagram below showing a circuit for switching an electric motor on or off. We can redraw this diagram in a different way, using two vertical lines to represent the input power

More information

-----other notes This picture was taken from here:

-----other notes This picture was taken from here: This is an introduction to programmable logic controllers - PLCs for short. Here is a picture of a simple one. A programmable logic controller is unit of hardware used to control and automate an industrial

More information

InstrumentationTools.com

InstrumentationTools.com Author: Instrumentation Tools Categories: PLC Tutorials Basics of PLC Programming In the late 1960 s an American company named Bedford Associates released a computing device they called the MODICON. As

More information

PLC Fundamentals. Module 1: Introduction to PLC. Academic Services Unit PREPARED BY. August 2011

PLC Fundamentals. Module 1: Introduction to PLC. Academic Services Unit PREPARED BY. August 2011 PLC Fundamentals PREPARED BY Academic Services Unit August 2011 Applied Technology High Schools, 2011 ATE1212 PLC Fundamentals Module Objectives Upon successful completion of this module, students will

More information

Introduction. Upon completion of Basics of PLCs you should be able to: Identify the major components of a PLC and describe their functions

Introduction. Upon completion of Basics of PLCs you should be able to: Identify the major components of a PLC and describe their functions Table of Contents Introduction...2 PLCs...4 Number Systems...8 Terminology...14 Basic Requirements...23 S7-200 Micro PLCs...28 Connecting External Devices...39 Programming a PLC...41 Discrete Inputs/Outputs...49

More information

EECE 2411/2211-Introduction to Electrical and Computer Engineering Lab. Lab 3

EECE 2411/2211-Introduction to Electrical and Computer Engineering Lab. Lab 3 EECE 2411/2211-Introduction to Electrical and Computer Engineering Lab Lab 3 Building Multi-Gate Logic Circuits Introduction: In this lab we will look at combining the simple logic gates we used in the

More information

ELECTRICAL CONTROL SYSTEMS 1

ELECTRICAL CONTROL SYSTEMS 1 ELECTRICAL CONTROL SYSTEMS 1 LEARNING ACTIVITY PACKET CONTROL LOGIC BB703-XB01UEN LEARNING ACTIVITY PACKET 1 CONTROL LOGIC INTRODUCTION This LAP and the ones that follow cover the electrical controls that

More information

PEREGRINE SERIES RETROFIT INSTALLATION GUIDE

PEREGRINE SERIES RETROFIT INSTALLATION GUIDE 06.05.17 HanleyLED H100W-PPS524V Spec Sheet SOLUTIONS THAT MAKE SENSE PEREGRINE SERIES RETROFIT INSTALLATION GUIDE Light Up New Markets Your Local Distributor: Grimco US www.grimco.com 800.542.9941 Canada

More information

Programmable Logic Controllers

Programmable Logic Controllers Programmable Logic Controllers PLC Evaluation Board used in ECE 461 What is a PLC? Programmable Logic Controllers (PLC's) are microprocessor devices much like the PIC microcontroller. Their function is

More information

Programmable logic controllers

Programmable logic controllers Programmable logic controllers Before the advent of solid-state logic circuits, logical control systems were designed and built exclusively around electromechanical relays. Relays are far from obsolete

More information

Basics of Industrial Electricity and Troubleshooting Electrical Control Circuits

Basics of Industrial Electricity and Troubleshooting Electrical Control Circuits Basics of Industrial Electricity and Troubleshooting Electrical Control Circuits Course Details Date: January 28 January 31, 2019 Time: 8:00 A.M. - 4:30 P.M. Capacity: 12 attendees Provider: National Technology

More information

eace PLC Velocio s Embedded Ace (eace) PLC

eace PLC Velocio s Embedded Ace (eace) PLC Velocio s Embedded Ace (eace) PLC eace PLC The eace PLC is a member of the Velocio s groundbreaking series of programmable logic controllers. These PLCs introduce revolutionary new concepts, capabilities,

More information

Experiment #2 PLC Input Output Wiring Methods. OBJECTIVES After successfully completing this laboratory, you should be able to:

Experiment #2 PLC Input Output Wiring Methods. OBJECTIVES After successfully completing this laboratory, you should be able to: Experiment #2 PLC Input Output Wiring Methods OBJECTIVES After successfully completing this laboratory, you should be able to: Read and explain the nameplate of DELTA s PLC DVP Series Model. Make different

More information

Click Save to return to the main Setup screen.

Click Save to return to the main Setup screen. ON-SITE Setup Guide Thank you for purchasing the ON-SITE. This guide will assist you in the setup of the system. You can call for FREE technical support to get help anytime at 757-258-0910. Please note,

More information

Secured Series: Hub Plus Kit Single Door Controller Package Installation Manual

Secured Series: Hub Plus Kit Single Door Controller Package Installation Manual Secured Series: Hub Plus Kit Single Door Controller Package Installation Manual This package is designed to simplify the connections to our Secured Series Hub Plus Controller. This will translate into

More information

Revolutionizing control wiring

Revolutionizing control wiring SmartWire-DT Panel Wiring Solutions Revolutionizing control wiring 797-6925 Fax: (215) 221-1201 www.royalelectric.com SmartWire-DT Changing the way panels are wired. Reduce cost throughout the value chain.

More information

PLC. Module 3: Hardware and Terminology. IAT Curriculum Unit PREPARED BY. Jan 2010

PLC. Module 3: Hardware and Terminology. IAT Curriculum Unit PREPARED BY. Jan 2010 PLC Module 3: Hardware and Terminology PREPARED BY IAT Curriculum Unit Jan 2010 Institute of Applied Technology, 2010 ATE321 PLC Module 3: Hardware and Terminology Module Objectives Upon successful completion

More information

logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7

logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7 logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7 7 1 The Vex Micro Controller coordinates the flow of

More information

STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK COURSE OUTLINE ELEC INDUSTRIAL CONTROLS

STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK COURSE OUTLINE ELEC INDUSTRIAL CONTROLS STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK COURSE OUTLINE ELEC 141 - INDUSTRIAL CONTROLS Prepared by: David W Hartle CANINO SCHOOL OF ENGINEERING TECHNOLOGY ELECTRICAL ENGINEERING

More information

1. PLC - Introduction

1. PLC - Introduction What does PLC stand for? PLC - programmable logic controller PLC implements logic control functions by means of a program PLC introduction 1 Features PLC introduction 2 Features PLC introduction 3 An application

More information

MT400 MOTION CONTROLLER

MT400 MOTION CONTROLLER MT400 MOTION CONTROLLER INSTALLATION & TECHNICAL MANUAL 5/30/2012 417 Wards Corner Road Loveland, OH 45140 800.659.8250 FAX: 513.398.2536 www.maxitronic.com Table of Contents Page 3: Page 4: Page 5: Page

More information

This guide provides basic information for Unitronics Models 230/260/280/290 (Non-color Screens).

This guide provides basic information for Unitronics Models 230/260/280/290 (Non-color Screens). Vision OPLC Installation Guide Models 230/260/280/290 (Non-color Screens) This guide provides basic information for Unitronics Models 230/260/280/290 (Non-color Screens). General Description Vision OPLCs

More information

Service Instructions. Conductor 420

Service Instructions. Conductor 420 Service Instructions Conductor 420 Listed, File No. E195547 Input: 480 VAC, 50/60 HZ. (Operating range 380-480 VAC) 20 AMP MAX OUTPUT W/25 AMP FUSE Output: 0-90% of Input Voltage Table of Contents General

More information

An OR Operation. Or (O) Function I0.4 Q0.1 I0.5 I0.5 I0.4 Q0.1. Input 3. Input 4. Output 2

An OR Operation. Or (O) Function I0.4 Q0.1 I0.5 I0.5 I0.4 Q0.1. Input 3. Input 4. Output 2 An OR Operation In this example an OR operation is used in network. It can be seen that if either input I0.2 (input 3) or (O in the statement list) input I0.3 (input 4), or both are true, then output Q0.

More information

AC : A NEW PEDAGOGY FOR THE ELECTRONICS LABORA- TORY

AC : A NEW PEDAGOGY FOR THE ELECTRONICS LABORA- TORY AC 2011-801: A NEW PEDAGOGY FOR THE ELECTRONICS LABORA- TORY Daren Reed Wilcox, Southern Polytechnic State University Gerd Walter Wstenkhler, Hochschule Harz (University of Applied Sciences) c American

More information

Manual. Model#-DB25M-3R6A. 6 Axis CNC Interface Breakout Board. Lastest update : Feb Store this manual away for further reference.

Manual. Model#-DB25M-3R6A. 6 Axis CNC Interface Breakout Board. Lastest update : Feb Store this manual away for further reference. Manual 6 Axis CNC Interface Breakout Board Model#-DB25M-3R6A Lastest update : Feb 2016 Read this manual carefully before making connections to the board. Store this manual away for further reference. Safety

More information

DESIGN OF A PROGRAMMABLE LOGIC CONTROLLER TRAINER

DESIGN OF A PROGRAMMABLE LOGIC CONTROLLER TRAINER Session 1620 DESIGN OF A PROGRAMMABLE LOGIC CONTROLLER TRAINER Mohammad Fotouhi, Ali Eydgahi, William Cavey Electrical Engineering Technology/Engineering and Aviation Sciences University of Maryland Eastern

More information

Controlling a fischertechnik Conveyor Belt with Arduino board

Controlling a fischertechnik Conveyor Belt with Arduino board EXPERIMENT TITLE: Controlling a fischertechnik Conveyor Belt with Arduino board PRODUCTS USED: CHALLENGE: AUTHOR: CREDITS: Interface and control a conveyor belt model (24 Volts, fischertechnik) with an

More information

EDEXCEL NATIONAL CERTIFICATE/DIPLOMA SELECTION AND APPLICATIONS OF PROGRAMMABLE LOGIC CONTROLLERS UNIT 25 - NQF LEVEL 3 OUTCOME 2 - PROGRAMMING

EDEXCEL NATIONAL CERTIFICATE/DIPLOMA SELECTION AND APPLICATIONS OF PROGRAMMABLE LOGIC CONTROLLERS UNIT 25 - NQF LEVEL 3 OUTCOME 2 - PROGRAMMING EDEXCEL NATIONAL CERTIFICATE/DIPLOMA SELECTION AND APPLICATIONS OF PROGRAMMABLE LOGIC CONTROLLERS UNIT 25 - NQF LEVEL 3 OUTCOME 2 - PROGRAMMING CONTENT Be able to use programming techniques to produce

More information

output devices. connected to the controller. data communications link. relay systems. user program. MECH1500Quiz1ReviewVersion2 Name: Class: Date:

output devices. connected to the controller. data communications link. relay systems. user program. MECH1500Quiz1ReviewVersion2 Name: Class: Date: Class: Date: MECH1500Quiz1ReviewVersion2 True/False Indicate whether the statement is true or false. 1. The number and type of I/Os cannot be changed in a fixed PLC. 2. In a PLC system, there is a physical

More information

Connecting LEDs to the ADB I/O

Connecting LEDs to the ADB I/O Application Note AN-2 By Magnus Pettersson September 26 1996 Connecting LEDs to the I/O Introduction The following notes are for those of you who are a bit inexperienced with hardware components. This

More information

AlphaStatus Room Status System Installation and Use Instructions for the RSS400 Series Room Stations and Optional Master Station(s)

AlphaStatus Room Status System Installation and Use Instructions for the RSS400 Series Room Stations and Optional Master Station(s) AlphaStatus Room Status System Installation and Use Instructions for the RSS400 Series Room Stations and Optional Master Station(s) APPLICATION The AlphaStatus system allows one or more RSS402, RSS403,

More information

EEET 2204 Industrial Automation

EEET 2204 Industrial Automation EEET 224 Industrial Automation EEET 224 Industrial Automation by Dr Peter Graszkiewicz. Discrete-State Control.. Basic Input and Output Devices 3-phase power supply N/C N/O contactor terminals fuses contactor

More information

InstrumentationTools.com

InstrumentationTools.com Author: Instrumentation Tools Categories: PLC Tutorials PLC Ladder Logic : Contacts and coils The most elementary objects in Ladder Diagram programming are contacts and coils, intended to mimic the contacts

More information

Network Controller. Installation/Troubleshooting Instructions NK220 COM1131C

Network Controller. Installation/Troubleshooting Instructions NK220 COM1131C Network Controller NK220 COM1131C Installation/Troubleshooting Instructions Part No. 70399101R4 October 2009 Table of Contents Getting Started... 2 Components of Network Controller... 2 System Overview...

More information

SIAC-PS 3G SIGNAL ISOLATOR WITH POWER SUPPLY (PART NO. 8890) INSTALLATION INSTRUCTIONS

SIAC-PS 3G SIGNAL ISOLATOR WITH POWER SUPPLY (PART NO. 8890) INSTALLATION INSTRUCTIONS SEE SAFETY WARNING ON PAGE 6 SIAC-PS 3G SIGNAL ISOLATOR WITH POWER SUPPLY IS DESIGNED TO BE USED WITH KBAC 3G SERIES DRIVES ONLY KBAC 3G SERIES MODELS CONTAIN THE "(3G)" DESIGNATOR ON THE PRODUCT LABEL

More information

BAUM K20B KNIFE FOLDER UNIT INSTRUCTION MANUAL

BAUM K20B KNIFE FOLDER UNIT INSTRUCTION MANUAL BAUM K20B KNIFE FOLDER UNIT INSTRUCTION MANUAL 2015 BAUMFOLDER CORPORATION All Rights Reserved BaumFolderCorp., 2015 Printed in U.S.A. TP10669 Warning Do not operate this machine without all guarding in

More information

CTEET003_Programmable Logic Controls CTAG Rubric EET. Some applied skills present

CTEET003_Programmable Logic Controls CTAG Rubric EET. Some applied skills present depends strongly on courses taught primarily at the some applied skills and applied skills strongly levels. 1. Recall the history of control systems and PLCs.* Describe what electrical control is. Create

More information

Ch 9 Discrete Control Using PLCs and PCs

Ch 9 Discrete Control Using PLCs and PCs Ch 9 Discrete Control Using PLCs and PCs Sections: 1. Discrete Process Control 2. Ladder Logic Diagrams 3. Programmable Logic Controllers 4. Personal Computers Using Soft Logic Discrete Process Control

More information

Table of Contents 1 ABOUT THIS GUIDE CONTACT INFORMATION ANTENNA INSTALLATION... 4

Table of Contents 1 ABOUT THIS GUIDE CONTACT INFORMATION ANTENNA INSTALLATION... 4 Table of Contents 1 ABOUT THIS GUIDE... 3 1.1 CONTACT INFORMATION... 3 2 ANTENNA INSTALLATION... 4 2.1 GENERAL INFORMATION... 4 2.2 SPECIFIC MOUNTING EXAMPLES... 5 2.3 CONNECTOR MOISTURE PROTECTION...

More information

SMART SHOT CONTROLLER FLUID USERS GUIDE

SMART SHOT CONTROLLER FLUID USERS GUIDE SMART SHOT CONTROLLER FLUID USERS GUIDE Pg. 2 SMART SHOT CONTROLLER FEATURES 3 SMART SHOT CONTROLLER FEATURES 3 SMART SHOT CONTROLLER CONFIGURATIONS 4 FLOAT/SENSOR WIRING 5 TOP AND BOTTOM FLOAT/SENSOR

More information

PLC Fundamentals. Module 3: Programming with Function Blocks. Academic Services Unit PREPARED BY. January 2013

PLC Fundamentals. Module 3: Programming with Function Blocks. Academic Services Unit PREPARED BY. January 2013 PLC Fundamentals Module 3: Programming with Function Blocks PREPARED BY Academic Services Unit January 2013 Applied Technology High Schools, 2013 ATE326 PLC Fundamentals Module 3: Programming with Function

More information

1. Concepts and What s New Concepts What's New in E Getting Started Starting Electra Page Scale

1. Concepts and What s New Concepts What's New in E Getting Started Starting Electra Page Scale 1 1. Concepts and What s New... 6 1.1 Concepts... 6 1.2 What's New in E6... 7 2. Getting Started... 8 2.1 Starting Electra... 8 2.2 Page Scale... 8 2.3 Page Measurement Units... 9 2.4 Stencils and Drawing

More information

5504 Thermocouple Analog Input Module

5504 Thermocouple Analog Input Module 550 Thermocouple Analog Input Installation, Operation and Maintenance Setup Manual 5/9/0 Safety Information The information provided in this documentation contains general descriptions and/or technical

More information

Installation Guide V290 (Color) This guide provides basic information for Unitronics LCD color touchscreen models V C30B and V T40B.

Installation Guide V290 (Color) This guide provides basic information for Unitronics LCD color touchscreen models V C30B and V T40B. Vision OPLC Installation Guide V290 (Color) This guide provides basic information for Unitronics LCD color touchscreen models V290-19-C30B and V290-19-T40B. General Description Vision OPLCs are programmable

More information

WIRING INSTRUCTIONS FOR HENRY SIGNS CONCERNING THE JOHN HANCOCK SIGN

WIRING INSTRUCTIONS FOR HENRY SIGNS CONCERNING THE JOHN HANCOCK SIGN WIRING INSTRUCTIONS FOR HENRY SIGNS CONCERNING THE JOHN HANCOCK SIGN Enclosed are the steps to a successful install of this project ALDOR Electronic Services 2961 Industrial Rd. Ste. #212 Las Vegas, NV

More information

E1135C PDU and Pod Upgrade Procedure

E1135C PDU and Pod Upgrade Procedure E4030-90010 Rev. B 12/2003 In this Document... Tools Needed, 2 Contents of the Upgrade Kits, 2 Installation Procedures, 4 Verifying the Power Option of the New PDU, 4 Removing the PDU from the Support

More information

USB board Mk2 INSTRUCTION MANUAL

USB board Mk2 INSTRUCTION MANUAL USB board Mk2 INSTRUCTION MANUAL Revision 0, December 2017 This manual comprises introducing information on use and performance of this device. For more information please refer to the Audial web site,

More information

Standard Options. Model 4100 Position Indicating Meter. Three Phase Motor Control. Positran Transmitter

Standard Options. Model 4100 Position Indicating Meter. Three Phase Motor Control. Positran Transmitter Standard Options Model 4100 Position Indicating Meter A percent-of-full-travel meter is supplied with a trim potentiometer resistor, terminal block and connectors. A potentiometer is required in the actuator

More information

464E PLC Trainer, Extended

464E PLC Trainer, Extended 464E PLC Trainer, Extended GENERAL DESCRIPTION A multi-use training platform allowing for instruction related to the programming and use of industrial PLCs. The basic device is provided without a PLC,

More information

Model# CKM18 Model# CKM36 Model# CKM48 WARNING

Model# CKM18 Model# CKM36 Model# CKM48 WARNING Installation Instructions Model# CKM18 Model# CKM36 Model# CKM48 WARNING HAZARDOUS VOLTAGES. DISCONNECT FROM SUPPLY BEFORE REMOVING COVERS. NO USER SERVICEABLE PARTS INSIDE. SERVICE BY QUALIFIED PERSONNEL

More information

PLC Fundamentals. Module 3: Programming with Function Blocks. Academic Services Unit PREPARED BY. August 2011

PLC Fundamentals. Module 3: Programming with Function Blocks. Academic Services Unit PREPARED BY. August 2011 PLC Fundamentals Module 3: Programming with Function Blocks PREPARED BY Academic Services Unit August 2011 Applied Technology High Schools, 2011 ATE1212 PLC Fundamentals Module 3: Programming with Function

More information

This Datasheet for the IC660BBD110. Block 115Vac Input 16 Circuits.

This Datasheet for the IC660BBD110. Block 115Vac Input 16 Circuits. This Datasheet for the IC660BBD110 Block 115Vac Input 16 Circuits http://www.cimtecautomation.com/parts/p-14435-ic660bbd110.aspx Provides the wiring diagrams and installation guidelines for this GE Series

More information

HOW TO REPLACE A PARKER INVERTER DRIVE WITH A YASKAWA V1000 INVERTER DRIVE

HOW TO REPLACE A PARKER INVERTER DRIVE WITH A YASKAWA V1000 INVERTER DRIVE HOW TO REPLACE A PARKER INVERTER DRIVE WITH A YASKAWA V1000 INVERTER DRIVE Important: Please read this document in its entirety before removing the Parker VFD drive and installing the Yaskawa V1000 drive.

More information

LIGHTING S. Table of Contents. Lighting Kimball Surfaces & Storage. Price List Effective Dates: Pricing Revision

LIGHTING S. Table of Contents. Lighting Kimball Surfaces & Storage. Price List Effective Dates: Pricing Revision LIGHTING S Table of Contents Price List Effective Dates: Pricing 07.02.18 Revision 06.15.18 See page page 7.2 Planning page 7.2 Pricing page 7.3 page 7.4 Planning page 7.4 Pricing page 7.5 for Use in Chicago

More information

Operating Instructions. For. Level Control Module. Model SSR 1000

Operating Instructions. For. Level Control Module. Model SSR 1000 Operating Instructions For Level Control Module Model SSR 1000 SSR Operation Instructions Rev. 1 Jan 01 Page 1/7 1. Note Please read and take note of these operating instructions before unpacking and commissioning.

More information

9/7/2010. Chapter , The McGraw-Hill Companies, Inc. MOTOR SYMBOLS. 2010, The McGraw-Hill Companies, Inc.

9/7/2010. Chapter , The McGraw-Hill Companies, Inc. MOTOR SYMBOLS. 2010, The McGraw-Hill Companies, Inc. Chapter 2 MOTOR SYMBOLS 1 Symbols are used to represent the different components of a motor control system. Symbols sometimes look nothing like the real thing, so we have to learn what the symbols mean.

More information

MFD Thermal Process Controller Manual

MFD Thermal Process Controller Manual MFD Thermal Process Controller Manual Dave Graul Mechanical Engineer Accelerator Department Jay Venti Systems Analyst Mechanical Fabrication Department Revised 10/5/00 Kathleen Ratcliffe & Kelley Ramsey

More information

Series 3000V Input/Output Board

Series 3000V Input/Output Board Part E, Section 1 Model Voltage Pump Manifold Control This section covers the following unit configurations. All All All All Vista Standard (V) Vista Pattern (PC) E 1-0 E 1-1 Section E 1 WARNING: Allow

More information

MFS605/EE605 Systems for Factory Information and Control

MFS605/EE605 Systems for Factory Information and Control MFS605/EE605 Systems for Factory Information and Control Lecture 9 PLCs (half lecture) Fall 2005 Larry Holloway Dept. of Electrical Engineering and Center for Robotics and Manufacturing Systems 1 So far

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS www.altroniccontrols.com INSTALLATION INSTRUCTIONS EXACTA 21 MONITORING AND CONTROL SYSTEM CAUTION: The EXACTA 21 CONTROL SYSTEM is CSA CERTIFIED FOR use in Class I, GROUPS C & D, Division 2 hazardous

More information

NHP SAFETY REFERENCE GUIDE

NHP SAFETY REFERENCE GUIDE NHP SAFETY REFERENCE GUIDE GSR SAFETY FUNCTION DOCUMENTS E-Stop Safety Function Table of Contents: Introduction 6-18 Important User Information 6-18 General Safety Information 6-19 Safety Function Realization

More information

G540 MANUAL MULTIAXIS STEP MOTOR DRIVE

G540 MANUAL MULTIAXIS STEP MOTOR DRIVE G540 MANUAL MULTIAXIS STEP MOTOR DRIVE PRODUCT DIMENSIONS PHYSICAL AND ELECTRICAL RATINGS Minimum Maximum Units Supply Voltage 18 50 VDC Motor Current 0 3.5 A Power Dissipation 1 13 W Short Circuit Trip

More information

ACCESS 9340/9360 Meter Input/Output Module

ACCESS 9340/9360 Meter Input/Output Module Installation Manual PMIM-IOMOD-0208 ACCESS 9340/9360 Meter Input/Output Module 9340-60-I/O2222 and 9340-60-I/O26 HAZARD CATEGORIES AND SPECIAL SYMBOLS Read these instructions carefully and look at the

More information

T7560A1036 Digital Wall Module

T7560A1036 Digital Wall Module T7560A1036 Digital Wall Module HONEYWELL EXCEL 5000 OPEN SYSTEM BEFORE INSTALLATION All wiring must comply with local electrical codes and ordinances or as specified on installation wiring diagrams. T7560A1036

More information

Casambi CBU-ASD. Bluetooth 4.0 Wireless Control Unit for LED Drivers. Features. 1 Description

Casambi CBU-ASD. Bluetooth 4.0 Wireless Control Unit for LED Drivers. Features. 1 Description Casambi CBU-ASD Bluetooth 4.0 Wireless Control Unit for LED Drivers Features Wirelessly controllable with a smart device. No need for an external gateway device. Forms automatically a fast wireless mesh

More information

CONTROL MICROSYSTEMS and 5407 Relay Output Module. Hardware Manual

CONTROL MICROSYSTEMS and 5407 Relay Output Module. Hardware Manual 506 and 507 Relay Output Module Hardware Manual CONTROL MICROSYSTEMS SCADA products... for the distance Steacie Drive Telephone: 63-59-93 Kanata, Ontario Facsimile: 63-59-0 KK A9 Technical Support: -6-676

More information

Overview. The DIN-RS232 has three primary functions: Isolated parallel RS-232 interface Fused power distribution Animatics peripheral expansion bus

Overview. The DIN-RS232 has three primary functions: Isolated parallel RS-232 interface Fused power distribution Animatics peripheral expansion bus user s guide DIN - RS232 user s manual 2 Overview The DIN-RS232 is a DIN rail mount breakout for SmartMotor RS-232 communications. It allows a single master to communicate with up to eight SmartMotors

More information

APPLICATION CONTROL GUIDELINES. IntelliROL Power Supply PN Revision Date: March 15, 2017

APPLICATION CONTROL GUIDELINES. IntelliROL Power Supply PN Revision Date: March 15, 2017 APPLICATION CONTROL GUIDELINES IntelliROL Power Supply PN 1176718 Revision Date: March 15, 2017 Table of Contents List of Tables...3 TGW Safety Recommendation...4 Warnings and Safety Instructions...5 Introduction...6

More information

Instruction Manual. M Pump Motor Controller. For file reference, please record the following data:

Instruction Manual. M Pump Motor Controller. For file reference, please record the following data: Instruction Manual M Pump Motor Controller For file reference, please record the following data: Model No: Serial No: Installation Date: Installation Location: When ordering replacement parts for your

More information

ETM-2050/ETM-2051 Service Manual

ETM-2050/ETM-2051 Service Manual Introduction Novar s Electronic Thermostat Modules (ETMs) are intelligent control modules that provide local, direct digital control of unitary, packaged, staged HVAC systems. This document: Describes

More information

Copyright 2014, R. Eckweiler & OCARC, Inc. Page 1 of 6

Copyright 2014, R. Eckweiler & OCARC, Inc. Page 1 of 6 HOM rev. new Heathkit of the Month: by Bob Eckweiler, AF6C Heathkit of the Month #52 - SK-211 AC Monitor Heathkit SK-211 AC Monitor Introduction: When club president, Nicholas - AF6CF, mentioned he had

More information

When any of the following symbols appear, read the associated information carefully. Symbol Meaning Description

When any of the following symbols appear, read the associated information carefully. Symbol Meaning Description Uni-I/O Modules Installation Guide UIA-0402N Uni-I/O is a family of Input/Output modules that are compatible with the UniStream control platform. This guide provides basic installation information for

More information

G540 User Manual. Date Modified: March 5, 2012 Page 1 of 10

G540 User Manual. Date Modified: March 5, 2012 Page 1 of 10 G540 User Manual Date Modified: March 5, 2012 Page 1 of 10 DIMENSIONS PHYSICAL AND ELECTRICAL RATINGS Minimum Maximum Units Supply Voltage 18 50 VDC Motor Current 0 3.5 A Power Dissipation 1 13 W Short

More information

Button Code Kit. Assembly Instructions and User Guide. Single Button Code Entry System

Button Code Kit. Assembly Instructions and User Guide. Single Button Code Entry System Button Code Kit Single Button Code Entry System Assembly Instructions and User Guide Rev 1.0 December 2009 www.alan-parekh.com Copyright 2009 Alan Electronic Projects Inc. 1. Introduction... 4 1.1 Concept

More information

Suprex RS-485 SPX-7500 Wired Reader-Extender

Suprex RS-485 SPX-7500 Wired Reader-Extender Suprex RS-485 SPX-7500 Wired Reader-Extender Product Manual SPX-7500_MAN_181206 Cypress Integration Solutions 35 Years of Access Control Ingenuity CypressIntegration.com 2018 Cypress Computer Systems 1778

More information

2010, 2013 Azatrax.com MRD2-S USB with Switch Control installation instructions pg. 1 of 6

2010, 2013 Azatrax.com MRD2-S USB with Switch Control installation instructions pg. 1 of 6 Installation Instructions Azatrax Dual Infrared Model Train Detector MRD2-S, USB with Switch Control What it is: The MRD2-S is a two-channel model train detector. It can detect model trains at two different

More information

CNK200 Cable-Nook Interconnect Box

CNK200 Cable-Nook Interconnect Box CNK200 Cable-Nook Interconnect Box Welcome! We greatly appreciate your purchase of the CNK200 Cable-Nook Interconnect Box. We are sure you will find it reliable and simple to use. Superior performance

More information

UNIPORT V2. Uniport V2

UNIPORT V2. Uniport V2 UNIPORT V2 Uniport V2 USB powered Parallel port interconnection board with optical isolated inputs, buffered outputs, charge pump interlock and power relays Specification Full optical isolation of all

More information

BNS SERIES - COMPATIBLE SERIES AES SAFETY CONTROLLERS SELECTION CHART AVAILABLE STANDARD MODELS

BNS SERIES - COMPATIBLE SERIES AES SAFETY CONTROLLERS SELECTION CHART AVAILABLE STANDARD MODELS BNS SERIES - COMPATIBLE SERIES AES SAFETY CONTROLLERS SELECTION CHART AVAILABLE STANDARD MODELS Safety Controller Suitable for use with Coded-Magnet Sensor Part Numbers below BNS250... BNS33... BNS303...

More information

G540 4-AXIS DRIVE REV 4: MAY 28, 2010

G540 4-AXIS DRIVE REV 4: MAY 28, 2010 Thank you for choosing to purchase the G540 4-Axis Drive System. If you are dissatisfied with it for any reason at all within two weeks of its purchase date, you may return it for a full refund provided

More information

ControlKeeper 4. General Information. Connecting Relay Loads. Installation Sheet. Getting Started. Power Supply Wiring. Mounting the Cabinet

ControlKeeper 4. General Information. Connecting Relay Loads. Installation Sheet. Getting Started. Power Supply Wiring. Mounting the Cabinet General Information ControlKeeper 4 Installation Sheet Model# CK4-120NO- Model# CK4-277NO The ControlKeeper-4 model is shipped in one package and is configured with either a 120V or a 277V transformer.

More information

Installation Guide V290 (Color) This guide provides basic information for Unitronics LCD color touchscreen models V C30B and V T40B.

Installation Guide V290 (Color) This guide provides basic information for Unitronics LCD color touchscreen models V C30B and V T40B. Vision OPLC Installation Guide V290 (Color) This guide provides basic information for Unitronics LCD color touchscreen models V290-19-C30B and V290-19-T40B. General Description Vision OPLCs are programmable

More information

PS/IO Circuit Board Retrofit

PS/IO Circuit Board Retrofit S&C 6800 Series Automatic Switch Controls PS/IO Circuit Board Retrofit Table of Contents Section Page Introduction Qualified Persons.... 2 Read this Instruction Sheet.... 2 Retain this Instruction Sheet....

More information

Now with Picture Memory

Now with Picture Memory Intrasonic Technology, Inc. Color Video Door Phone / Intercom Installer s Manual Model No.V304KIT-R Now with Picture Memory Please read this manual carefully before the products are installed.technical

More information

Scientech Universal PLC Platform. Features. New

Scientech Universal PLC Platform. Features. New New In today's environment of automation, the importance of PLC has rapidly increased. Universal PLC Platform is an ideal setup to study the working of PLC's used for industrial applications. has been

More information

Thanks for shopping with Improvements! Lighted Canterbury Christmas Greenery Doorway Arch Item #548443

Thanks for shopping with Improvements! Lighted Canterbury Christmas Greenery Doorway Arch Item #548443 Thanks for shopping with Improvements! Lighted Canterbury Christmas Greenery Doorway Arch Item #548443 IMPORTANT, RETAIN FOR FUTURE REFERENCE: READ CAREFULLY. PARTS LIST: 2 Metal Plate Stands 5 Greenery

More information

Familiarization with the PLC Trainer and RSLogix 500

Familiarization with the PLC Trainer and RSLogix 500 Exercise 1 Familiarization with the PLC Trainer and RSLogix 500 EXERCISE OBJECTIVES To become familiar with the Lab-Volt PLC Trainer To run the RSLogix 500 software. To enter the default project files

More information

Product Manual Pushbutton Station for Modicon Programmable Controller MODBUS Interface

Product Manual Pushbutton Station for Modicon Programmable Controller MODBUS Interface Product Manual 8652 Pushbutton Station for Modicon Programmable Controller MODBUS Interface Quartech Corporation 15923 Angelo Drive Macomb Township, Michigan 48042-4050 Phone: (586) 781-0373 FAX: (586)

More information

Exercise 5-1. Electrical Circuit and Panel EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. Detailed electrical schematic

Exercise 5-1. Electrical Circuit and Panel EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. Detailed electrical schematic Exercise 5-1 Electrical Circuit and Panel EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the trainer electrical schematic and components. DISCUSSION OUTLINE The Discussion

More information

Optional Accessories 6 2

Optional Accessories 6 2 Accessories Chapter 6 Table of Contents Optional Accessories 6 2 Finger Guards 6 2 Remote Touchscreen 6 3 RJ45 to RJ12 Adapter 6 5 Serial Modbus Communication Splitter 6 5 Communication Modules 6 7 Replacement/Spare

More information

Introduction. Upon completion of Basics of PLCs you should be able to: Identify the major components of a PLC and describe their functions

Introduction. Upon completion of Basics of PLCs you should be able to: Identify the major components of a PLC and describe their functions Table of Contents Introduction... 2 PLCs... 4 Number Systems... 8 Terminology... 14 Basic Requirements... 23 S7-200 Micro PLCs... 29 Connecting External Devices... 40 Programming A PLC... 42 Discrete Inputs/Outputs...

More information

Operating Instructions. Power Supply & Latching Relay For Switches Model: RL manual_rl-6000_1016

Operating Instructions. Power Supply & Latching Relay For Switches Model: RL manual_rl-6000_1016 Operating Instructions Power Supply & Latching Relay For Switches Model: RL-6000 manual_rl-6000_1016 1. Contents 1. Contents...2 2. Note...3 3. Instrument Inspection...3 4. Regulation Use...3 5. Operating

More information