Reconfigurable Computing Lab 02: Seven-Segment Display and Digital Alarm Clock

Size: px
Start display at page:

Download "Reconfigurable Computing Lab 02: Seven-Segment Display and Digital Alarm Clock"

Transcription

1 Informatik Cauerstr. 98 Erlangen Reconfigurable Computing Lab : Seven-Segment Display and Digital Alarm Clock Problem (Seven-segment display) A seven-segment display consists of seven light emitting diodes (LEDs), which can be turned ON or OFF independently. As shown in Figure, to display a digit between and 9, it is necessary to switch ON and OFF different segments. Figure : Different number representations on a seven-segment display A logic to control a seven-segment display has to be specified in VHDL. This logic has to turn ON segments considering that they are active low. That means, turns a segment ON and a turns it OFF. <= Number <= 9 SSG_ SSG_ SSG_ SSG_ SSG_ SSG_ SSG_ Figure : Block diagram of a controller for a seven-segment display Preparation Complete the following VHDL code for a seven-segment decoder:

2 LIBRARY IEEE; USE IEEE.STD_LOGIC_.ALL; USE IEEE.STD_LOGIC_ARITH.ALL; USE IEEE.STD_LOGIC_UNSIGNED.ALL; ENTITY sevensegment IS PORT (NUMBER : IN INTEGER RANGE TO 9; DIGIT : OUT STD_LOGIC_VECTOR ( downto )); END sevensegment; ARCHITECTURE behavioral OF sevensegment IS SIGNAL DIGIT_in : STD_LOGIC_VECTOR ( DOWNTO ); BEGIN PROCESS(NUMBER) BEGIN CASE NUMBER is -- WHEN => DIGIT_in <= ""; WHEN OTHERS => DIGIT_in <= ""; END CASE; END PROCESS; DIGIT <=...; END behavioral; Complete the waveform in Figure. Number Digit[:] Digit[] Digit[] Digit[] Digit[] Digit[] Digit[] Digit[] Figure : Waveform of the signals to the seven-segment display

3 Steps:. Complete the file sevensegment.vhd. Test the functionality by simulating the design with Questa Sim Using a terminal, change from your home directory to /scratch-local/rc/lab Load Questa Sim with the command line: module load modelsim/.c_x8_-pc-linux Start Questa Sim: vsim& Create a new project: File -> New -> Project. Then, Project name: lab and Project location: /scratch-local/rc/lab/ Add the following files to your project: sevensegment.vhd and tb_sevensegment.vhd. Compile all files by selecting the options Compile Order and Auto Generate For starting the simulation, select: Simulate -> Start Simulation. Hence, select the file tb_sevensegment as shown in Fig. Using the VSIM terminal, execute the command lines: do load_waveforms and run -all. Stop the simulation and observe the waveforms from the tab wave. For a better visualization, you can select simulation -> Runtime Options and change the default radix to unsigned. Figure : Start Simulation tab of Questa Sim Problem (Designing a digital alarm clock) A controller for the alarm clock shown in Figure shall be developed. Specification of the alarm clock Inputs Switch S (BTN) to display and set the current time

4 S Hours Minutes S ALM Time On/Off S Timeset Alarm S S Figure : Alarm Clock Switch S (BTN) to display and set the alarm time Switch S (BTN) to increment hours Switch S (BTN) to increment minutes Switch S (SW7) to activate the alarm Switch S (SW) to reset the board Outputs Four seven-segment displays are used to show the current time or the alarm time One LED shows if the alarm is activated States The controller has three different states as shown in Figure : time: This is the default state. Here, the current time is displayed and if the alarm is equal to the current time, the LED (LD7) is switched ON. set time: This state is reached when S is pressed. Here, if S and S are pressed simultaneously, the hours are incremented. Similarly, if S and S are pressed together, the minutes are incremented. By releasing S, the controller returns to state time. set alarm: This state is reached when S is pressed. If S and S are pressed at the same time, the hours are incremented. However, if S and S are pressed, the minutes are incremented. By releasing S, the controller returns to state time.

5 else S = S = else set_time time set_alarm else S = S = Figure : State diagram of the digital alarm clock Architecture The alarm clock has to be implemented on the Digilent Spartan- Starter Kit board (see Figure 7). The board contains a Spartan- FPGA (Field Programmable Gate Array). The board is also S S S S S S Figure 7: Digilent Spartan- Starter Kit board [] equipped with four seven-segment displays, four push-buttons, eight switches, eight LEDs, one parallel port, one serial port, one PS interface, and one VGA interface. To implement our alarm clock, the seven-segment displays, the four push buttons, (BTN, BTN, BTN, BTN) and two switches (SW, SW7) will be used. A LED (LD7) will be used as an alarm. We set the following mapping: S BTN, S BTN, S BTN, S BTN, S SW7, S SW, which is used as reset button. The structure of the VHDL design is given in Figure 8. Here are the files for designing the alarm clock: sevensegment.vhd controls one seven segment display and was created in the first part of the lab. Display.vhd presents a number between and on two displays.

6 LED 7 reset S S S S S FSM Display Display Display Display MUX And Alarm Controller Seven- Segment SSG SSG SSG SSG controller Alarm alarm_clock clk Figure 8: Block diagram of the alarm clock Display.vhd shows a number between and 9 on other two displays. controller.vhd defines a finite state machine for the alarm clock and sets the display variables. MUX and alarm.vhd multiplexes the displays and sets the alarm. alarm clock.vhd is the top hierarchy of the design. alarm clock.ucf is the user constraint file, which defines how inputs and outputs ports of the design are connected to physical pins of the FPGA. Steps Complete the files alarm_clock.vhd and controller.vhd. Simulate the entire design with ModelSim by using tb alarm clock.vhd. Then, use the Xilinx ISE for synthesizing the design and programming the board, as follows:. using a terminal, load the tool ISE: module load ise/._x8_-pc-linux. Start ISE by executing the following command line: ise&. Create a new project for Spartan, device: XCS, package: FT, and speed: -. Add all VHDL and UCF files from /scratch-local/rc/lab/. Note, the testbench files tb_alarm_clock.vhd and tb_sevensegment.vhd are used only for simulation, thus, they cannot be used for synthesis.. Generate the bitstream and use the tool impact to program the board.

7 References [] Digilent Inc. Spartan- Starter Board. Available at: 7

COMPUTER ENGINEERING PROGRAM

COMPUTER ENGINEERING PROGRAM Learning Objectives COMPUTER ENGINEERING PROGRAM California Polytechnic State University CPE 169 Experiment 9 A Digital Alarm System 1. Finite State Machine (FSM) To understand how VHDL behavioral modeling

More information

DIGITAL SECURITY SYSTEM USING FPGA. Akash Rai 1, Akash Shukla 2

DIGITAL SECURITY SYSTEM USING FPGA. Akash Rai 1, Akash Shukla 2 DIGITAL SECURITY SYSTEM USING FPGA Akash Rai 1, Akash Shukla 2 1,2 Dept. of ECE, A.B.E.S ENGINEERING COLLEGE Ghaziabad India Abstract: Nowadays, house security system becomes the best solution to overcome

More information

Design and Implementation of Pipelined Floating Point Fast Fourier Transform Processor

Design and Implementation of Pipelined Floating Point Fast Fourier Transform Processor IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 11 April 2015 ISSN (online): 2349-6010 Design and Implementation of Pipelined Floating Point Fast Fourier Transform

More information

Floating Point Fast Fourier Transform v2.1. User manual

Floating Point Fast Fourier Transform v2.1. User manual User manual Introduction The Fast Fourier Transform (FFT) is an efficient algorithm for computing the Discrete Fourier Transform (DFT). This Intellectual Property (IP) core was designed to offer very fast

More information

Security Alarm System

Security Alarm System Security Alarm System Mati Goro, Rami Marogy, Kevin Jou, Nick Deneau Electrical and Computer Engineering Department School of Engineering and Computer Science Oakland University, Rochester, MI e-mails:

More information

Implementing Efficient Split-Radix FFTs in FPGAs

Implementing Efficient Split-Radix FFTs in FPGAs Implementing Efficient Split-Radix FFTs in FPGAs Radix-2 and Radix-4 FFTs are common Many applications benefit from other lengths OFDM Transceiver, Digital Video Broadcasts, and software defined radios

More information

An FPGA Spectrum Sensing Accelerator for Cognitive Radio

An FPGA Spectrum Sensing Accelerator for Cognitive Radio An FPGA Spectrum Sensing Accelerator for Cognitive Radio George Eichinger Miriam Leeser Kaushik Chowdhury NEWSDR 11 01 October 2011 This work is sponsored by the Department of the Air Force under Air Force

More information

CRUSH: Cognitive Radio Universal Software Hardware

CRUSH: Cognitive Radio Universal Software Hardware CRUSH: Cognitive Radio Universal Software Hardware George F. Eichinger III MIT Lincoln Laboratory Lexington MA Kaushik Chowdhury, Miriam Leeser University Boston, MA USA 1 This work is sponsored by the

More information

International Journal of Advanced Research in Electronics and Communication Engineering (IJARECE) Volume 6, Issue 6, June 2017

International Journal of Advanced Research in Electronics and Communication Engineering (IJARECE) Volume 6, Issue 6, June 2017 AN EFFICIENT VLSI IMPLEMENTATION OF MULTIPLIER LESS FFT DESIGN Mrs.N.Madhubala and Dr.A.Kavitha,Associate Professor Abstract The proposed system is to implement a novel approach to implement multiplier

More information

A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT

A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT I J C T A, 9(6), 2016, pp. 2767-2775 International Science Press ISSN: 0974-5572 A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT Manimaran A.* and S.K. Sudeer** ABSTRACT Fast

More information

Praktikum: SystemC. SystemC-Labs. Joachim Falk Friedrich-Alexander-Universität Erlangen-Nürnberg Joachim Falk

Praktikum: SystemC. SystemC-Labs. Joachim Falk Friedrich-Alexander-Universität Erlangen-Nürnberg Joachim Falk Praktikum: SystemC SystemC-Labs (falk@cs.fau.de) 1 Agenda Running the SystemC Simulation Phases of the SystemC Simulation Power On Reset Add AlarmClock Module to Top Implement BCD to Seven Segment Display

More information

Laptop / PC Programming Manual

Laptop / PC Programming Manual Laptop / PC Programming Manual Doc. # Fire PC Program rev B 01.07 This Document is property of Evax Systems, Inc. The Evax Fire Solutions Programmer Components 2 1.0 System Setup 4 1.1 Interface Setup

More information

Methodology of Implementing the Pulse code techniques for Distributed Optical Fiber Sensors by using FPGA: Cyclic Simplex Coding

Methodology of Implementing the Pulse code techniques for Distributed Optical Fiber Sensors by using FPGA: Cyclic Simplex Coding Methodology of Implementing the Pulse code techniques for Distributed Optical Fiber Sensors by using FPGA: Cyclic Simplex Coding Yelkal Mulualem Lecturer, Department of Information Technology, College

More information

Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL

Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL K.R.N.Karthik #1, M.Nagesh Babu #2, Fazalnoorbasha #3 #1 Student of VLSI Systems Research Group, Department of Electronics and Communication

More information

LYNX SE CENTRAL CONTROL FOR NETWORK GDC. General Specifications

LYNX SE CENTRAL CONTROL FOR NETWORK GDC. General Specifications LYNX SE CENTRAL CONTROL FOR NETWORK GDC General Specifications Number of Gateways: Up to 4, each with up to 2 Station Groups Number of decoder stations: up to 500 Number of Courses: 1 Number of holes per

More information

Fire Control Panel FS5100

Fire Control Panel FS5100 Fire Control Panel FS5100 INSTRUCTION MANUAL Revision 6/02.11 Contents 1. Introduction... 5 2. Terminology... 5 3. Function... 7 4. Technical data... 7 4.1. Modules... 7 4.1.1. Type of modules... 7 4.1.2.

More information

STUDY OF AUTOMATED HOME SECURITY SYSTEM USING FPGA.

STUDY OF AUTOMATED HOME SECURITY SYSTEM USING FPGA. STUDY OF AUTOMATED HOME SECURITY SYSTEM USING FPGA. Author1:RuchikaBondreAuthor2:UrvashiDhawale Author3:PrityDwivedi Department of electronics engg.department of electronics engg. Department of electronics

More information

CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS. Table of Contents

CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS. Table of Contents 88 CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS Table of Contents Page No. 7.0 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS 89 7.1 Introduction 89 7.2 Types of

More information

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

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

More information

SETTING UP A VIRTUAL KEYPAD WITH A DSC POWERSERIES ALARM SYSTEM

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

More information

Interactive Fire Control Panel IFS7002 four signal loops Instruction Manual

Interactive Fire Control Panel IFS7002 four signal loops Instruction Manual Interactive Fire Control Panel IFS7002 four signal loops Instruction Manual Revision 6/01.17 Contents 1. Introduction... 6 2. Terminology... 6 3. Function... 8 4. Technical data... 8 4.1. Physical configuration...

More information

Exercise 8. Controlling a Batch Mixing Process EXERCISE OBJECTIVE

Exercise 8. Controlling a Batch Mixing Process EXERCISE OBJECTIVE Exercise 8 Controlling a Batch Mixing Process EXERCISE OBJECTIVE To create a ladder program for controlling a batch mixing process. To test program operation through the completion of verification steps.

More information

HB0267 CoreFFT v7.0 Handbook

HB0267 CoreFFT v7.0 Handbook HB0267 CoreFFT v7.0 Handbook 12 2016 Microsemi makes no warranty, representation, or guarantee regarding the information contained herein or the suitability of its products and services for any particular

More information

A Novel Architecture for Radix-4 Pipelined FFT Processor using Vedic Mathematics Algorithm

A Novel Architecture for Radix-4 Pipelined FFT Processor using Vedic Mathematics Algorithm IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 6, Ver. II (Nov - Dec. 2014), PP 23-31 A Novel Architecture for Radix-4 Pipelined

More information

Tempered Water Logic Control OPERATION l TROUBLE SHOOTING

Tempered Water Logic Control OPERATION l TROUBLE SHOOTING Tempered Water Logic Control OPERATION l TROUBLE SHOOTING English For MPE Multiple Chiller Units Control Panel TEMPERED WATER SYSTEMS L-2199 Rev. 20080223 Revision: L-2199 20101104 *** IMPORTANT NOTICE

More information

Monitoring Software for NPBC-V3M-1 User Manual

Monitoring Software for NPBC-V3M-1 User Manual Monitoring Software for NPBC-V3M-1 User Manual User Manual ver 1.5 page 1 of 14 Contents: 1. Introduction... 3 2. Requirements... 3 3. Installing the software... 4 4. Connecting the devices... 4 5. Updating

More information

Interactive Fire Control Panel IFS7002 one signal loop Instruction Manual

Interactive Fire Control Panel IFS7002 one signal loop Instruction Manual Interactive Fire Control Panel IFS7002 one signal loop Instruction Manual Revision 4/01.17 Contents 1. Introduction... 6 2. Terminology... 6 3. Function... 8 4. Technical data... 8 4.1. Physical configuration...

More information

GLOBAL. InstallatIon & operation manual

GLOBAL. InstallatIon & operation manual InstallatIon & operation manual INDEX 1. INTRODUCTION... 5 2. FEATURES AND FUNCTIONS 2.1 Reporting Options... 2.2 Interfaces... 2.3 Programming... 2.4 Indicators and Controls...... 6 6 6 6 6 3. INSTALLATION...

More information

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

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

More information

High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam

High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam P. Mounica M.Tech (VLSI Design), Dept of ECE, B. Rekha Assistant Professor, Dept of ECE, Dr.P.Ram Mohan Rao FIE, CE(I), MISTE,MISH, MISCEE,

More information

OpenCL for FPGAs/HPC Case Study in 3D FFT

OpenCL for FPGAs/HPC Case Study in 3D FFT OpenCL for FPGAs/HPC Case Study in 3D FFT Ahmed Sanaullah Martin Herbordt Vipin Sachdeva Boston University Silicon Therapeutics OpenCL for FPGAs/HPC: Case Study in 3D FFT 11/15/2017 What gives FPGAs high

More information

[Patil* et al., 5(7): July, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116

[Patil* et al., 5(7): July, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY INTELLIGENT LIGHTING SYSTEM WITH ENERGY EFFICIENCY Neha Patil*, Prof.A.C.Wani * P. G.Student, M.E. [Digital Electronics], SSBT

More information

Modbus protocol REGO I

Modbus protocol REGO I Modbus protocol REGO 5200 6 720 814 720-01.1I MODBUS PROTOCOL REGO 5200 REGO 5200, program version: 1.1-0-04 Document version 1.0 --------- Data types, Type, Scale, Offset & Function ----------------------------------------------------------------------

More information

FieldServer Driver - Serial FS SBT-FSI (Siemens Building Technologies Foreign Systems Interface)

FieldServer Driver - Serial FS SBT-FSI (Siemens Building Technologies Foreign Systems Interface) Driver Version: 1.06 Document Revision: 4 Description FieldServer Driver - Serial FS-8700-40 SBT-FSI (Siemens Building Technologies Foreign Systems Interface) This FieldServer driver can be used to poll

More information

An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation

An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation 2 Features An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation Atin Mukherjee 1 and Debesh Choudhury 2 1 Department of Electronics and Communication Engineering, Dr. B.C Roy Polytechnic,

More information

IntesisBox BACnet/IP Server - Notifier ID3000 series

IntesisBox BACnet/IP Server - Notifier ID3000 series IntesisBox Server - Notifier ID3000 series Gateway for integration of Notifier ID3000, ID3002, ID50 and ID60 fire panels into enabled control systems. Integrate your Notifier fire panels into your BACnet

More information

Comfort Thermostat Function

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

More information

IOT Based Intelligent Bin for Smart Cities

IOT Based Intelligent Bin for Smart Cities IOT Based Intelligent Bin for Smart Cities Meghana K C Department of Electronics & Communication Engineering S. J. B Institute of Technology Bengaluru, India kccmmeghana@gmail.com Dr. K R Nataraj Department

More information

RF SCOUT PLUS INSTRUCTION MANUAL. Dielectric, LLC 22 Tower Rd. Raymond, ME Phone: January 2015, Rev B 1

RF SCOUT PLUS INSTRUCTION MANUAL. Dielectric, LLC 22 Tower Rd. Raymond, ME Phone: January 2015, Rev B 1 RF SCOUT PLUS INSTRUCTION MANUAL Dielectric, LLC 22 Tower Rd. Raymond, ME 04071 Phone: 800.341.9678 www.dielectric.com 21 January 2015, Rev B 1 WARNING Powering RF sensors above +30dBm (1W) will cause

More information

International Journal of Engineering Research-Online A Peer Reviewed International Journal

International Journal of Engineering Research-Online A Peer Reviewed International Journal RESEARCH ARTICLE ISSN: 2321-7758 FPGA IMPLEMENTATION OF FFT PROCESSOR USING DIFFERENT ALGORITHMS YOJANA A. JADHAV 1, Prof. A. P. HATKAR 2 1 Student, Dept. of E & TC, SVIT COE, Nasik, India 2 Prof, Dept.

More information

Operational Concept Description (OCD)

Operational Concept Description (OCD) Operational Concept Description (OCD) Mission Science irobot Team #07 Ashwini Ramesha OCE, Requirements Engineer Chen Li Requirements Engineer, Feasibility Analyst Farica Mascarenhas IV&V, Quality Analyst

More information

Yokogawa DX Ethernet Driver Help Kepware Technologies

Yokogawa DX Ethernet Driver Help Kepware Technologies Yokogawa DX Ethernet Driver Help 2012 Kepware Technologies 2 Table of Contents Table of Contents 2 4 Overview 4 Device Setup 5 Communications Parameters 7 Optimizing Your Ethernet Communications 9 Data

More information

Programming the Cell BE

Programming the Cell BE Programming the Cell BE Max Schneider Chair of Computer Science 3 - Computer Architecture Friedrich-Alexander-University Erlangen-Nuremberg October 26, 2010 Max Schneider (FAU) PParRA October 26, 2010

More information

Owner s Manual. Part Number 33CS250-RC

Owner s Manual. Part Number 33CS250-RC CONTENTS Page GENERAL... 1 CONFIGURATION... 1-4 Transmitter Display... 1 Transmitter Indicator... 1 Transmitter Front Panel Buttons... 1 Set Clock... 2 Programming Thermostat Schedules... 3 OPERATION...5

More information

Dell DR Series Appliance Cleaner Best Practices

Dell DR Series Appliance Cleaner Best Practices Dell DR Series Appliance Cleaner Best Practices Dell Engineering June 2016 A Dell Best Practices Document Revisions Date July 2016 Description Initial release THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES

More information

E N G L I S H FIRE ALARM ASPIRATION SENSING TECHNOLOGY QUICK INSTALLATION GUIDE STAND-ALONE FAAST LT MODELS FL0111E FL0112E FL0122E. 367 mm.

E N G L I S H FIRE ALARM ASPIRATION SENSING TECHNOLOGY QUICK INSTALLATION GUIDE STAND-ALONE FAAST LT MODELS FL0111E FL0112E FL0122E. 367 mm. E N G L I S H FIRE ALARM ASPIRATION SENSING TECHNOLOGY QUICK INSTALLATION GUIDE STAND-ALONE FAAST LT MODELS FL0E FL0E FL0E mm mm 0 mm DESCRIPTION The LT FL0 Series is part of the Fire Alarm Aspiration

More information

RCS Residential Control Systems Inc.

RCS Residential Control Systems Inc. RCS Residential Control Systems Inc. Model TZ16 Z-Wave Communicating Thermostat with Rev P HVAC Control Unit INSTALLATION AND OPERATION MANUAL DCN: 141-00882 Rev 02 5/18/06 This manual applies to the following

More information

Installation Instructions

Installation Instructions TP --- PRH --- A, TP --- NRH --- A PerformancetSeries Edger Thermidistatt Control Installation Instructions Programmable Control A07049 A07048 Non---Programmable Control NOTE: Read the entire instruction

More information

Sapphire Series TSVW & TWWS Chillwater Digital Thermostats

Sapphire Series TSVW & TWWS Chillwater Digital Thermostats Sapphire Series TSVW & TWWS Chillwater Digital Thermostats Table of Contents 1. Introduction 3 TSVW Main Components 3 TWWS Main Components 4 2. Display Panels for TSVW and TWWS Thermostats 4 TSVW Display

More information

High-Speed Voice and Data Link Access Multiplexer

High-Speed Voice and Data Link Access Multiplexer Telecommunications Group Section HVD-381-202 Equipment Issue 2 First Printing, August 2003 High-Speed Voice and Data Link Access Multiplexer CONTENTS PAGE Part 1. GENERAL.............................................................................

More information

Installation, Service, and Troubleshooting Instructions

Installation, Service, and Troubleshooting Instructions Installation, Service, and Troubleshooting Instructions GENERAL...2 INSTALLATION...2-11 Thermostat Placement...2 Wiring Requirements...2 VVT Relay Packs...4 Wiring Connections for Monitor Thermostat...4

More information

MT-374B/364B Operation User s Guide. The Anti-Sweat Energy Saving Controller user s manual

MT-374B/364B Operation User s Guide. The Anti-Sweat Energy Saving Controller user s manual MT-374B/364B Operation User s Guide Parker Hannifin Canada Micro Thermo Technologies TM 12855 Brault Street Mirabel, QC J7J 0C4 Office phone 450-668-3033 Introduction The Anti-Sweat Energy Saving Controller

More information

INITIALIZATION / INSTALLATION

INITIALIZATION / INSTALLATION INITIALIZATION / INSTALLATION REMOTE CONTROL The remote control has a range of approximately 50 ft. (15.25m); it does not have to be pointed at the fireplace and can pass through most obstacles (including

More information

SmarTemp Control fx 2.0

SmarTemp Control fx 2.0 Digital Timer Interface Installation / Operation Instructions General Thank you for choosing Webasto to meet your heating needs. The Webasto SmarTemp Control fx 2.0 enables you to preset start-up cycles

More information

IndigoVision. GAI-Tronics Integration Module. Administrator's Guide

IndigoVision. GAI-Tronics Integration Module. Administrator's Guide IndigoVision GAI-Tronics Integration Module Administrator's Guide GAI-Tronics Integration Module THIS MANUAL WAS CREATED ON 10 APRIL 2013. DOCUMENT ID: IU-IM-MAN019-1 Legal Considerations LAWS THAT CAN

More information

FlameGard 5 UV/IR HART

FlameGard 5 UV/IR HART FlameGard 5 UV/IR HART HART Communication Manual The information and technical data disclosed in this document may be used and disseminated only for the purposes and to the extent specifically authorized

More information

DX-9100/9120 Weekly Testing of Dedicated Stairwell Pressurization Fans

DX-9100/9120 Weekly Testing of Dedicated Stairwell Pressurization Fans Metasys Network Technical Manual 636 DX-9100/9120 Applications Section Application Note Issue Date 0497 APPLICATION NOTE DX-9100/9120 Weekly Testing of Dedicated Stairwell Pressurization Fans Introduction

More information

Configuration and Operation Manual for the Unipos

Configuration and Operation Manual for the Unipos AxxonSoft Configuration and Operation Manual for the Unipos Integration Module Version 1.1 Moscow 2010 Contents CONTENTS... 2 1 LIST OF TERMS... 4 2 INTRODUCTION... 6 2.1 Document purpose... 6 2.2 Purpose

More information

Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module

Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module Clavex Plus Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module PC Software Controller with Graphic Display Printer Module Features

More information

Feature Summary. I. System

Feature Summary. I. System I. System A. Supports up to 60 VAV HVAC Units 1. Each HVAC Unit Can Support up to 59 VAV Boxes 2. Constant Volume Units Can Be Integrated With VAV Units 3. System Can Support Over 3000 Controllers B. Fill-in

More information

E N G L I S H FIRE ALARM ASPIRATION SENSING TECHNOLOGY QUICK INSTALLATION GUIDE ADDRESSABLE FAAST LT MODELS MI-FL2011EI, MI-FL2012EI AND MI-FL2022EI

E N G L I S H FIRE ALARM ASPIRATION SENSING TECHNOLOGY QUICK INSTALLATION GUIDE ADDRESSABLE FAAST LT MODELS MI-FL2011EI, MI-FL2012EI AND MI-FL2022EI E N G L I S H FIRE ASPIRATION SENSING TECHNOLOGY QUICK INSTALLATION GUIDE ADDRESSABLE FAAST LT MODELS MI-FL0EI, MI-FL0EI AND MI-FL0EI mm mm 0 mm DESCRIPTION The LT MI-FL0 Series is part of the Fire Alarm

More information

Installation, Service, and Troubleshooting Instructions

Installation, Service, and Troubleshooting Instructions 33CS TEMP System Unitary Controller Thermostat Installation, Service, and Troubleshooting Instructions Page GENERAL........................................ 2 TEMP System Components......................

More information

AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER

AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER S.M.Ghayas Hasan 1, Fazil Alam 2, Amrish Dubey 3 1, 2 Students, Electrical Engineering Department Greater Noida Institutes of Technology, Gr.Noida,

More information

Operation Manual Fighter ProVision Software. Version: 0.0 Revision: 1

Operation Manual Fighter ProVision Software. Version: 0.0 Revision: 1 Operation Manual Fighter ProVision Software Version: 0.0 Revision: 1 TABLE OF CONTENTS 1. Introduction 5 2. Software Installation 5 3. PC Users 6 3.1 Introduction 6 3.2 Default Code 6 3.3 Edit PC User

More information

Weekly Testing of Dedicated Smoke Control Dampers - Metasys System Extended Architecture

Weekly Testing of Dedicated Smoke Control Dampers - Metasys System Extended Architecture Weekly Testing of Dedicated Smoke Control Dampers - Metasys System Extended Architecture Code No. LIT-1201743 Release 1.2 Issued Date July 30, 2004 Supersedes Document Introduction.................................................

More information

RC-112 Two Speed Heat Pump 3 Stage Heat / 2 Stage Cool With Energy Efficient Control

RC-112 Two Speed Heat Pump 3 Stage Heat / 2 Stage Cool With Energy Efficient Control O M N I S T A T ELECTRONIC COMMUNICATING THERMOSTAT Installation Manual RC-112 Two Speed Heat Pump 3 Stage Heat / 2 Stage Cool With Energy Efficient Control Document Number 13I00-5 November, 1997 CONTENTS

More information

Spectron LSN (Life Safety Network) Suggested Specifications

Spectron LSN (Life Safety Network) Suggested Specifications 1. General 1.1 Scope A Dual-Lite Spectron LSN (Life Safety Network) Series Inverter System shall be furnished to provide a reliable source of power, and shall operate during a utility line deficiency without

More information

EFFICIENT ARCHITECTURE FOR PROCESSING OF TWO INDEPENDENT DATA STREAMS USING RADIX-2 FFT

EFFICIENT ARCHITECTURE FOR PROCESSING OF TWO INDEPENDENT DATA STREAMS USING RADIX-2 FFT EFFICIENT ARCHITECTURE FOR PROCESSING OF TWO INDEPENDENT DATA STREAMS USING RADIX-2 FFT Artham Lasya 1 Dr.Shailendra Mishra lasya116@gmail.com 1 mishra22feb@rediffmail.com 2 1 PG Scholar, VLSI,Bharath

More information

S INTRUSION&FIRE ALARM AND ACCESS CONTROL PANEL

S INTRUSION&FIRE ALARM AND ACCESS CONTROL PANEL S2000-4 INTRUSION&FIRE ALARM AND ACCESS CONTROL PANEL Installer s and User s manual S2000-4 INTRUSION&FIRE AND ACCEESS CONTROL PANEL ATTENTION! To modify configuration parameters use the program uprog.exe

More information

21-light Remote Annunciator. Owner s Manual

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

More information

1 Air Handling Units In ICE

1 Air Handling Units In ICE 1 Air Handling Units In ICE From version 3.0, there is a library of common air handling units (AHU) in the distribution. A simulated building can have several AHUs. The following limitations apply: - every

More information

RC-90 / RC-90B Single Stage Heat/Cool Thermostat for Zone Control Systems Installation Instructions

RC-90 / RC-90B Single Stage Heat/Cool Thermostat for Zone Control Systems Installation Instructions RC-90 / RC-90B Single Stage Heat/Cool Thermostat for Zone Control Systems Installation Instructions DESCRIPTION The RC-90 is a precision digital thermostat designed for 24 VAC single stage heating and

More information

TECHNICAL MANUAL CVM 20 C 5005 CV/04-99 GB

TECHNICAL MANUAL CVM 20 C 5005 CV/04-99 GB Summary 1 CONNECTIONS... 3 1.1 TEMPERATURE PROBES...3 1.2 LOW VOLTAGE DIGITAL INPUTS...3 1.3 LIVE DIGITAL INPUTS...4 1.4 RELAY OUTPUTS...5 2 POWER SUPPLY... 6 3 SERIAL CONNECTIONS... 6 4 SOFTWARE... 7

More information

Weekly Testing of Dedicated Stairwell Pressurization Fans- Metasys System Extended Architecture Code No. LIT

Weekly Testing of Dedicated Stairwell Pressurization Fans- Metasys System Extended Architecture Code No. LIT Weekly Testing of Dedicated Stairwell Pressurization Fans- Metasys System Extended Architecture Code No. LIT-1201739 Release 1.2 Issued Date July 30, 2004 Supersedes Document Introduction.................................................

More information

DCA4. Digitally controlled Audio Matrix. Current Thinking. Product Specification March Document Number DDC DCA ACS

DCA4. Digitally controlled Audio Matrix. Current Thinking. Product Specification March Document Number DDC DCA ACS DCA4 Digitally controlled Audio Matrix Product Specification March 2002 Current Thinking Document Number DDC DCA 7001 01 ACS Introduction Voice Alarm (VA) systems are the quickest way to evacuate the public

More information

WaterLeakStop Manual. Detection and Management of Water Leaks WLS-1

WaterLeakStop Manual. Detection and Management of Water Leaks WLS-1 WaterLeakStop Manual Detection and Management of Water Leaks WLS-1 Contents: Brief description...3 Specifications:...3 Functions:...3 Pictures - Tables:...4 Terminals...5 Description indicators and buttons...6

More information

EL-OEM-3 OEM Packaged Voltage Data Logger

EL-OEM-3 OEM Packaged Voltage Data Logger FEATURES PCB Mounted (2.54mm pitch, header sockets) 0 to 2.4V d.c. Measurement Range Logging Rates between 1s and 12hr Stores 64,000 readings USB interface for set-up and data download (USB connector not

More information

Operating Instructions

Operating Instructions Operating Instructions System 57 Module Kit (05701-A-0309) Alarm Update Panel (05701-A-0339) Helping to make a safer world Ensure that you read and understand these instructions BEFORE operating the equipment.

More information

PBI Manual. Paradox to KNX-BUS Interface

PBI Manual. Paradox to KNX-BUS Interface PBI 64-192 Paradox to KNX-BUS Interface Manual GDS Intelligence in Buildings El. Benizelou 116 Nea Erithrea, 14671 Phone: +30 2108071288 Email: info@gds.com.gr Web: gds.com.gr Contents 1 Device description...

More information

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

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick CAN OBD READER REFERENCE DESIGN KIT USER GUIDE 1. Standard ToolStick Handling Recommendations The ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent damage

More information

AN10943 Decoding DTMF tones using M3 DSP library FFT function

AN10943 Decoding DTMF tones using M3 DSP library FFT function Rev. 1 17 June 2010 Application note Document information Info Content Keywords M3, LPC1300, LPC1700, DSP, DFT, FFT, DTMF Abstract This application note and associated source code example demonstrates

More information

Total Solution Sirius Cooling Control Unit (CCU) Sirius CONFIGURATION TOOL. (Windows -based configuration application.)

Total Solution Sirius Cooling Control Unit (CCU) Sirius CONFIGURATION TOOL. (Windows -based configuration application.) Sirius CONFIGURATION TOOL (Windows -based configuration application.) All units are at the time of shipment to customer configured ready for operation to a user specific hardware and firmware setup as

More information

Sentient. Downloader Manual D4854

Sentient. Downloader Manual D4854 Sentient Downloader Manual D4854 Dycon Ltd Tel: +44 (0)1443 471 060 Fax: +44 (0)1443 479 374 Cwm Cynon Business Park Mountain Ash CF45 4ER - UK www.dyconsecurity.com sales@dyconsecurity.com TABLE OF CONTENTS

More information

Network Hardware and wiring (quiz)...

Network Hardware and wiring (quiz)... 4120 Network/TSW (FA049) Course Agenda Day 1 Course Introduction (Presentation)... 8:00 am to 8:30 am Break Module 1 Installing and Configuring Network Software Applications 4120 New Network Programmer

More information

LineGuard 2300 Program User Manual (FloBoss 107)

LineGuard 2300 Program User Manual (FloBoss 107) Form A6251 Part Number D301346X012 November 2012 LineGuard 2300 Program User Manual (FloBoss 107) Remote Automation Solutions Revision Tracking Sheet November 2012 This manual may be revised periodically

More information

Dashboard for Windows V1.1.0

Dashboard for Windows V1.1.0 User manual Dashboard for Windows V1.1.0 TBS Electronics BV De Factorij 46 1689 AL Zwaag The Netherlands www.tbs-electronics.com COPYRIGHT 2009 (rev1e) - 1 - TABLE OF CONTENTS 1. INTRODUCTION......................

More information

Appendix 3 Thermostats

Appendix 3 Thermostats Appendix 3 Thermostats This appendix describes how to work with thermostats in HCA and covers these topics: Supported thermostats Creating a thermostat device Thermostat properties Working with thermostats

More information

P2267 NETWORK INTERFACE

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

More information

DR Series Appliance Cleaner Best Practices. Technical Whitepaper

DR Series Appliance Cleaner Best Practices. Technical Whitepaper DR Series Appliance Cleaner Best Practices Technical Whitepaper Quest Engineering November 2017 2017 Quest Software Inc. ALL RIGHTS RESERVED. THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY

More information

Nardalert S3 TM Non-Ionizing Radiation Monitor

Nardalert S3 TM Non-Ionizing Radiation Monitor Patent Pending Nardalert S3 TM Non-Ionizing Radiation Monitor Field Replaceable Sensor Modules Color LCD Display Multi-Color Alarm LED s USB Interface for Data and Charging Comprehensive Software Included

More information

We are IntechOpen, the first native scientific publisher of Open Access books. International authors and editors. Our authors are among the TOP 1%

We are IntechOpen, the first native scientific publisher of Open Access books. International authors and editors. Our authors are among the TOP 1% We are IntechOpen, the first native scientific publisher of Open Access books 3,350 108,000 1.7 M Open access books available International authors and editors Downloads Our authors are among the 151 Countries

More information

Soft Start Series MP700 Solid State, Reduced Voltage

Soft Start Series MP700 Solid State, Reduced Voltage Metron Fire Pump Controls and Accessories Soft Start Series MP700 Solid State, Reduced Voltage Metron Fire Pump Controllers conform to the latest requirements of National Fire Protection Association s

More information

Alarm Monitoring and Management

Alarm Monitoring and Management 14 CHAPTER This chapter explains how to manage alarms with Cisco Transport Controller (CTC). To troubleshoot specific alarms, refer to the Cisco ONS 15454 SDH Troubleshooting Guide. Chapter topics include:

More information

Flair 500 Series Annunciators

Flair 500 Series Annunciators Flair 500 Series s Basics Flair Multi-Zone s (MZAs) are fully functional, flexible, programmable micro controller based alarm control panels. They can be used independently d or in conjunction with other

More information

Owner s Manual. Part Number 33CS250-01

Owner s Manual. Part Number 33CS250-01 33CS Commercial Programmable Thermostat IMPORTANT: Read entire instructions before programming the thermostat. Owner s Manual Part Number 33CS250-01 GENERAL Carrier s 7-day, commercial, programmable thermostats

More information

Advanced Systems Security: Linux Security Modules

Advanced Systems Security: Linux Security Modules Systems and Internet Infrastructure Security Network and Security Research Center Department of Computer Science and Engineering Pennsylvania State University, University Park PA Advanced Systems Security:

More information

Plant Security & Fire Alarm Systems. HVAC Systems. Power Plants & Switchyards. Geographical Maps. Industrial Process Plants

Plant Security & Fire Alarm Systems. HVAC Systems. Power Plants & Switchyards. Geographical Maps. Industrial Process Plants Plant Security & Fire Alarm Systems HVAC Systems Power Plants & Switchyards 2 The Ronan Series X71 Mosaic Graphic System is ideally suited for the graphic display of industrial processes, power distribution

More information

Electronic Pellet Burner Controller NPBC-V3-1

Electronic Pellet Burner Controller NPBC-V3-1 Electronic Pellet Burner Controller NPBC-V3- SOFTWARE VERSION 3.2/3. page of 3 CHANGES IN THE TECHNICAL AND USER GUIDE OR IN THE SOFTWARE VERSION Technical and User Guide's version Changes Page 2.8. The

More information

CONsOlIDATOR 4 & 8. MulTI- C h ANNEl CONTROllERs. ConsoliDator 4 Model PD940 ConsoliDator 4 Features. ConsoliDator 8 Features.

CONsOlIDATOR 4 & 8. MulTI- C h ANNEl CONTROllERs. ConsoliDator 4 Model PD940 ConsoliDator 4 Features. ConsoliDator 8 Features. CONsOlIDATOR 4 & 8 MulTI- C h ANNEl CONTROllERs ConsoliDator 4 Model PD940 ConsoliDator 4 Features Four 4-20 Four 4-20 Outputs ConsoliDator 8 Features Eight 4-20 Two 4-20 Outputs Common Features Four Pulse

More information

Fire and Gas Monitoring Panel ST7-HV

Fire and Gas Monitoring Panel ST7-HV Fire and Gas Monitoring Panel ST7-HV INTRODUCTION TO THE ST7-HV SYSTEM The ST7-HV system is a programmable PLC suitable for safety and security installations with a high technological and economic content

More information