Rotating Text Marquee. Stephen Rochelle, CoE Mark Randall, EE University of Evansville

Size: px
Start display at page:

Download "Rotating Text Marquee. Stephen Rochelle, CoE Mark Randall, EE University of Evansville"

Transcription

1 Rotating Text Marquee Stephen Rochelle, CoE Mark Randall, EE University of Evansville Presented at 2003 MUPEC Student Paper Conference April 26, 2003

2 Virtually all experts agree that demand for computer engineering majors will continue to increase over the next several years. A persistent problem exists, however, in attracting prospective computer engineering majors; namely, illustrating to a high school student what computer engineering is. For example, at the University of Evansville, a prospective student visiting the College of Engineering and Computer Science can reasonably envision the architectural and structural applications of civil engineering, various portions of a mechanical engineering project like the mini-formula 1 car, or web application development in computer science. Succinctly, simply, and meaningfully describing computer engineering areas like embedded software, real-time programming, or branch prediction design often, bluntly, fails miserably. The Rotating Text Marquee (RTM) has been envisioned as an effective illustration and explanation of computer engineering principles that provides a readily perceptible, demonstrable effect. The RTM relies on ocular retention the tendency of the human eye to remember and prolong the visual perception of brief high-contrast events. The afterimage left by a lightning bolt is an excellent example of relevant natural phenomena, while a camera flash provides a slightly more accurate analogy. An RTM printed circuit board mounts a single line of light-emitting diodes (LEDs) along the radius of a Lexan circle. The Lexan is then mated with a motor and spun between 1000 and 2000 rpm. A microcontroller onboard uses microsecond-specific timing to flicker the LEDs in such a pattern as to be an apparent two-dimensional display consisting of hundreds of points of light suspended in midair. In the current application, the display consists of programmer-defined ASCII text oriented such that no letters are upside-down.

3 The RTMs hardware is centered around its microcontroller, a Philips 89C51RD2. The RD2 is a variant of the Intel bit microcontroller, its primary advantage being its (relatively) gigantic allocation of Flash ROM for storing code (Table 1). The RD2 is Core Clock Speed 2 MHz RAM 256 Bytes ROM 64 Kilobytes (Flash ROM) I/O Ports 4 8-bit Timers 3 16-bit Interrupts 2 External, 3 Timer, 1 Serial, 1 PCA Programmable Counter Array (PCA) 5 Channels Counter, Comparator, Timer, PWM Modes Table 1: Philips P89C51RD2 Features Overview coupled with the circuitry needed to perform in-system programming, helping to speed the development process and reduce the risk of accidental processor damage. The remaining hardware on the PCB consists of 16 LED transistor resistor groups, broken into two sets of eight, and a Hall Effect sensor. Two identical PCBs are mounted opposite each other to allow the RTM to effectively double its refresh rate. In unusual fashion, the RTM s motor is mounted on the spinning portion of the apparatus with the shaft fixed to the unit base. While at first appearing ungainly, the arrangement places the motor control directly beside the processor, allowing for starts, stops, and other speed changes in software. Additionally, the shaft retains enough room to mount a pair of slip rings suitable for transferring power to the RTM from an external DC source. The Hall Effect sensors are without question the key to successfully generating and maintaining the illusion. With a powerful magnet mounted at the 3 o clock position on the RTM base, each Hall Effect sensor provides a pulse to its host processor on

4 External Interrupt 0 (EX0). To boost resolution, each EX0 pin is then tied to the External Interrupt 1 (EX1) pin of the other processor (Fig. 1). Thus, when EX0 is tripped on HES1 HES2 EX0 EX0 CPU1 EX1 EX1 CPU2 Figure 1: Hall Effect Sensor Cross-Linkage Board A at the 3 o clock position, Board B sees EX1 trip at the corresponding 9 o clock position. By crossing the connections from EX0 to EX1, each board can continue to run identical code EX0 corresponds to 3 o clock on each board. This could also have been accomplished by placing a second magnet at the 9 o clock position of the base, but this strategy has flaws. First, a second Hall Effect sensor is needed for each board, since they no longer share. Second, precise placement of the magnet is required to make sure each half is exactly 180. Without such placement, subsequent calculations of rotation time become flawed. Furthermore, since the Hall Effect sensor operates because of invisible electromagnetic forces, precise positioning cannot be simply measured with a ruler. Software for the RTM emulates a multi-threaded environment with a barrage of interrupt service routines (ISRs). After initialization, the main code thread relegates itself to continuous background recomputation of display timing, passing all other functions to the various system interrupts (Fig. 2). Of the interrupts, the above mentioned EX0 and

5 EX0 ISR 3 O Clock HES Pulse EX1 ISR 9 O Clock HES Pulse PCA ISR Spin Timer (27-bit) Check Timer Pulses MAIN CODE Calculate Blink Delay T2 ISR Real-Time Clock Time Per Half-Revolution Interrupt Rate Update Display Mode T1 ISR Display Routine Figure 2: Software Block Diagram EX1 each signal the main code block to pull new revolution timing data. That timing is generated with an amalgamation of resources. The PCA master clock serves as the primary 16-bit timer. To slow its clock rate, Timer 0 (T0) is set to roll over at 2 usec intervals, one-quarter the speed of the 2 MHz core clock. The PCA then clocks off the T0 overflow. Finally, the PCA overflow triggers an interrupt incrementing an 8-bit counter. With proper interpretation of the data, this gives the processor what would ordinarily be a 27-bit counter good for a revolution rate of less than one rpm! This timing data is eventually compressed into a 16-bit variable which the main code segment separates into high and low bytes for use by Timer 1. The Timer 1 ISR is responsible for the actual flickering of the LEDs. The display of a particular ASCII character is broken into six apparent columns of eight LEDs. To write the bit mapping necessary, the ISR cross-references the current line, character, and sub-character column against a massive array stored in code space using the following

6 statement: P1 = CharMap[line][line[line][char] - offset][char_subpos]; Supposing that the variable line[0]= test was to be displayed, and that the routine was midway through displaying the s. Substituting arguments would yield or P1 = CharMap[0][line[0][2] 0x20][2]; P1 = CharMap[0][ s 0x20][2]; with the 0x20 representing the offset from the beginning of the ASCII set (index 0) to its first printable character (index 32). This, at last, yields P1 = CharMap[0][0x53][2]; The relevant section of CharMap appears as follows: unsigned char code CharMap[4][119][6] = { { // line 0 {... }, {0xFF, 0xDF, 0xAB, 0xAB, 0xAB, 0x7F}, // s... } } Finally, then, the statement arrives at P1 = 0xAB; the bit pattern needed for the third column of the s character on the top row. Due to space constraints, all four rows possess different top-to-bottom bit orders. While more complex than desired, the resulting enlarged size of the lookup array isn t a significant design concern; even quadrupled in size it poses no threat to the 64KB Flash segment. To simplify the process of reasoning through an active-low irregular-bit-order array with thousands of elements, a separate C program was written to transpose a standard active-high linear-bit-order ASCII set into the four patterns required by the RTM. Once that output was successfully generated, it was a simple task to add basic

7 formatting to the data. As an end result, the program now automatically generates the entire C file used by the microcontroller compiler to hold the lookup array, easily reducing the amount of time needed to create a font by an order of magnitude. Finally, the RTM lends itself to further enhancement by future students. As noted earlier, the motor shaft has space for slip rings and brushings to supply power. At present, attempts to fabricate such equipment have fared poorly. The RTM therefore currently powers itself with two banks of 4 AA batteries, one for the processors and one for the motor and LEDs. The motor / LED battery bank exhausts itself in half an hour, clearly unacceptable for a long-term solution. However, with the twin power bus, external DC could easily be adapted in given the slip rings and brushings. While such a dirty power source would render the microcontrollers useless, it would easily serve for powering the motor and LEDs. With the current design, though, the microcontrollers can remain independently on a single battery bank with a lifetime of weeks. Additionally, the RTM could be equipped with a remote control decoder module on a daughterboard with almost no changes to the current PCBs. Such an addition would allow for end-user controlled motor starts and stops and a far more friendly means of changing the displayed message. The RTM has fulfilled its primary expectation beyond our original hopes. Not only an object of interest to passers-by and the electrically uninitiated, it stole the show of the most recent Evansville / Owensboro IEEE Section meeting, drawing far more interest than the keynote presentation of student-designed autonomous robot projects. Various principles of hardware and software design, as well as the synthesis of the two so defining of computer engineering, are clearly, quickly, and vividly revealed, sparking questions and conversations at every level of expertise.

Keywords: Industries, conveyors, IR sensors, LCD display Introduction:

Keywords: Industries, conveyors, IR sensors, LCD display Introduction: AUTOMATED CONVEYOR BELTS FOR OBJECT COUNTING IN SMALL-SCALE INDUSTRIES M.N.S.LAHARI [1],Dr.P.VENKATESAN [2] email id:mns.lahari@gmail.com SRI CHANDRASEKHARENDRA SARASWATI VISHWA MAHA VIDYALAYA,KANCHEEPURAM

More information

ACD MIS SUPERVISOR S GUIDE

ACD MIS SUPERVISOR S GUIDE Notice Note that when converting this document from its original format to a.pdf file, some minor font and format changes may occur. When viewing and printing this document, we cannot guarantee that your

More information

Microcontroller S.Durgadevi 1, Anbananthi 2 1

Microcontroller S.Durgadevi 1, Anbananthi 2 1 Embedded System: Patient Life Secure System Based On Microcontroller S.Durgadevi 1, Anbananthi 2 1 Assistant Professor, Dept. of ECE, 2 Assistant Professor, Dept. of ECE, 1 Edayathangudi G.S.Pillay Engineering

More information

Ruby Installation Manual

Ruby Installation Manual Ruby Installation Manual Version 02 www.servodynamics.com Introduction Table of Contents: 1 2 2.1 2.2 2.3 INTRODUCTION -------------------------------------------------------------------------------------

More information

Campus Access Management System via RFID

Campus Access Management System via RFID Campus Access Management System via RFID Komal K. Maheshkar, Dhiraj G. Agrawal Abstract For colleges where security is vital and access to certain areas of campus must be controlled & monitored, there

More information

International Journal of Scientific & Engineering Research, Volume 7, Issue 3, March ISSN

International Journal of Scientific & Engineering Research, Volume 7, Issue 3, March ISSN International Journal of Scientific & Engineering Research, Volume 7, Issue 3, March-2016 1026 LIFI BASED AUTOMATED SMART TROLLEY USING RFID V.Padmapriya 1, R.Sangeetha 2, R.Suganthi 3, E.Thamaraiselvi

More information

A Prevention and Automation of Public Distribution System using RFID and Facial Recognition Camera

A Prevention and Automation of Public Distribution System using RFID and Facial Recognition Camera IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 04, Issue 02 (February. 2014), V6 PP 09-13 www.iosrjen.org A Prevention and Automation of Public Distribution System

More information

8. Description, Architecture, and Features

8. Description, Architecture, and Features 8. Description, Architecture, and Features H51007-2.3 Introduction HardCopy APEX TM devices extend the flexibility of high-density FPGAs to a cost-effective, high-volume production solution. The migration

More information

Single Phase Grid Connected Photovoltaic System

Single Phase Grid Connected Photovoltaic System Single Phase Grid Connected Photovoltaic System 1 Kavya S A, 2 Komal T, 3 Pooja A, 3 Sahana S N and 4 Mr Sachin Angadi 1 ankalakote.kavya@gmail.com Abstract Due to global environmental concerns, photovoltaic

More information

1

1 VE7104/INTRODUCTION TO EMBEDDED CONTROLLERS MULTITASKING AND THE REAL-TIME OPERATING SYSTEM The challenges of multitasking and real-time, Achieving multitasking with sequential programming, RTOS, Scheduling

More information

AUTOMATIC TICKET PRINTING AND TICKET CHECKING SYSTEM FOR SHIP SERVICE USING QR CODE

AUTOMATIC TICKET PRINTING AND TICKET CHECKING SYSTEM FOR SHIP SERVICE USING QR CODE Volume 119 No. 14 2018, 1081-1087 ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu AUTOMATIC TICKET PRINTING AND TICKET CHECKING SYSTEM FOR SHIP SERVICE USING QR CODE S.Sasirekha 1,

More information

1. Explain the architecture and technology used within FPGAs. 2. Compare FPGAs with alternative devices. 3. Use FPGA design tools.

1. Explain the architecture and technology used within FPGAs. 2. Compare FPGAs with alternative devices. 3. Use FPGA design tools. Higher National Unit Specification General information for centres Unit code: DG3P 35 Unit purpose: This Unit is designed to enable candidates to gain some knowledge and understanding of the architecture

More information

Low Cost RFID-Based Race Timer for Smaller Events

Low Cost RFID-Based Race Timer for Smaller Events Low Cost RFID-Based Race Timer for Smaller Events Members: Robert Evans, Christie Sitthixay, Edward Tan, Michael Houldsworth ECE Faculty Advisor: Tom Miller Courses Involved: ECE562, ECE633, ECE634, ECE649,

More information

ACD MIS Supervisor Manual

ACD MIS Supervisor Manual Notice Note that when converting this document from its original format to a.pdf file, some minor font and format changes may occur. When viewing and printing this document, we cannot guarantee that your

More information

Smart Irrigation System

Smart Irrigation System Smart Irrigation System Aishwarya Kagalkar B.E. Electronics and Communication, B.V. B. College of Engineering and Technology Hubli, India. Abstract Water requirement for agriculture is large. Due to inadequate

More information

CCC Wallboard Manager User Manual

CCC Wallboard Manager User Manual CCC Wallboard Manager User Manual 40DHB0002USBF Issue 2 (17/07/2001) Contents Contents Introduction... 3 General... 3 Wallboard Manager... 4 Wallboard Server... 6 Starting the Wallboard Server... 6 Administering

More information

UNIVERSAL CREDIT CARD

UNIVERSAL CREDIT CARD UNIVERSAL CREDIT CARD Group 20 October 15, 2002 Faculty Advisor Bruce McNair bmcnair@stevens-tech.edu Group Leader Samir Shah sshah7@stevens-tech.edu Group Member Nikhil Patel npatel7@stevens-tech.edu

More information

Autonomous Quadcopter UAS P15230

Autonomous Quadcopter UAS P15230 Autonomous Quadcopter UAS P15230 Agenda Project Description / High Level Customer Needs / Eng Specs Concept Summary System Architecture Design Summary System Testing Results Objective Project Evaluation:

More information

BMC-7 CONTROLLER MANUAL

BMC-7 CONTROLLER MANUAL BMC-7 CONTROLLER MANUAL 1-1-3236-900-00 REV L May 6, 2013 *Please check with the factory for latest version of this controller manual* IMPORTANT PLEASE OBSERVE ALL MOTOR POLYGON ASSEMBLY (MPA) SPECIFICATIONS

More information

International Journal of Advance Engineering and Research Development SOLAR WATER PUMP CONTROL WITH DIFFERENT TIME SLOTS

International Journal of Advance Engineering and Research Development SOLAR WATER PUMP CONTROL WITH DIFFERENT TIME SLOTS Scientific Journal of Impact Factor (SJIF): 5.71 International Journal of Advance Engineering and Research Development Volume 5, Issue 04, April -2018 e-issn (O): 2348-4470 p-issn (P): 2348-6406 SOLAR

More information

Design for Low-Power at the Electronic System Level Frank Schirrmeister ChipVision Design Systems

Design for Low-Power at the Electronic System Level Frank Schirrmeister ChipVision Design Systems Frank Schirrmeister ChipVision Design Systems franks@chipvision.com 1. Introduction 1.1. Motivation Well, it happened again. Just when you were about to beat the high score of your favorite game your portable

More information

EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report

EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report February 2, 2012 Project Title: Smart Fridge Team Members: Seth Goldberg & Kelly McEachern Project Abstract: Our project

More information

Development of an Automatic Sorting Machine based on product colour and weight characteristics with Conveyor Belt and sensors

Development of an Automatic Sorting Machine based on product colour and weight characteristics with Conveyor Belt and sensors Development of an Automatic Sorting Machine based on product colour and weight characteristics with Conveyor Belt and sensors Y.M.Anekar 1, V.S.Koli 2, S.D.Degloorkar 3, S.B.Bharamgonda 4, Y. R. Mahulkar

More information

Solar Based Irrigation System

Solar Based Irrigation System Solar Based Irrigation System Nikhil G. Kawalkar 1, Vikrant A. Kubde 2, Surendra G. Rohankar 3 Akshay P. Wankhede 4, Yashshri Y. Waghade 5, Apoorva H. Talekar 6 Shubham A. Shende 7, Dipali N. Bahurupi

More information

MODBUS-RTU Applied to the XR10CX Control WATER HEATER DIGITAL OPERATING CONTROLLER

MODBUS-RTU Applied to the XR10CX Control WATER HEATER DIGITAL OPERATING CONTROLLER MODBUS-RTU Applied to the Control WATER HEATER DIGITAL OPERATING CONTROLLER PVI INDUSTRIES, LLC - Fort Worth, Texas 76111 - Web www.pvi.com - Phone 1-800-433-5654 PV500-67 03/17 Table of Contents 1. THIS

More information

Smart Parking System using IOT

Smart Parking System using IOT IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 08, Issue 6 (June. 2018), V (VII) PP 29-33 www.iosrjen.org Smart Parking System using IOT Manisha Kulkarni 1, Prof. Shashikant

More information

Zigbee Based Home Patient Monitoring: Early Detection of Alzheimer Disease

Zigbee Based Home Patient Monitoring: Early Detection of Alzheimer Disease Zigbee Based Home Patient Monitoring: Early Detection of Alzheimer Disease 1 Shailesh V. Kumbhar, Asha Durafe 1 PG Student, 2 Asst. professor Department of Electronics engineering Shah and Anchor Kutchhi

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK SOLAR PUMP UTILIZATION FOR IRRIGATION IN AGRICULTURE PROF. NITIN P.CHOUDHARY 1,

More information

ISSN: [Choudhary * et al., 6(12): December, 2017] Impact Factor: 4.116

ISSN: [Choudhary * et al., 6(12): December, 2017] Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY IRRIGATION USING SOLAR PUMP Prof. Nitin P.Choudhary *1 & Ms. Komal Singne 2 *1 Assistant Professor, Department of Electrical Engg,

More information

ADV7510 to ADV7511Differences

ADV7510 to ADV7511Differences The World Leader in High Performance Signal Processing Solutions ADV7510 to ADV7511Differences September, 2010 Overview 2 Pin Out and other Hardware Changes Audio Return Channel 3D Format Support Improved

More information

Automatic Ration Material Distributions and Payment System Based on GSM and RFID Technology

Automatic Ration Material Distributions and Payment System Based on GSM and RFID Technology Automatic Ration Material Distributions and Payment System Based on GSM and RFID Technology R. Senthil Kumar [1], M. Durgadevi [2], Haritha N Kumar [3], K. Hema [4] Assistant professor, IV YEAR STUDENTS,

More information

User s Guide. Localization system StarGazer TM for Intelligent Robots.

User s Guide. Localization system StarGazer TM for Intelligent Robots. User s Guide Localization system StarGazer TM for Intelligent Robots www.hagisonic.com User s Guide Table of Contents 1. Product Overview -------------------------------------------------------------------------------------------------

More information

Robust Control Architecture for a Reformer Based PEM APU System

Robust Control Architecture for a Reformer Based PEM APU System Robust Control Architecture for a Reformer Based PEM APU System Douglas Thornton Vince Contini Todd McCandlish ABSTRACT Battelle has built multiple auxiliary power generators using liquid logistic fuels

More information

Swiss Server Client Command Protocol

Swiss Server Client Command Protocol =============================================================================== Swiss Server Client Command Protocol 2016-10-26 Peter S'heeren, Axiris -------------------------------------------------------------------------------

More information

Lighting System Analysis

Lighting System Analysis Lighting System Analysis G. Jasmine 1, B. Kirthiga 2, K. Priyanka 3, R. Harish 4 1,2,3 Department of EEE, PSVP Engineering College, Tamilnadu, India 4 Assistant Professor, Department of EEE, PSVP Engineering

More information

ExxonMobil s Quest for the Future of Process Automation

ExxonMobil s Quest for the Future of Process Automation APRIL 26, 2016 ExxonMobil s Quest for the Future of Process Automation By Harry Forbes Keywords Cloud Computing, DCN, DCS, DDS, ExxonMobil, FACE, Future Airborne Capability Environment, Open Source, Process

More information

An Oracle White Paper June Microgrids: An Oracle Approach

An Oracle White Paper June Microgrids: An Oracle Approach An Oracle White Paper June 2010 Microgrids: An Oracle Approach Executive Overview Microgrids are autonomous electricity environments that operate within a larger electric utility grid. While the concept

More information

Enhancing Solar Power Generation Using Gravity And Fresh Water Pipe

Enhancing Solar Power Generation Using Gravity And Fresh Water Pipe Enhancing Solar Power Generation Using Gravity And Fresh Water Pipe Dr. G. Mahesh Manivannakumar 1, C. V. Aashika Jeni 2, D. Dhanalakshmi 3 1Head of the Department, Electrical and Electronics Engineering,

More information

Design and Implementation of Solar Tracker Generating Power System

Design and Implementation of Solar Tracker Generating Power System Design and Implementation of Solar Tracker Generating Power System Dhana Laxmi M.Tech, Raja Mahendra College of Engineering, Hyderabad. ABSTRACT: Solar energy systems have emerged as a viable source of

More information

DEVELOPMENT AND TESTING OF A CAPACITIVE DIGITAL SOIL MOISTURE METRE

DEVELOPMENT AND TESTING OF A CAPACITIVE DIGITAL SOIL MOISTURE METRE Nigerian Journal of Technology (NIJOTECH) Vol. 35, No. 3, July 2016, pp. 686 693 Copyright Faculty of Engineering, University of Nigeria, Nsukka, Print ISSN: 0331-8443, Electronic ISSN: 2467-8821 www.nijotech.com

More information

Intelligent Over Temperature Protection for LED Lighting Applications

Intelligent Over Temperature Protection for LED Lighting Applications Intelligent Over Temperature Protection for LED Lighting Applications White paper Authors: Hakan Yilmazer, Bernd Pflaum October 2013 Power Management & Multimarket Intelligent Over Temperature Protection

More information

AUTOMATION IN AGRICULTURE FIELD USING ARM 7 BASED ROBOT

AUTOMATION IN AGRICULTURE FIELD USING ARM 7 BASED ROBOT AUTOMATION IN AGRICULTURE FIELD USING ARM 7 BASED ROBOT Praveen Kumar Singh 1, Gaurav S Nikam 2, Rupali S Kad 3 1 Dept. of E&TC, Pimpri Chinchwad College of Engineering, Pune, Maharashtra, India 2 Dept.

More information

PISO-CAN200-D/T PISO-CAN400-D/T DASYLab CAN Driver User s Manual

PISO-CAN200-D/T PISO-CAN400-D/T DASYLab CAN Driver User s Manual PISO-CAN200-D/T PISO-CAN400-D/T DASYLab CAN Driver User s Manual Warranty All products manufactured by ICP DAS are warranted against defective materials for a period of one year from the date of delivery

More information

Initial Project and Group Identification Document Divide and Conquer Home Hydroponic System Senior Design I Group 18

Initial Project and Group Identification Document Divide and Conquer Home Hydroponic System Senior Design I Group 18 Initial Project and Group Identification Document Divide and Conquer Home Hydroponic System Joshua Casserino Computer Engineering Richard Charmbury Electrical Engineering Alexander Costello Computer Engineering

More information

PIC18 Interrupt. Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan

PIC18 Interrupt. Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan PIC18 Interrupt Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan chanhl@mail.cgu.edu.tw Interrupts vs. polling Polling Continuously monitor the status of a given device Waste much

More information

Descriptive Statistics

Descriptive Statistics Descriptive Statistics Let s work through an exercise in developing descriptive statistics. The following data represent the number of text messages a sample of students received yesterday. 3 1 We begin

More information

Soil Investigation and Seed Dispensing Station for Farmers using IoT

Soil Investigation and Seed Dispensing Station for Farmers using IoT Soil Investigation and Seed Dispensing Station for Farmers using IoT Bhavya Jain 1, Chirag Sharma 2, Manish Parekh 3 1,2,3Member, Young Engineer s Club, Science Kidz Educare, Mumbai, Maharashtra, India

More information

VMS Vibration Monitoring System. 2017, Logic Elements s.r.o.

VMS Vibration Monitoring System. 2017, Logic Elements s.r.o. VMS Vibration Monitoring System 2017, Logic Elements s.r.o. Blade Vibration Monitoring VMS Platform VMS Case Studies Motivation The free standing and especially shrouded or bandaged blades are often used

More information

AN821. MicroBolt. MicroBolt Low Power Modes 12/30/2005

AN821. MicroBolt. MicroBolt Low Power Modes 12/30/2005 AN821 MicroBolt MicroBolt Low Power Modes 12/30/2005 Introduction: This application notes demonstrates how to access the two lower power modes offered by the MicroBolt. Background: The MicroBolt supports

More information

Automatic Attendance System using Biometric Sensor and IVRS

Automatic Attendance System using Biometric Sensor and IVRS 2018 IJSRSET Volume 4 Issue 4 Print ISSN: 2395-1990 Online ISSN : 2394-4099 Themed Section : Engineering and Technology Automatic Attendance System using Biometric Sensor and IVRS Khushbu Yadav 1, Harshada

More information

Low Power Tiny Iambic Keyer

Low Power Tiny Iambic Keyer Low Power Tiny Iambic Keyer Andy Palm N1KSN This is my first project with a Texas Instruments MSP430 microcontroller, specifically the Value Line MSP430G2211 chip. This chip is supplied with the inexpensive

More information

Secure Access Solutions using Passive Radio Frequency Identification Technology

Secure Access Solutions using Passive Radio Frequency Identification Technology Secure Access Solutions using Passive Radio Frequency Identification Technology R.C. Mala Department of Electrical and Electronics Manipal Institute of Technology Manipal University, India Anirudh Mital

More information

FORMAL PROPERTY VERIFICATION OF COUNTER FSM AND I2C

FORMAL PROPERTY VERIFICATION OF COUNTER FSM AND I2C FORMAL PROPERTY VERIFICATION OF COUNTER FSM AND I2C SNEHA S 1, ROOPA G 2 1 PG Student, Dept. of Electronics and Communication Engineering, Nagarjuna College of Engineering, Bengaluru Karnataka Email: sneha44enz@gmail.com

More information

Are All Generator Sets Integrated Equally?

Are All Generator Sets Integrated Equally? Our energy working for you. Power topic #6016 Technical information from Cummins Power Generation Are All Generator Sets Integrated Equally? White Paper Sanjay Wele, Regional Manager, West Asia, Cummins

More information

Automated Irrigation System Using Robotics and Sensors

Automated Irrigation System Using Robotics and Sensors Automated Irrigation System Using Robotics and Sensors Prathyusha Shobila 1, Venkanna Mood 2 1 MTech Student, Department of ECE, St. Martin s Engineering College, Dhullapally, Hyderabad 2 Associate Professor,

More information

July, 10 th From exotics to vanillas with GPU Murex 2014

July, 10 th From exotics to vanillas with GPU Murex 2014 July, 10 th 2014 From exotics to vanillas with GPU Murex 2014 COMPANY Selected Industry Recognition and Rankings 2013-2014 OVERALL #1 TOP TECHNOLOGY VENDOR #1 Trading Systems #1 Pricing & Risk Analytics

More information

DESIGN OF WIRELESS SENSOR NODE AND TIME CONTOURED CONTROL SCHEME FOR A COMPOSTING PROCESS

DESIGN OF WIRELESS SENSOR NODE AND TIME CONTOURED CONTROL SCHEME FOR A COMPOSTING PROCESS DESIGN OF WIRELESS SENSOR NODE AND TIME CONTOURED CONTROL SCHEME FOR A COMPOSTING PROCESS Rahane S.B. Deptt. of Electronics Engg., Amrutvahini College of Engineering, Sangamner, M.S., India. sandiprahane@yahoo.com

More information

Monitoring and Centering a Remote Discrete Using Rfid through Sim Module

Monitoring and Centering a Remote Discrete Using Rfid through Sim Module International Journal of Engineering Science Invention ISSN (Online): 2319 6734, ISSN (Print): 2319 6726 Volume 4 Issue 5 May 2015 PP.71-79 Monitoring and Centering a Remote Discrete Using Rfid through

More information

Fuzzy Based Hybrid Solar-Wind Energy Harvesting Using Mppt Control Technique

Fuzzy Based Hybrid Solar-Wind Energy Harvesting Using Mppt Control Technique Indian Journal of Science and Technology, Vol 9 S(1), DOI: 10.17485/ijst/2016/v9iS(1)/108444 December 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Fuzzy Based Hybrid Solar-Wind Energy Harvesting

More information

Developing Sense and Avoid (SAA) Capability in Small Unmanned Aircraft

Developing Sense and Avoid (SAA) Capability in Small Unmanned Aircraft Developing Sense and Avoid (SAA) Capability in Small Unmanned Aircraft J. Perrett, S.D. Prior University of Southampton, Autonomous Systems Laboratory, Boldrewood Campus, Southampton, SO16 7QF, UK, jp13g11@soton.ac.uk

More information

Checklist for testing electronic digital indicators with simulated pulses 2/6/08

Checklist for testing electronic digital indicators with simulated pulses 2/6/08 Appendix E Checklist for Testing Electronic Digital Indicators with Simulated Pulses This checklist is used for Technical Policy U. Evaluating electronic digital indicators submitted separate from a measuring

More information

Experiment 10 Uniform Circular Motion

Experiment 10 Uniform Circular Motion Experiment 0 Whenever a body moves in a circular path, a force directed toward the center of the circle must act on the body to keep it moving in this path. That force is called centripetal force. The

More information

X2-RCU (Robot Control Unit) BE-5132 User Guide V1.0

X2-RCU (Robot Control Unit) BE-5132 User Guide V1.0 X2-RCU (Robot Control Unit) BE-5132 User Guide V1.0 Thank you for purchasing this JoinMax Digital product. To understand the remarkable features of X2-RCU and the correct operation method, you re recommended

More information

International Journal of Emerging Trends in Science and Technology Optimization of soot blower control

International Journal of Emerging Trends in Science and Technology Optimization of soot blower control International Journal of Emerging Trends in Science and Technology Optimization of soot blower control Bharathi.P Nandhini.R Dheepika.S Valli.M Abstract- Boiler is one of the main equipment in thermal

More information

POWER ELECTRONIC TRAINER Model: PET-1700

POWER ELECTRONIC TRAINER Model: PET-1700 POWER ELECTRONIC TRAINER Model: PET-1700 III. MODULE BOARD 1. Size: 13.4"/.34m X 9.45"/.24m X 1.9"/.048m Approx. 2. Board frame: PS plastic extrusion, 0.118"/3mm thick. 3. Dimensions shown BELOW. I. FEATURES

More information

Experiment 5 Uniform Circular Motion

Experiment 5 Uniform Circular Motion Experiment 5 Uniform Circular Motion Whenever a body moves in a circular path, a force directed toward the center of the circle must act on the body to keep it moving in this path. That force is called

More information

Preventative Back-Tracking Methods using RFID technology

Preventative Back-Tracking Methods using RFID technology 1 Preventative Back-Tracking Methods using RFID technology Crystal Batts: Winston Salem State University, Ronique Young: Spelman College, ShaKari Frazier: Fort Valley State University Abstract Wireless

More information

Air Reconnaissance to Ground Intelligent Navigation System

Air Reconnaissance to Ground Intelligent Navigation System Air Reconnaissance to Ground Intelligent Navigation System GROUP MEMBERS Hamza Nawaz, EE Jerrod Rout, EE William Isidort, EE Nate Jackson, EE MOTIVATION With the advent and subsequent popularity growth

More information

Theft Resistant Shopping Cart Project Proposal

Theft Resistant Shopping Cart Project Proposal Theft Resistant Shopping Cart Project Proposal Team 25 Team Members Kong Zhi Yao (kkong7) Mei Ling Yeoh (myeoh2) Zhan (xzhan5) TA: Jacob Bryan ECE 445 Spring 2016 February 10 th, 2016 1 Table of Contents

More information

SOLAR FED BOOST CONVERTER FOR WATER PUMP APPLICATION

SOLAR FED BOOST CONVERTER FOR WATER PUMP APPLICATION SOLAR FED BOOST CONVERTER FOR WATER PUMP APPLICATION Manimaran. M Student, Department of Electrical and Electronics Engineering Kersome Joshua. M Student, Department of Electrical and Electronics Engineering

More information

Taking the LED Pick and Place Challenge

Taking the LED Pick and Place Challenge Taking the LED Pick and Place Challenge Joshua J. Markle Cree, Inc. Joshua_markle@cree.com Abstract For the past few years there has been a shift in the Lighting Industry that has carried over to the surface

More information

Engineering Excellence Because Your Image Depends On It. High Speed Rotator. User s Guide

Engineering Excellence Because Your Image Depends On It. High Speed Rotator. User s Guide Engineering Excellence Because Your Image Depends On It High Speed Rotator User s Guide Finger Lakes Instrumentation, LLC WELCOME Thank you for purchasing an FLI. We know that this accessory will bring

More information

DESIGNING THE REMOTE CONTROLLING OF THE TOWN GAS CONSUMPTION SYSTEM

DESIGNING THE REMOTE CONTROLLING OF THE TOWN GAS CONSUMPTION SYSTEM DESIGNING THE REMOTE CONTROLLING OF THE TOWN GAS CONSUMPTION SYSTEM Akbar Alidadi Shamsabadi¹*, Afshin Raeisi Dehkordi², Shahab Taghipour² ¹ Young researchers club and elites, Islamic Azad University,

More information

PDM16 & PDM32 User Manual

PDM16 & PDM32 User Manual MoTeC PDM16 & PDM32 User Manual Contents Introduction... 3 Operation... 4 Configuration...4 PDM Manager Software...4 PC Connection...4 Configuration Concepts...4 Conditions...7 Switch Inputs...7 CAN Inputs...8

More information

PHOTO-VOLTAIC SOLAR TRACKING SYSTEM BASED ON PERIPHERAL INTERFACE CONTROLLER

PHOTO-VOLTAIC SOLAR TRACKING SYSTEM BASED ON PERIPHERAL INTERFACE CONTROLLER PHOTO-VOLTAIC SOLAR TRACKING SYSTEM BASED ON PERIPHERAL INTERFACE CONTROLLER Vasudha Sharma 1, Saumya Guwalani 2, Vinay Verma 3, Prof. O. N. Pandey 4 1,2,3,4 Department of Instrumentation & Control, JSSATEN,

More information

Development of Software for the Microcontroller Based Automated Drip Irrigation System Using Soil Moisture Sensor

Development of Software for the Microcontroller Based Automated Drip Irrigation System Using Soil Moisture Sensor International Journal of Current Microbiology and Applied Sciences ISSN: 2319-7706 Volume 7 Number 01 (2018) Journal homepage: http://www.ijcmas.com Original Research Article https://doi.org/10.20546/ijcmas.2018.701.169

More information

Exhibit 1 - MyFloridaNet-2 Services - Service Level Agreements Financial Consequence for non-performance

Exhibit 1 - MyFloridaNet-2 Services - Service Level Agreements Financial Consequence for non-performance Core Network Availability: the amount of time the core network is accessible to the customers. Outage restored within 60 seconds, with time Core Network Availability and Performance Degradation Credit

More information

USER MANUAL FOR MORE INFORMATION

USER MANUAL FOR MORE INFORMATION USER MANUAL FOR MORE INFORMATION Visit us online at force1rc.com for product information, replacement parts and flight tutorials. ATTENTION: BEFORE FLYING YOUR DRONE, PLEASE WATCH THIS FLIGHT INSTRUCTION

More information

Application Note, V1.0, Jul AP16145 XC2000/XE166. Microcontrollers

Application Note, V1.0, Jul AP16145 XC2000/XE166. Microcontrollers Application Note, V1.0, Jul. 2008 AP16145 XC2000/XE166 U s i n g E n h a n c e d I n t e r r u p t H a n d l i n g w i t h D A v E Microcontrollers Edition 2008-08-07 Published by Infineon Technologies

More information

Operating instructions, TC543 controller.

Operating instructions, TC543 controller. Operating instructions, TC543 controller. 1 The Out light indicates that the heating element is powered. The Aux light indicates the status of an auxiliary that can be associated to the cycle steps or

More information

EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report

EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report April 25, 2012 Project Title: Smart Fridge Team Members: Seth Goldberg & Kelly McEachern Project Abstract: Our project is a smart

More information

M3 Group System. General. In This Section

M3 Group System. General. In This Section General In This Section M3 Specifications M3 Group System General The M3 Group System includes a group dispatcher and up to twelve IMC, VVMC, VFMC traction or HS hydraulic controllers (HS uses HMC Group

More information

Operating Instructions GENIUS Control Unit Optional: Serial Interface

Operating Instructions GENIUS Control Unit Optional: Serial Interface Operating Instructions GENIUS Control Unit Optional: Serial Interface 9-18812 96 th Avenue Surrey, BC Canada, V4N 3R1 Tel: (001) 604 607-6028 Fax: (001) 604 607-6026 e-mail: service@metal-shark.com 1 Customer

More information

TABLE OF CONTENTS CHAPTER 1 KEY INFORMATION # SECTION 1.1 COMPONENT CHECK # SECTION FUNDAMENTALS # SECTION 1.3 TRANSMITTER SETTINGS #

TABLE OF CONTENTS CHAPTER 1 KEY INFORMATION # SECTION 1.1 COMPONENT CHECK # SECTION FUNDAMENTALS # SECTION 1.3 TRANSMITTER SETTINGS # FPV Racing Micro Quad Build Instructions TABLE OF CONTENTS CHAPTER 1 KEY INFORMATION # SECTION 1.1 COMPONENT CHECK # SECTION 1.2 - FUNDAMENTALS # SECTION 1.3 TRANSMITTER SETTINGS # CHAPTER 2 - ASSEMBLEY

More information

Team Members. Team Mentor

Team Members. Team Mentor System for Separation of Recyclables University of Nebraska Lincoln Team Members Boian Berberov Tracy Jamison Jared Stimson berberov@cse.unl.edu tjamiso@cse.unl.edu jstimson@cse.unl.edu Team Mentor Dr.

More information

United Kingdom of Great Britain and Northern Ireland

United Kingdom of Great Britain and Northern Ireland (UK/0126/0016) MI-006 United Kingdom of Great Britain and Northern Ireland Certificate of EC type-examination of a measuring instrument Number: UK/0126/0016 revision 4 issued by the Secretary of State

More information

Application Note: Application of KEEL in a distributed diagnostic application in an automobile (09/04/2003)

Application Note: Application of KEEL in a distributed diagnostic application in an automobile (09/04/2003) Application Note: Application of KEEL in a distributed diagnostic application in an automobile (09/04/2003) Objective: Today's automobiles are becoming very complex. They are no longer simply mechanical

More information

MONITORING PROLIFERATION CONDITIONS FOR CROP HARVESTING USING IOT

MONITORING PROLIFERATION CONDITIONS FOR CROP HARVESTING USING IOT MONITORING PROLIFERATION CONDITIONS FOR CROP HARVESTING USING IOT Mrs. D. Lakshmi 1, Ms. N. Anisha 2, Ms. B. Kalaivani 3 1 Associate Professor, Dept. of CSE, Panimalar Institute of Technology, Chennai,

More information

Anaesthesia Regularization during Surgeries by using Heart Beat Sensor

Anaesthesia Regularization during Surgeries by using Heart Beat Sensor Anaesthesia Regularization during Surgeries by using Heart Beat Sensor Sushma Chowdary Polavarapu Assistant Professor, EIE Dept., V.R. Siddhartha Engineering College, Vijayawada, Krishna Dist., A.P. Kranthi

More information

Contents. MY-Series 2 Placement Machines 4 Options 6 Upgrades 14. TP-Series 22 Upgrades 24

Contents. MY-Series 2 Placement Machines 4 Options 6 Upgrades 14. TP-Series 22 Upgrades 24 Contents Contents MY-Series 2 Placement Machines 4 Options 6 Upgrades 14 TP-Series 22 Upgrades 24 Accessories 30 Board Handling 32 Inline System 38 Feeder System 60 Placement Tools 84 Software Products

More information

Yes No N/A. Yes No N/A. Yes No N/A. Yes No N/A

Yes No N/A. Yes No N/A. Yes No N/A. Yes No N/A Page 1 of 11 This checklist is used for Technical Policy U. Evaluating electronic digital indicators submitted separate from a measuring element. This section is intended for lab testing only. Is permanence

More information

UNINTERRUPTED POWER SUPPLY BATTERY LIFE CYCLE SYSTEM DEVELOPMENT

UNINTERRUPTED POWER SUPPLY BATTERY LIFE CYCLE SYSTEM DEVELOPMENT UNINTERRUPTED POWER SUPPLY BATTERY LIFE CYCLE SYSTEM DEELOPMENT Guntars Strods, Aldis Pecka Latvia University of Life Sciences and Technologies, Latvia guntars.strods@llu.lv, aldis.pecka@llu.lv Abstract.

More information

Identity Management. ID management for people and objects

Identity Management. ID management for people and objects Identity Management ID management for people and objects System accessible assigned tokens Token means something you have. This is separate from something you know or you are. Things you carry and perform

More information

Instruction Manual ODY-1012

Instruction Manual ODY-1012 Ages 8+ Instruction Manual ODY-1012 INCLUDED CONTENTS: 1 Fuselage Cover 2 Main Frame / Cage 3 Main Blades (x 4) 4 3.7 Rechargeable Lithium Battery 5 USB Charging Cable 6 Radio Transmitter Thank you for

More information

Chip Card & Security ICs my-d vicinity SRF 55V02P

Chip Card & Security ICs my-d vicinity SRF 55V02P Chip Card & Security ICs my-d vicinity Intelligent 2.5 Kbit EEPROM with Contactless Interface compliant to ISO/IEC 15693 and ISO/IEC 18000-3 mode 1 Plain Mode Operation Short Product Information July 2007

More information

Autonomous Battery Charging of Quadcopter

Autonomous Battery Charging of Quadcopter ECE 4901 Fall 2016 Project Proposal Autonomous Battery Charging of Quadcopter Thomas Baietto Electrical Engineering Gabriel Bautista Computer Engineering Ryan Oldham Electrical Engineering Yifei Song Electrical

More information

SECTION DIGITAL EXTERIOR MARQUEE SIGN

SECTION DIGITAL EXTERIOR MARQUEE SIGN PART 1 GENERAL 1.1 RELATED DOCUMENTS SECTION 10 14 63 DIGITAL EXTERIOR MARQUEE SIGN A. Drawings and general provisions of the Contract, including General and Supplementary Conditions and Division-1 specification

More information

CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES

CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES H. Randolph Thomas The Pennsylvania State University Research Building B University Park,

More information

UNMANNED SURFACE VESSEL (USV)

UNMANNED SURFACE VESSEL (USV) UNMANNED SURFACE VESSEL (USV) UNMANNED SURFACE VESSEL (USV) By using Arma-Tech Tactical Autonomous Control Kit (ATTACK), the vessel can operate independently or combined in swarm. Completely autonomously

More information

Smart Mirror. 7/20/2016 Group 8 - CECS

Smart Mirror. 7/20/2016 Group 8 - CECS Smart Mirror Group 8 Fall 16 / Spring 17 Katlin Joachim Computer Engineering Austin Keller Electrical Engineering Reid Neureuther Computer Engineering Daniel Yoder Electrical Engineering 7/20/2016 Group

More information