ENGR 1000, Introduction to Engineering Design

Size: px
Start display at page:

Download "ENGR 1000, Introduction to Engineering Design"

Transcription

1 Unit 2: Mechatronics ENGR 1000, Introduction to Engineering Design Lesson 2.3: Controlling Independent Systems Hardware: 12 VDC power supply Several lengths of wire NI-USB 6008 Device with USB cable Digital I/O Interface Board for the NI-USB 6008 Device Solid State Relay and 120 VAC light Ping-pong ball shuffler with 3 or more balls Objectives: Work effectively in a cooperative learning environment. Explain the characteristics and function of the digital line I/O on the NI USB device. Explain the characteristics and function of a solenoid. Explain the characteristics and function of a solid state relay. Wire a solid state relay to control 120 VAC circuit. Write a simple program in LabVIEW using multiple inputs to control multiple systems using the following new command: DAQ Assistant (digital line input and output) Programming LabVIEW Controlling Multiple Systems Introduction In this lesson we will control two separate systems so they operate independently of each other. A 120 VAC light will serve as one system and a ping pong ball feeder will serve as the second system. To control the 120VAC light we will use 12 VDC from the NI USB-6008 Digital Interface which will switch a solid state relay to turn on and off the 120 VAC light. A solid state relay acts as a switch with no moving parts to wear. It consists of an electronic circuit that typically controls a larger current with a smaller current or a signal current. In this case we will control 120 VAC (up to 10 amps) with a 12 VDC signal. 1

2 The ping pong ball feeder is a tube set at 45 degrees that uses gravity and two solenoids to control the delivery of balls. A solenoid is an actuator that produces a short, light, quick linear motion. The motion is the result of the attraction and movement of a steel rod into a magnetic field created when current is passed through a coil of wire. A spring is typically used to return the solenoid to its original position after the current is discontinued. The solenoids used in the ball feeder will extend a steel pin when energized and block the flow of balls. When not energized, the pin is retracted allowing the flow of balls. Example 1a Our first example will use the 120VAC solid state relay. It will perform the following function. Conditions Switch 1 is high Switch 1 is low the light turns on the light turns off 120 VAC Light Wire port 0 to control the 120 VAC Light. Connect switch 1 to port 0 line 0, and the solid state relay to port 0 line 1 (be sure to match the polarity required of the relay s input). Wiring Diagram for the Solid State Relay??? Programming a DAQ Assistant as a Digital Line Input Our first step will be to create a While Loop (with a stop button) large enough to hold two Case Structures, one for each system. As in previous lessons, create a DAQ Assistant to sense inputs on port0/line0. Remember to check the Invert Line box. To help with the interpretation of your program, rename the DAQ P0.0 IN, identifying it as an input controlling port 0 line 0. At the moment, this array only has one Boolean element. As in the previous lesson, place an Index Array command, along with an accompanying constant, next to the DAQ. Create an indicator, place it in a convenient location and rename it. Notice that the indicator created is a Boolean indicator, showing only whether the value of port 0/line 0 is True or False, high or low. Now create a Case Structure to the right of the Boolean indicator. See the previous lesson for the instructions to create a Case Structure. Wire the output of the Index Array to the selector terminal (question mark) of the Case Structure. Your program should look similar to the graphic below. 2

3 Programming a DAQ Assistant as a Digital Line Output Place another DAQ Assistant inside the True case of the Case Structure. Configure it for port0/line1. Leave the Invert Line box unchecked. To once again help with the interpretation of your program, rename the DAQ, P0.1 OUT, identifying it as an output controlling port 0 line 1. Create a constant to control the DAQ by right clicking on the data bar and selecting Create and Constant from the submenu. As in the first lesson, we will remove the Index Display and only deal with the first element. Use the Operate Value (finger) tool to change the value of the constant to True. Copy and paste both the DAQ Assistant and the accompanying constant into the False case. Change the constant s value to false in this case. Your program should look similar to the graphic below. Remember to save your program. It can be run now and will control the 120 VAC Solid State relay. The 120 VAC lamp should turn on and off with the change of state of the switch. Example 1b An easier way 3

4 The DAQ Assistants are designed to be able to communicate directly. In this simple case our program can be simplified because (1)we only have the same number of inputs and outputs and (2)the inputs and outputs are always the same. (Meaning that if the input is true than the corresponding output is true and if the input is false than the corresponding output is also false.) These conditions only occur in very simple programs, but since our program meets these criteria we can simplify our program by rearranging it to be as in the graphic below. This program is identical to the previous. If the input is high, the output will also be high and if the input is low the output will be the same. Example 2a Our second example will incorporate the ping pong ball feeder. It will perform the following function. Switch 2 is high Switch 2 is low Conditions Ping Pong Ball Feeder a ball is fed every 3 seconds no balls are fed Note: These two systems DO NOT operate independent of each other. We will separate them in example 2b. Connect switch 2 to port 1 line 0, the lower solenoid of the ball feeder to port 1 line 1, and the upper solenoid to port 1 line 2. Wiring diagram for the ping pong ball feeder??? Adding Lines to a DAQ Assistant 4

5 In order to continue, we need to reconfigure the DAQ Assistant to deal with multiple line inputs. Right click on the input DAQ and select Properties. The same DAQ Assistant window will open as the one that opens when building a DAQ Assistant. Notice the section in the upper left (see figure to the right). Click on the double arrows next to the Show Details command. The section will expand and list Dev1/port0/line0 as the 0 th DigitalIn channel in the task. Add a channel by clicking on the blue plus (+) in the top options bar. The Add Channels To Task window will open. Select port 1/line 0. Select OK at the bottom of the window. Notice that these two lines now appear as channels in the DAQ task. The second column in the task details shows you which line comes in which order. Our newly added input is listed as the 1 st channel in the DAQ. Click on the double arrows again to hide the details of the task. These input lines should already have the Invert Line box in the Settings section checked. Double check to make sure this is the case by selecting each DigitalIn line and assuring the check box is marked. Once this is done, click OK in the lower right side. The DAQ will once again configure. Rename this DAQ Assistant, P0.0, 1.0 IN, to better reflect what it does (the automatic feature of the tool palette needs to be on if using a left double click to rename). The DAQ Assistant now has two available channels, the 0 th element and the 1 st element of the Boolean array. The 0 th element is still being used by the first system, the 120 VAC light bulb. In order to be able to use the 1 st element it needs to be isolated from the Boolean array. Place another Index Array command below the first and wire the Boolean array from the DAQ Assistant to the array node of the new Index Array command. Right click on the index node and select Create and Constant in the sub menu. Change the constant to a one. Right click on the element node and select Create and Indicator in the sub menu. To help with the interpretation of your program rename this indicator P0.1 IN. Remember to place your indicator on the Front Panel in a convenient location. Your program should look similar to the graphic below. 5

6 Insert a second Case Structure below the first and wire the right side of the Index Array command to the Selector Terminal of the second Case Structure. Inside the True case, add a Stacked Sequence Structure. Build a DAQ Assistant as a Line Output using lines port 1/line1 and port 1/line 2. Do not invert the lines because it is an output device. Build a Boolean Constant to control the DAQ. This time, hover over the bottom edge of the array and expand it so that it shows two Boolean values. (Make sure your not trying to hover over the Boolean value inside the array to expand it, but that you are actually hovering over the outer edge of the array to make it show more values.) With the Operate Value tool make the first value False and the second True. Remove the Index Display from the Boolean Array. Add a Wait (ms) timer and give it a value of 1500 (1.5 seconds). Duplicate the frame and change the Boolean Array in frame 1 to have a True value for the first element and a False value for the second element. Copy the DAQ Assistant and accompanying array in frame 1 and paste them into the False case of the Case Structure. This sequence will feed one ball through the ball feeder every time it executes. The wait timer will ensure that it executes every three seconds as long as the switch is high. Remember to save your program. The finished product should look similar to the diagrams below. Front Panel 6

7 Block Diagram Top Boolean Case Structures Bottom Boolean Case Structures 7

8 Notice that these two systems are not independent. While the ping pong ball feeder is in operation the light will only change states after the ball feeder has completed one cycle. Example 2b Making them independent To make these two systems truly independent we need to separate them into two separate while loops. First create a second While Loop under the first. Using a click-and-drag technique highlight everything that works with the ping pong ball feeder with the exception of the DAQ Assistant. Move these objects into the second While Loop. Your program should look similar to the graphic below. Edit P0.0, 1.0 IN and remove the line for port1/line0. Change the name to reflect the change in programming. Create a second DAQ Assistant in the second While Loop that will control this same line and rename it to help with the interpretation of your program. Wire the new DAQ Assistant to the Index Array in the second loop and change its constant to 0. Press ctrl+b to clear any remaining broken lines. With some organization, your program should look similar to the graphic below. 8

9 The two systems are now independent of each other. Even while the ping pong ball feeder is active the light will still turn on and off without having to wait. 9

10 Team Assignment As a team, write a program to control the following two systems and their sequences depending on the conditions of three toggle switches. Refer to lesson 2.2 for extra help. Conditions 120 VAC Light Switch 1 is high the light turns on Switch 1 is low the light turns off Conditions Ping Pong Ball Feeder Switch 2 is high & Switch 3 is low a ball is fed every 3 seconds Switch 2 is low & Switch 3 is high a ball is fed every 4 seconds Switches 2 & 3 are high a ball is fed every 6 seconds Switches 2 & 3 are low no balls are fed Wire the solid state relay controlling the 120 VAC light to port 0 line 0. Wire the lower solenoid of the ball feeder to port 0 line 1, and the upper solenoid to port 0 line 2. Connect switch 1 to port 0 line 3, switch 2 to port 0 line 4 and switch 3 to port 0 line 5. Save your program on a removable storage device under the name HW2-3T# (use your team number in place of the # symbol). Have the next person representing your team turn in your team assignment at the beginning of the next lab. Each person in your team should be able to perform this assignment and the lesson s objectives independently. Each of you will have an opportunity to demonstrate your knowledge independently on a quiz. A team is successful when all members are able to demonstrate the objectives. Have fun with the control technology and helping each other learn the material. 10

ENGR 1000, Introduction to Engineering Design

ENGR 1000, Introduction to Engineering Design ENGR 1000, Introduction to Engineering Design Unit 2: Data Acquisition and Control Technology Lesson 2.4: Programming Digital Ports Hardware: 12 VDC power supply Several lengths of wire NI-USB 6008 Device

More information

Data Acquisition Using LabVIEW

Data Acquisition Using LabVIEW Experiment-0 Data Acquisition Using LabVIEW Introduction The objectives of this experiment are to become acquainted with using computer-conrolled instrumentation for data acquisition. LabVIEW, a program

More information

Lab experience 1: Introduction to LabView

Lab experience 1: Introduction to LabView Lab experience 1: Introduction to LabView LabView is software for the real-time acquisition, processing and visualization of measured data. A LabView program is called a Virtual Instrument (VI) because

More information

Basic LabVIEW Programming Amit J Nimunkar, Sara Karle, Michele Lorenz, Emily Maslonkowski

Basic LabVIEW Programming Amit J Nimunkar, Sara Karle, Michele Lorenz, Emily Maslonkowski Introduction This lab familiarizes you with the software package LabVIEW from National Instruments for data acquisition and virtual instrumentation. The lab also introduces you to resistors, capacitors,

More information

Fig. 1. The Front Panel (Graphical User Interface)

Fig. 1. The Front Panel (Graphical User Interface) ME 4710 Motion and Control Data Acquisition Software for Step Excitation Introduction o These notes describe LabVIEW software that can be used for data acquisition. The overall software characteristics

More information

Automation Interface Requirements for J602 Basic I/O Interface of a DPC 4 Welding System

Automation Interface Requirements for J602 Basic I/O Interface of a DPC 4 Welding System - 1 - Automation Interface Requirements for J602 Basic I/O Interface of a DPC 4 Welding System The DPC 4 welding system offers several features that are intended to communicate with automation. These features

More information

DSP Laboratory: Analog to Digital and Digital to Analog Conversion *

DSP Laboratory: Analog to Digital and Digital to Analog Conversion * OpenStax-CNX module: m13035 1 DSP Laboratory: Analog to Digital and Digital to Analog Conversion * Erik Luther This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution

More information

Sentinel I24 Digital Input and Output Configuration

Sentinel I24 Digital Input and Output Configuration Application Bulletin: #155 Date: October 19, 2007 Sentinel I24 Digital Input and Output Configuration The Sentinel I24 can communicate with external hardware using digital inputs and outputs. There are

More information

Introduction To LabVIEW and the DSP Board

Introduction To LabVIEW and the DSP Board EE-289, DIGITAL SIGNAL PROCESSING LAB November 2005 Introduction To LabVIEW and the DSP Board 1 Overview The purpose of this lab is to familiarize you with the DSP development system by looking at sampling,

More information

ME EN 363 ELEMENTARY INSTRUMENTATION Lab: Basic Lab Instruments and Data Acquisition

ME EN 363 ELEMENTARY INSTRUMENTATION Lab: Basic Lab Instruments and Data Acquisition ME EN 363 ELEMENTARY INSTRUMENTATION Lab: Basic Lab Instruments and Data Acquisition INTRODUCTION Many sensors produce continuous voltage signals. In this lab, you will learn about some common methods

More information

Virtual instruments and introduction to LabView

Virtual instruments and introduction to LabView Introduction Virtual instruments and introduction to LabView (BME-MIT, updated: 26/08/2014 Tamás Krébesz krebesz@mit.bme.hu) The purpose of the measurement is to present and apply the concept of virtual

More information

Integration of Virtual Instrumentation into a Compressed Electricity and Electronic Curriculum

Integration of Virtual Instrumentation into a Compressed Electricity and Electronic Curriculum Integration of Virtual Instrumentation into a Compressed Electricity and Electronic Curriculum Arif Sirinterlikci Ohio Northern University Background Ohio Northern University Technological Studies Department

More information

Table of Contents Introduction

Table of Contents Introduction Page 1/9 Waveforms 2015 tutorial 3-Jan-18 Table of Contents Introduction Introduction to DAD/NAD and Waveforms 2015... 2 Digital Functions Static I/O... 2 LEDs... 2 Buttons... 2 Switches... 2 Pattern Generator...

More information

Analyzing and Saving a Signal

Analyzing and Saving a Signal Analyzing and Saving a Signal Approximate Time You can complete this exercise in approximately 45 minutes. Background LabVIEW includes a set of Express VIs that help you analyze signals. This chapter teaches

More information

(Skip to step 11 if you are already familiar with connecting to the Tribot)

(Skip to step 11 if you are already familiar with connecting to the Tribot) LEGO MINDSTORMS NXT Lab 5 Remember back in Lab 2 when the Tribot was commanded to drive in a specific pattern that had the shape of a bow tie? Specific commands were passed to the motors to command how

More information

Capstone Experiment Setups & Procedures PHYS 1111L/2211L

Capstone Experiment Setups & Procedures PHYS 1111L/2211L Capstone Experiment Setups & Procedures PHYS 1111L/2211L Picket Fence 1. Plug the photogate into port 1 of DIGITAL INPUTS on the 850 interface box. Setup icon. the 850 box. Click on the port 1 plug in

More information

DM1624, DM1612, DM812

DM1624, DM1612, DM812 Installation Guide Hardware and Software DM Series Digital Processors models DM1624, DM1612, DM812 LECTROSONICS, INC. 1 Installation Specific Information Only This guide covers only installation related

More information

PRODUCT MANUAL. Product Description. Waterproof 4 Channel DMX to RGB-W LED Controller

PRODUCT MANUAL. Product Description. Waterproof 4 Channel DMX to RGB-W LED Controller 4 Channel to RGB-W LED Controller Waterproof 4 Channel to RGB-W LED Controller Product Description Thank you for purchasing Solid Apollos Waterproof 4 Channel to RGBW LED Controller. It is a new standard

More information

Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display.

Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display. Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display. Your Stack ST8961 VS module allows you to synchronize, overlay, and record data available on your Stack

More information

Defining and Labeling Circuits and Electrical Phasing in PLS-CADD

Defining and Labeling Circuits and Electrical Phasing in PLS-CADD 610 N. Whitney Way, Suite 160 Madison, WI 53705 Phone: 608.238.2171 Fax: 608.238.9241 Email:info@powline.com URL: http://www.powline.com Defining and Labeling Circuits and Electrical Phasing in PLS-CADD

More information

DX-10 tm Digital Interface User s Guide

DX-10 tm Digital Interface User s Guide DX-10 tm Digital Interface User s Guide GPIO Communications Revision B Copyright Component Engineering, All Rights Reserved Table of Contents Foreword... 2 Introduction... 3 What s in the Box... 3 What

More information

The user manual of LED display screen and RH-32G control card.

The user manual of LED display screen and RH-32G control card. The user manual of LED display screen and RH-32G control card. ⅠHardware parameters 1 The maximum number of points P10 solid color:32*768 32*256(2 pieces high and 24 pieces wide;2 pieces high and 8 pieces

More information

WCS-V82 Programming Software for the Icom IC-V82

WCS-V82 Programming Software for the Icom IC-V82 for the Icom IC-V82 Memory Types Memories Limit Memories Call Channel Memory Channel Functions Polarity Skip Bank The WCS-V82 Programmer is designed to give you the ease and convenience of programming

More information

BooBox Flex. OPERATING MANUAL V1.1 (Feb 24, 2010) 6 Oakside Court Barrie, Ontario L4N 5V5 Tel: Fax:

BooBox Flex. OPERATING MANUAL V1.1 (Feb 24, 2010) 6 Oakside Court Barrie, Ontario L4N 5V5 Tel: Fax: BooBox Flex OPERATING MANUAL V1.1 (Feb 24, 2010) 6 Oakside Court Barrie, Ontario L4N 5V5 Tel: 905-803-9274 Fax: 647-439-1470 www.frightideas.com Connections The BooBox Flex is available with Terminal Blocks

More information

Advantys STB DATA SHEET. Advantys STB Output Module. Description. Features

Advantys STB DATA SHEET. Advantys STB Output Module. Description. Features Advantys STB Advantys STB Output Module DATA SHEET Description The Advantys model STBDAO5260 Digital Output Module provides 2 isolated discrete output points that operate on a 115 VAC power source. The

More information

Foreword: The purpose of this document is to describe how to install and configure Neets 4 relay box

Foreword: The purpose of this document is to describe how to install and configure Neets 4 relay box Foreword: The purpose of this document is to describe how to install and configure Neets 4 relay box COPYRIGHT All information contained in this manual is the intellectual property of and copyrighted material

More information

Quick Reference Manual

Quick Reference Manual Quick Reference Manual V1.0 1 Contents 1.0 PRODUCT INTRODUCTION...3 2.0 SYSTEM REQUIREMENTS...5 3.0 INSTALLING PDF-D FLEXRAY PROTOCOL ANALYSIS SOFTWARE...5 4.0 CONNECTING TO AN OSCILLOSCOPE...6 5.0 CONFIGURE

More information

E X P E R I M E N T 1

E X P E R I M E N T 1 E X P E R I M E N T 1 Getting to Know Data Studio Produced by the Physics Staff at Collin College Copyright Collin College Physics Department. All Rights Reserved. University Physics, Exp 1: Getting to

More information

USER S GUIDE. 1 Description PROGRAMMABLE 3-RELAY LOGIC MODULE

USER S GUIDE. 1 Description PROGRAMMABLE 3-RELAY LOGIC MODULE 1 Description The is a programmable 3 relay logic module that may be used for multiple applications, including simple timing, door mounted sensor inhibiting and advanced relay sequencing. The contains

More information

Artistic Licence Engineering Ltd Firmware Version V3.03 Manual Revision V1-9

Artistic Licence Engineering Ltd Firmware Version V3.03 Manual Revision V1-9 Light-Switch & Switch-Edit Artistic Licence Engineering Ltd Firmware Version V3.03 Manual Revision V1-9 Artistic Licence Engineering Ltd. Switch-Edit Manual 2/47 Artistic Licence Engineering Ltd. Switch-Edit

More information

Provides an activation of Relay 1 triggered by Input 1. The function also provides an option for reverse-logic on the activation of Input 1.

Provides an activation of Relay 1 triggered by Input 1. The function also provides an option for reverse-logic on the activation of Input 1. USER S GUIDE PROGRAMMABLE 3-RELAY LOGIC MODULE 1 Description The is a programmable 3 relay logic module that may be used for multiple applications, including simple timing, door mounted sensor inhibiting

More information

ORM0022 EHPC210 Universal Controller Operation Manual Revision 1. EHPC210 Universal Controller. Operation Manual

ORM0022 EHPC210 Universal Controller Operation Manual Revision 1. EHPC210 Universal Controller. Operation Manual ORM0022 EHPC210 Universal Controller Operation Manual Revision 1 EHPC210 Universal Controller Operation Manual Associated Documentation... 4 Electrical Interface... 4 Power Supply... 4 Solenoid Outputs...

More information

Digital Ratio Controller

Digital Ratio Controller Digital Ratio Controller RSC-406 Control Panel USER S MANUAL RATIO CONTROLLER SPEED RUN PRG ERR RATIO % CH RSC-406 Prelude Thank you for applying our RSC-406 Ratio Controller (abb.406) to you machinery

More information

2 Select the magic wand tool (M) in the toolbox. 3 Click the sky to select that area. Add to the. 4 Click the Quick Mask Mode button(q) in

2 Select the magic wand tool (M) in the toolbox. 3 Click the sky to select that area. Add to the. 4 Click the Quick Mask Mode button(q) in ADOBE PHOTOSHOP 4.0 FUNDAMENTALS A mask works like a rubylith or frisket, covering part of the image and selecting the rest. In Adobe Photoshop, you can create masks using the selection tools or by painting

More information

LabView Exercises: Part III

LabView Exercises: Part III Physics 3100 Electronics, Fall 2008, Digital Circuits 1 LabView Exercises: Part III The working VIs should be handed in to the TA at the end of the lab. This is a lab under development so we may experience

More information

MonitorKey Operation Manual: content/uploads/ MonitorKey Operation Manual.pdf

MonitorKey Operation Manual:   content/uploads/ MonitorKey Operation Manual.pdf Additional Resources: MonitorKey Operation Manual: www.editraffic.com/wp content/uploads/888 1212 001 MonitorKey Operation Manual.pdf CMUip 2212 Operation Manual: www.editraffic.com/wp content/uploads/888

More information

LDG ALK-2 Two-Port Audio/Linear/Key Switch

LDG ALK-2 Two-Port Audio/Linear/Key Switch ALK-2 OPERATIONS MANUAL MANUAL REV A LDG ALK-2 Two-Port Audio/Linear/Key Switch LDG Electronics 1445 Parran Road St. Leonard MD 20685-2903 USA Phone: 410-586-2177 Fax: 410-586-8475 ldg@ldgelectronics.com

More information

Solutions to Embedded System Design Challenges Part II

Solutions to Embedded System Design Challenges Part II Solutions to Embedded System Design Challenges Part II Time-Saving Tips to Improve Productivity In Embedded System Design, Validation and Debug Hi, my name is Mike Juliana. Welcome to today s elearning.

More information

Bruce Chubb s Computer/Model Railroad Interface (C/MRI) 101- The Basics

Bruce Chubb s Computer/Model Railroad Interface (C/MRI) 101- The Basics Bruce Chubb s Computer/Model Railroad Interface (C/MRI) 101- The Basics By Jay Beckham http://jaysoscalelayout.blogspot.com/ james@thebeckhams.us Visit the layout Sunday Afternoon 1 My presentation is

More information

COILING LAYING CUTTING

COILING LAYING CUTTING CABLE COILERS COILING LAYING CUTTING 2 COIL CABLES QUICKLY AND EFFICIENTLY The cable coilers from ramatech are outstandingly powerful and flexible peripherals. Cables and flexible wires up to a diameter

More information

KRS-V7A Programming Software for the Kenwood TM-V7A

KRS-V7A Programming Software for the Kenwood TM-V7A for the Kenwood TM-V7A Memory Types VHF Memories UHF Memories VHF Limit Memories UHF Limit Memories VFO Call Channel Memory Channel Functions Name Skip The KRS-V7A Programmer is designed to give you the

More information

PhidgetTextLCD with 8/8/8

PhidgetTextLCD with 8/8/8 PhidgetTextLCD with 8/8/8 Operating Systems: Windows 2000/XP/Vista, Windows CE, Linux, and Mac OS X Application Programming Interfaces (APIs): Visual Basic, VB.NET, C, C++, C#, Flash 9, Flex, Java, LabVIEW,

More information

FS1-X. Quick Start Guide. Overview. Frame Rate Conversion Option. Two Video Processors. Two Operating Modes

FS1-X. Quick Start Guide. Overview. Frame Rate Conversion Option. Two Video Processors. Two Operating Modes FS1-X Quick Start Guide Overview Matching up and synchronizing disparate video and audio formats is a critical part of any broadcast, mobile or post-production environment. Within its compact 1RU chassis,

More information

Features/Specifications

Features/Specifications Introduction Thank you for purchasing the DD Audio DSI-1(Digital Signal Integrator). The DSI-1 is a feature rich audio signal processor that will allow you to precisely tune the acoustics of your car audio

More information

WCS-D800 Programming Software for the Icom ID-800

WCS-D800 Programming Software for the Icom ID-800 for the Icom ID-800 Memory Types Memories Limit Memories VFO Call Channels Receive Frequency Name Show Name Rx Memory Channel Functions TX Power Skip Bank Comments The WCS-D800 Programmer is designed to

More information

Special Applications Modules

Special Applications Modules (IC697HSC700) datasheet Features 59 1 IC697HSC700 a45425 Single slot module Five selectable counter types 12 single-ended or differential inputs TTL, Non-TTL and Magnetic Pickup input thresholds Four positive

More information

Altera s Max+plus II Tutorial

Altera s Max+plus II Tutorial Altera s Max+plus II Tutorial Written by Kris Schindler To accompany Digital Principles and Design (by Donald D. Givone) 8/30/02 1 About Max+plus II Altera s Max+plus II is a powerful simulation package

More information

(((((((((<<<<<<<<<<<<<<<<<<<<Q

(((((((((<<<<<<<<<<<<<<<<<<<<Q Application Note AN-0010 TR-3200 Tally Router Application Guide Quartz routers are often used to route signals to a vision mixer that is feeding a transmission path. In this situation users need to know

More information

SZU OPERATING INSTRUCTIONS SAT NAVI

SZU OPERATING INSTRUCTIONS SAT NAVI SZU 21-00 O P ER ATI N G I N S T R U C T I O N S SAT NAVI Operation Instructions SZU 21-00 Safety Notes Turn off the receiver or any used power supply before installing, to avoid short-circuit. Installation

More information

Summit Systems Sound Board Modification

Summit Systems Sound Board Modification Summit Systems Sound Board Modification The Summit slots fitted with the music feature play two sounds; one when the coin is inserted, and the other that plays as winning coins pass through the hopper

More information

This document describes the different ways to allow the automation system to close a gpi contact from the transmission list.

This document describes the different ways to allow the automation system to close a gpi contact from the transmission list. GPI BOARD (RELAY ACTUATOR & ISOLATED D/I CARD) Date: August 03, 2000 This document describes the different ways to allow the automation system to close a gpi contact from the transmission list. CABLE REQUIREMENTS

More information

1.1 Cable Schedule Table

1.1 Cable Schedule Table Category 1 1.1 Cable Schedule Table The Cable Schedule Table is all objects that have been given a tag number and require electrical linking by the means of Power Control communications and Data cables.

More information

Press Publications CMC-99 CMC-141

Press Publications CMC-99 CMC-141 Press Publications CMC-99 CMC-141 MultiCon = Meter + Controller + Recorder + HMI in one package, part I Introduction The MultiCon series devices are advanced meters, controllers and recorders closed in

More information

Yosemite in HO FROM HALFDOME TO CAMP CURRY

Yosemite in HO FROM HALFDOME TO CAMP CURRY Yosemite in HO FROM HALFDOME TO CAMP CURRY Don Evans 6x9 layout 07/11/2008 What is it? This document describes a 6-foot by 9-foot HO scale model railroad layout, created in the single car garage walled

More information

PHY 351/651 LABORATORY 9 Digital Electronics The Basics

PHY 351/651 LABORATORY 9 Digital Electronics The Basics PHY 351/651 LABORATORY 9 Digital Electronics The Basics Reading Assignment Horowitz, Hill Chap. 8 Data sheets 74HC10N, 74HC86N, 74HC04N, 74HC03N, 74HC32N, 74HC08N, CD4007UBE, 74HC76N, LM555 Overview Over

More information

Interactive Virtual Laboratory for Distance Education in Nuclear Engineering. Abstract

Interactive Virtual Laboratory for Distance Education in Nuclear Engineering. Abstract Interactive Virtual Laboratory for Distance Education in Nuclear Engineering Prashant Jain, James Stubbins and Rizwan Uddin Department of Nuclear, Plasma and Radiological Engineering University of Illinois

More information

PQ-Box 100 Quick Start Instructions

PQ-Box 100 Quick Start Instructions PQ-Box 100 Quick Start Instructions These instructions are provided for the purpose on providing a quick start to PQ-Box 100 installation and operation. Please refer to the user handbook for full details.

More information

Design and Realization of the Guitar Tuner Using MyRIO

Design and Realization of the Guitar Tuner Using MyRIO Journal of Automation and Control, 2017, Vol. 5, No. 2, 41-45 Available online at http://pubs.sciepub.com/automation/5/2/2 Science and Education Publishing DOI:10.12691/automation-5-2-2 Design and Realization

More information

TransitHound Cellphone Detector User Manual Version 1.3

TransitHound Cellphone Detector User Manual Version 1.3 TransitHound Cellphone Detector User Manual Version 1.3 RF3 RF2 Table of Contents Introduction...3 PC Requirements...3 Unit Description...3 Electrical Interfaces...4 Interface Cable...5 USB to Serial Interface

More information

INTRODUCTION TO ENDNOTE. NTNU University Library, Medicine and Health Library January 2017

INTRODUCTION TO ENDNOTE. NTNU University Library, Medicine and Health Library January 2017 INTRODUCTION TO ENDNOTE X8 NTNU University Library, Medicine and Health Library January 2017 CONTENTS About EndNote... 4 Obtaining and Installing EndNote... 4 Guides... 4 Creating a New Library... 5 Making

More information

Edge Connector Light Level Detector

Edge Connector Light Level Detector Description This is a simple tutorial demonstrating how to use a Kitronik edge connector breakout with the BBC micro:bit. The tutorial will cover measuring ambient light levels with an LDR and dimming

More information

PicoBoo PLUS. OPERATING MANUAL V1.1 (Sep 8, 2011) 6 Oakside Court Barrie, Ontario L4N 5V5 Tel: or

PicoBoo PLUS. OPERATING MANUAL V1.1 (Sep 8, 2011) 6 Oakside Court Barrie, Ontario L4N 5V5 Tel: or PicoBoo PLUS OPERATING MANUAL V1.1 (Sep 8, 2011) 6 Oakside Court Barrie, Ontario L4N 5V5 Tel: 1-877-815-5744 or 905-803-9274 www.frightideas.com Getting familiar with your PicoBoo PLUS Powering Up Sizing

More information

Syntor X Flash Memory Module Revision C

Syntor X Flash Memory Module Revision C Syntor X Flash Memory Module Revision C The PIEXX SynXFlash memory module, along with the supplied PC software, replaces the original SyntorX code plugs and allows you to easily set modify and update your

More information

CHAPTER 3 EXPERIMENTAL SETUP

CHAPTER 3 EXPERIMENTAL SETUP CHAPTER 3 EXPERIMENTAL SETUP In this project, the experimental setup comprised of both hardware and software. Hardware components comprised of Altera Education Kit, capacitor and speaker. While software

More information

IRIG-B PTP Clock Converter Output Module Hardware Installation Manual

IRIG-B PTP Clock Converter Output Module Hardware Installation Manual IRIG-B PTP Clock Converter Output Module Hardware Installation Manual Kyland Technology Co., LTD. Publication Date: May 2012 Version: V1.2 Customer Service Hotline: (+8610) 88796676 FAX: (+8610) 88796678

More information

Manual Version Ver 1.0

Manual Version Ver 1.0 The BG-3 & The BG-7 Multiple Test Pattern Generator with Field Programmable ID Option Manual Version Ver 1.0 BURST ELECTRONICS INC CORRALES, NM 87048 USA (505) 898-1455 VOICE (505) 890-8926 Tech Support

More information

Aurora Grid-Tie Installation Instructions (Model Number: PVI-3.0-OUTD-US-W) Revision 4.1

Aurora Grid-Tie Installation Instructions (Model Number: PVI-3.0-OUTD-US-W) Revision 4.1 Aurora Grid-Tie Installation Instructions (Model Number: PVI-3.0-OUTD-US-W) Revision 4.1 Contents 1) Grid-Tie Installation Block Diagram... 3 2) Installation Steps.... 4 2.1) Initial Setup.... 4 2.1.1)

More information

Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A)

Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) MODULE T I A Training Document Page 1 of 66 Module This document has been written by Siemens AG for training

More information

Digital Logic. ECE 206, Fall 2001: Lab 1. Learning Objectives. The Logic Simulator

Digital Logic. ECE 206, Fall 2001: Lab 1. Learning Objectives. The Logic Simulator Learning Objectives ECE 206, : Lab 1 Digital Logic This lab will give you practice in building and analyzing digital logic circuits. You will use a logic simulator to implement circuits and see how they

More information

FS4 Quick Start Guide

FS4 Quick Start Guide FS4 Quick Start Guide Overview FS4 is AJA s flagship frame synchronizer and converter, offering incredible versatility and connectivity in a sleek and compact 1RU frame for all your 4K/ UltraHD/2K/HD/SD

More information

Ku-Band Redundant LNB Systems. 1:1 System RF IN (WR75) TEST IN -40 db OFFLINE IN CONTROLLER. 1:2 System POL 1 IN (WR75) TEST IN -40 db POL 2 IN

Ku-Band Redundant LNB Systems. 1:1 System RF IN (WR75) TEST IN -40 db OFFLINE IN CONTROLLER. 1:2 System POL 1 IN (WR75) TEST IN -40 db POL 2 IN BRK-1000 Series Ku-Band Redundant LNB Systems Introduction Redundant LNB systems minimize system downtime due to LNB failure by providing a spare LNB and an automatic means of switching to the spare upon

More information

DT9834 Series High-Performance Multifunction USB Data Acquisition Modules

DT9834 Series High-Performance Multifunction USB Data Acquisition Modules DT9834 Series High-Performance Multifunction USB Data Acquisition Modules DT9834 Series High Performance, Multifunction USB DAQ Key Features: Simultaneous subsystem operation on up to 32 analog input channels,

More information

Ensemble QLAB. Stand-Alone, 1-4 Axes Piezo Motion Controller. Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation

Ensemble QLAB. Stand-Alone, 1-4 Axes Piezo Motion Controller. Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation Ensemble QLAB Motion Controllers Ensemble QLAB Stand-Alone, 1-4 Axes Piezo Motion Controller Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation Configurable open-loop

More information

LX3V-4AD User manual Website: Technical Support: Skype: Phone: QQ Group: Technical forum:

LX3V-4AD User manual Website: Technical Support: Skype: Phone: QQ Group: Technical forum: User manual Website: http://www.we-con.com.cn/en Technical Support: support@we-con.com.cn Skype: fcwkkj Phone: 86-591-87868869 QQ Group: 465230233 Technical forum: http://wecon.freeforums.net/ 1. Introduction

More information

USCG Exam questions related to PLCs by Frank Owen, Maine Maritime Academy, 23 October 2018

USCG Exam questions related to PLCs by Frank Owen, Maine Maritime Academy, 23 October 2018 USCG Exam questions related to PLCs by Frank Owen, Maine Maritime Academy, 23 October 2018 Timers The USCG questions reference three different types of timers: 1. On-delay timer (TON) 2. Off-delay timer

More information

RG NDT INTERNATIONAL INC

RG NDT INTERNATIONAL INC RG NDT INTERNATIONAL INC User Manual 165 Oates Road Houston, Texas 77013 Phone: 713-673-5928 Fax: 713-673-5957 GENERAL OVERVIEW Features two (2) inline inspection stations for the detection of: 1. Transverse

More information

DIRECT DRIVE ROTARY TABLES SRT SERIES

DIRECT DRIVE ROTARY TABLES SRT SERIES DIRECT DRIVE ROTARY TABLES SRT SERIES Key features: Direct drive Large center aperture Brushless motor design Precision bearing system Integrated position feedback Built-in thermal sensors ServoRing rotary

More information

FIR Center Report. Development of Feedback Control Scheme for the Stabilization of Gyrotron Output Power

FIR Center Report. Development of Feedback Control Scheme for the Stabilization of Gyrotron Output Power FIR Center Report FIR FU-120 November 2012 Development of Feedback Control Scheme for the Stabilization of Gyrotron Output Power Oleksiy Kuleshov, Nitin Kumar and Toshitaka Idehara Research Center for

More information

HI-MORE CD-EM1 CONTROL SYSTEM OPERATIONAL MANUAL. (Rev B2, June 2004) SPI & EUROMAP (WITH 24-WIRE INTERFACE CABLE) FOR

HI-MORE CD-EM1 CONTROL SYSTEM OPERATIONAL MANUAL. (Rev B2, June 2004) SPI & EUROMAP (WITH 24-WIRE INTERFACE CABLE) FOR HI-MORE CD-EM1 CONTROL SYSTEM OPERATIONAL MANUAL (, June 2004) SPI & EUROMAP (WITH 24-WIRE INTERFACE CABLE) FOR UX(F) SERIES SPRUE PICKER BX(F)-2R SERIES SPRUE PICKER HI-MORE ROBOT CO., LTD. 13-114, HsiaNeiLi,

More information

Tutor Led Manual v1.7. Table of Contents PREFACE I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED...

Tutor Led Manual v1.7. Table of Contents PREFACE I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED... EndNote X7 Tutor Led Manual v1.7 Table of Contents PREFACE... 1 I.T. Skills Required Before Attempting this Course... 1 Copyright... 2 GETTING STARTED... 1 EndNote Explained... 1 Opening the EndNote Program...

More information

cs281: Introduction to Computer Systems Lab07 - Sequential Circuits II: Ant Brain

cs281: Introduction to Computer Systems Lab07 - Sequential Circuits II: Ant Brain cs281: Introduction to Computer Systems Lab07 - Sequential Circuits II: Ant Brain 1 Problem Statement Obtain the file ant.tar from the class webpage. After you untar this file in an empty directory, you

More information

Class Notes for Cite While You Write Basics. EndNote Training

Class Notes for Cite While You Write Basics. EndNote Training Class Notes for Cite While You Write Basics EndNote Training EndNote X8 Class Notes for Cite While You Write Basics 1 January 3, 2017 Your EndNote data, both on the desktop and online, can be used in Microsoft

More information

Directional Couplers and Splitters

Directional Couplers and Splitters Directional couplers and splitters divide trunk and feeder lines. 17-Amp current handling capacity. Excellent hum-modulation performance. 1/2-inch hard-line ports have extra length, creating a better seal

More information

Manual for TV software. TT-Viewer version Figure: TT-budget S2-3200

Manual for TV software. TT-Viewer version Figure: TT-budget S2-3200 Manual for TV software TT-Viewer version 2.7.0 Figure: TT-budget S2-3200 Index Manual TT-Viewer 3 1. Starting TT-Viewer software 3 2. General settings 5 3. Assignment of hardware 6 3.1 Unicable 7 4. Renderer

More information

LED DRIVERS. LQC4D-V1 4 channels. User Manual FEATURES

LED DRIVERS. LQC4D-V1 4 channels. User Manual FEATURES pag. 1/13 FEATURES Outputs: 4 x channels BUS+SEQUENCER+FADER+DIMMER+DRIVER Input: DC 12/24/48 Vdc BUS Command: DALI LOCAL Command: 4x N.O. push button (with or without memory), 0-10V, 1-10V Controls: dimmer,

More information

11: PC MACs RealTime Pulldown

11: PC MACs RealTime Pulldown 11: PC MACs RealTime Pulldown This Pulldown Menu is where all the commands having to do with the real time programming of a show can be found. Most of the commands are duplicates of the buttons and checkboxes

More information

CARLETON UNIVERSITY. Facts without theory is trivia. Theory without facts is bull 2607-LRB

CARLETON UNIVERSITY. Facts without theory is trivia. Theory without facts is bull 2607-LRB CARLETON UNIVERSITY Deparment of Electronics ELEC 267 Switching Circuits February 7, 25 Facts without theory is trivia. Theory without facts is bull Anon Laboratory 3.: The T-Bird Tail-Light Control Using

More information

Getting Started with the LabVIEW Sound and Vibration Toolkit

Getting Started with the LabVIEW Sound and Vibration Toolkit 1 Getting Started with the LabVIEW Sound and Vibration Toolkit This tutorial is designed to introduce you to some of the sound and vibration analysis capabilities in the industry-leading software tool

More information

DALHOUSIE UNIVERSITY Department of Electrical & Computer Engineering Digital Circuits - ECED Experiment 2 - Arithmetic Elements

DALHOUSIE UNIVERSITY Department of Electrical & Computer Engineering Digital Circuits - ECED Experiment 2 - Arithmetic Elements DALHOUSIE UNIVERSITY Department of Electrical & Computer Engineering Digital Circuits - ECED 2200 Experiment 2 - Arithmetic Elements Objectives: 1. To implement a Half subtractor circuit 2. To implement

More information

WELDING CONTROL UNIT: TE 450 USER MANUAL

WELDING CONTROL UNIT: TE 450 USER MANUAL j WELDING CONTROL UNIT: TE 450 USER MANUAL RELEASE SOFTWARE No. 1.50 DOCUMENT NUMBER: MAN 4097 EDITION: MARCH 1998 This page is left blank intentionally. 2 / 34 TABLE OF CONTENTS SUBJECTS PAGE WELDING

More information

Programming Guide and User Manual INS # Model # CKM. ControlKeeper M

Programming Guide and User Manual INS # Model # CKM. ControlKeeper M Programming Guide and User Manual Model # CKM INS # Contents Contents Description Contents....2 Safety Instructions....3 Introduction....4 Welcome....4 Terminology used in this guide....5 ControlKeeper

More information

Casambi App User Guide

Casambi App User Guide Casambi App User Guide Version 1.5.4 2.1.2017 Casambi Technologies Oy Table of contents 1 of 28 Table of contents 1 Smart & Connected 2 Using the Casambi App 3 First time use 3 Taking luminaires into use:

More information

Lab 23 Controller Diagnostics

Lab 23 Controller Diagnostics Lab 23 Controller Diagnostics Name(s) Read the handout titled Controller Area Network (CAN) Theory of Operation Also read in your textbook pages 354 356 to Answer these questions: 1) Why are the Can High

More information

Digital Video User s Guide THE FUTURE NOW SHOWING

Digital Video User s Guide THE FUTURE NOW SHOWING Digital Video User s Guide THE FUTURE NOW SHOWING Welcome The NEW WAY to WATCH Digital TV is different than anything you have seen before. It isn t cable it s better! Digital TV offers great channels,

More information

pc-based controller user guide for vers software

pc-based controller user guide for vers software eon-lt pc-based controller user guide for vers. 3.0.11 software TM Contents 7 7 9 11 11 15 15 15 16 17 18 21 21 21 22 23 23 23 24 25 25 25 26 26 26 26 Chapter 1: Eon-LT at a Glance Eon-LT Connectors Accessories

More information

Troubleshooting. 1. Symptom: Status indicator (Red LED) on SSR is constant on. 2. Symptom: Output indicator (Yellow LED) on SSR is flashing.

Troubleshooting. 1. Symptom: Status indicator (Red LED) on SSR is constant on. 2. Symptom: Output indicator (Yellow LED) on SSR is flashing. Product Data Electrical Data SST (Transmitter) SSR (Receiver) Supply voltage 18 30 V dc Max. Voltage ripple 15 % (within supply range) Current consumption 100 ma (RMS) 75 ma Digital - 100 ma Max. outputs

More information

IQBSFR AES/EBU Digital Audio ReMapper with Stereo Combiner and Gain Control

IQBSFR AES/EBU Digital Audio ReMapper with Stereo Combiner and Gain Control IQBSFR AES/EBU Digital Audio ReMapper with Stereo Combiner and Gain Control C Module Description The IQBSFR accepts two isosynchronous AES/EBU inputs (4 input subframes). Digital audio sample rates of

More information

Manual Addendum For Rerun V1.1 software 12/12/2006, RERUN-A = Serial #06A068, RERUN-P = Serial #06A031

Manual Addendum For Rerun V1.1 software 12/12/2006, RERUN-A = Serial #06A068, RERUN-P = Serial #06A031 Manual Addendum For Rerun V1.1 software 12/12/2006, RERUN-A = Serial #06A068, RERUN-P = Serial #06A031 The Rerun product manual was written for V1.0 software. The new release, V1.1, adds a number of new

More information

Lab 2: A/D, D/A, and Sampling Theorem

Lab 2: A/D, D/A, and Sampling Theorem Lab 2: A/D, D/A, and Sampling Theorem Introduction The purpose of this lab is to explore the principles of analog-to-digital conversion, digital-to-analog conversion, and the sampling theorem. It will

More information

Technology Control Technology

Technology Control Technology L e a v i n g C e r t i f i c a t e Technology Control Technology P I C A X E 1 8 X Prog. 1.SOUND Output Prog. 3 OUTPUT & WAIT Prog. 6 LOOP Prog. 7...Seven Segment Display Prog. 8...Single Traffic Light

More information