Critical Design Review

Size: px
Start display at page:

Download "Critical Design Review"

Transcription

1 LART-CS08(Train Spotting) Critical Design Review March 10, 2008 ECE 492 Spring 2008

2 System Block Diagram Low-Level Networking UI/Controller

3 W4 W8 W3 W7 System Block Diagram W1 W6 W5

4 System Block Diagram

5 System Timing Analysis Delay 1 1msec Delay 2 41usec Delay 3 2.5msec Sensor Trigger PIC RS-232 PC Delay msec Delay 5 9.2msec Delay 4 10msec Delay 7b 5.6msec Slave Delay 7a 20usec Hardware Path-a Delay = = msec Path-b Delay = = msec Critical Path Train Speed = 50cm/sec Delay 8a 1.1usec Delay 8b 1msec Rails Switch Critical Distance = 5cm 100msec

6 Technical System Requirements Requirements Software Network Hardware R001 rail switch control R002 engine power control R003 train proximity monitoring R004 expandability and adaptability R005 control and monitoring speed R006 applications programming interface R007 maintenance user interface R008 demonstration application R009 modifications of the CFE layout R010 power input

7 General Project Requirements Requirements Software Network Hardware GPR001 documentation GPR002 environmental GPR003 EMI/EMC GPR004 hazmats GPR005 safety and good practice GPR006 reliability GPR007 maintainability GPR008 sourcing sustainability GPR009 global sustainability GPR010 ethics report GPR011 project demonstration GPR012 final disposal of projects

8 Other System Requirements Ethical Requirements Requirements Software Network Hardware ER001 trains will not crash ER002 train acceleration Maintainability Requirement Requirements Software Network Hardware MR001 Mean Time To Repair Reliability Requirements Requirements Software Network Hardware RR001 Mean Time Between Failure RR002 System life

9 System Risk Assessment High risk subsystems RS-232 communication (PC to PIC) Digital to PWM on PIC API Lower risk subsystems GUI Automatic control software Hardware that resides on the end of the system Low level hardware to power circuits/rails Switch control hardware Sensor hardware

10 System Risk Assessment Subsystems Calculated Risk Factor Risk Level UI/API Group: Maintenance/Demo User Interface Low UI/API Group: Maintenance/Demo Control Medium UI/API Group: API Medium Networking Group: RS-232Communication Medium Networking Group: Sensor Polling High Networking Group: Rail control Medium Networking Group: Switch control High Low-Level Group: Overall system power Medium Low-Level Group: Rail power Medium Low-Level Group: Rail Switching Medium Low-Level Group: Sensors Medium

11 Cost Analysis Direct Costs: Octopus-550, PICs, heat sinks, serial cables, power supply etc. (detailed on Bill of Materials): $1, $600 for board fabrication Total direct costs: $2, Indirect Costs: Labor (2590 $20/hr), Total indirect costs: $51, Total Costs for project: $53,833.53

12 Management Plan Post CDR Management team (Alex, Taha, Shrijan) More streamlined communication Update Weekly task/schedule Write status letters Documentation divided up among team Fabrication done in 2 batches Integration led by networking group Software coding to be completed by April 7th

13 Management Plan Post CDR 03/23 03/30 04/04 04/14 04/28 03/12 Solder, Test & Improve Boards Batch1 2 nd Batch of Boards Fabrication Solder 4-5 people 04/07 boards Batch2 Test & Integrate Subsystems 8-9 people Software coding Software Integration & Testing 03/30 04/04 Networking Team, codes CRC + Watchdog timer

14 Software Top Level Diagram

15 API UML Diagram (1)

16 API UML Diagram (2) To ControllerMain (C3) To DemoControl (C2) -rails : List<Rail> -switches : List<Switch> -sensors : List<Sensor> -name : string -builddecode : BuilderDecoder (C4) -railvalues : Map<Rail,Integer> -switchvalues : Map<Switch,Integer> -maxrails : int -maxswitches : int Station (O1) -sensorvalues : Map<Sensor, Boolean> +Station() +Station(in name : String, in builddecode : BuilderDecoder (C4), in maxrails : int, in maxswitches : int) +addrail(in r : Rail (O3)) +addswitch(in s : Switch (O4)) +addsensor(in s : Sensor (O3)) +getname() : String +setname(in name : String) +setbuilddecode(in builddecode : BuilderDecoder (C4)) +setrailvalue(in rail : Rail (O3), in value : int) +setswitchvalue(in sw : Switch (O4), in value : int) +build(in railvalues : int[], in switchvalues : int[]) +getrailvalue(in r : Rail (O3)) : int +getswitchvalue(in s : Switch (O4)) : int +getsensorvalue(in s : Sensor (O3)) : boolean To MaintenanceControl (C1) -position : Rail (O3).railPosition -rail : Rail (O3) -num : int Sensor (O3) -value : boolean +Sensor() +Sensor(in rail : Rail (O3), in num : int, in position : Rail (O3).railPosition) +setposition(in position : Rail (O3).railPosition) +getposition() : Rail (O3).railPosition +getrail() : Rail (O3) +setrail(in rail : Rail (O3)) +getnum() : int +setnum(in num : int) +getvalue() : bool BuilderDecoder (C4) -ports : List<SerialPort> -listeners : List<SensorListener> +BuilderDecoder() +build(in station : int, in railvalues : int[], in switchvalues : int[]) +serialevent(in e : SerialPortEvent) +addsensorlistener(in s : SensorListener) From Switch (O4) From Rail (O2)

17 API UML Diagram (3)

18 Demonstration GUI

19 Maintenance GUI Trainspotting Maintenance Mode File Help Operating Mode Maintenance Mode Exit Demonstration Mode Station 1 3 rd Street Station > -> > -> STOP!?!

20 XML Document Hierarchical Structure LARTS Station Rail Sensor Switch

21 XML Document (Station) Station Name Number of Rails Number of Switches Number of Sensors Example: <NAME>Station 1-3rd Street Terminal</NAME> <NUMRAILS>7</NUMRAILS> <NUMSENSORS>6</NUMSENSORS> <NUMSWITCHES>2</NUMSWITCHES>

22 XML Document (Rail) Rail Name Number Left Connection Right Connection Row Length Example: <STATIONNAME>Station 1</STATIONNAME> <NUM>1.0</NUM> <LEFTCON>-1.0</LEFTCON> <RIGHTCON>1.1</RIGHTCON> <ROW>1</ROW> <LENGTH>300</LENGTH>

23 XML Document (Sensor) Sensor Name Number Rail Number Rail Position Example: <STATIONNAME>Station 1</STATIONNAME> <NUM>0</NUM> <RAILNUM>1.0</RAILNUM> <RAILPOS>RAIL_MIDDLE</RAILPOS>

24 XML Document (Switch) Switch Station Name Number Left Rail Right Rail Left Position Right Position Direction Polarity Example: <STATIONNAME>Station 1</STATIONNAME> <NUM>0</NUM> <LEFTRAIL>1.1</LEFTRAIL> <RIGHTRAIL>1.6</RIGHTRAIL> <LEFTPOS>RAIL_LEFT</LEFTPOS> <RIGHTPOS>RAIL_MIDDLE</RIGHTPOS> <DIRECTION>RIGHT</DIRECTION> <POLARITY>NORMAL</POLARITY>

25 Block Diagram: Networking

26 Detailed Block Diagram

27 System Overview PC-PIC and PIC-PIC communication is done via 9600Kbs MasterPIC: Receives packets from PC, distributes rail info to SlavePICs Controls Switching Polls sensors, and sends back packets to PC SlavePIC Powers rails via PWM

28 MasterPIC Functionality Sends initial byte with station number Receives packets from PC on interrupt basis. If there was error, sends back error byte Distributes rail info to 3 SlavePICs Sensors are polled every 1msec. If a sensor became active, packet is sent to MasterPC. If error byte is sent, sends back last sensor packet again MasterPIC keeps a queue for switch control

29 PC-to-PIC Packet Structure Switch Byte Rail Bytes CRC SW0-7 R8 R7 R6 R5 R4 R3 R2 R1 R0 1 Byte 1 Byte 9 Bytes Switch Byte Structure Rail Byte Structure X EM STOP <-Polarity-> ( ) < Speed > (0-F) Bit7 Bit6 Bit5 Bit4 Bit3 Bit2 Bit1 Bit0 11bytes

30 Block Diagram: Networking PIC-to-PC Sensor Packet Structure Sensor Bytes CRC 15 S S 14 S 14 S 13 S 13 S 12 S 12 S 11 S 11 S 10 S 10 S 9 S 8 S 2 S 7 S 6 S 5 S 4 S 3 1byte 1byte 1byte PIC-to-PC Station Number & Error Byte S 1 1Bit S 0 3bytes

31 PIC-to-PC Station/Error Byte PIC-to-PC Station Packet CRC X X X X X <-----Station-----> Bit7 Bit6 Bit5 Bit4 Bit3 Bit2 Bit1 Bit0 PC-PIC Error Byte < ERROR > Bit7 Bit6 Bit5 Bit4 Bit3 Bit2 Bit1 Bit0

32 Timer 1 Timer 2 Switch Queue 2 timers with 2-task deep queues When packet arrives, switching task is placed in the first empty queue If both queues are busy, task is added to any queue When timer counts 5.6msec, it moves to next available task Each task is simply the switch byte containing relevant info

33 PIC-to-PIC Communication PIC-to-PIC uses RS-232 on single wire ether Each PIC has a unique ID PIC-to-PIC packet has address bytes Packets are received on interrupt basis If there s collision, PIC waits for 16msec, and sends again

34 PIC-to-PIC Packet Structure Standard Packet Structure Rail Bytes Preliminary Bytes CRC R2 R1 R0 Length FROM TO 1 Byte 3 Bytes 3 Bytes Error Packet Structure CRC ERROR Length FROM TO 1 Byte 1 Byte 3 Bytes 5bytes 7bytes

35 SlavePIC Functionality Receives packets from MasterPIC on interrupt basis. If there was error, sends back error byte Creates 3 PWM signals with unique duty cycles Outputs 2 polarity signals per PWM Duty cycle ranges from 36% - 96% Speed changes are implemented gradually via 3 timers for each PWM signal

36 Block Diagram: Low Level Low-Level A/C D/C Converter 0V / 5V Sensors 5V 5V To PICs Switches 18V H-Bridge Switch C. Power Board 0V / 22V 0V / 22V PWM (18V) PWM (18V) Rails 22V Four Major Components: Power conversion / Distribution Sensor / Train Proximity Monitoring system Rail Switching system Rail Power / Speed Control System All Components will occur at all five stations Sensor C.

37 Block Diagram: Low Level Power Conversion / Distribution 120V AC, 60 Hz signal from a wall outlet will be transformed to 24V DC / 1A DC voltage changed into four sources (22V, 18V, and two 5V sources) using a voltage regulator chip

38 Block Diagram: Low Level Sensor / Train Proximity Monitoring Sends TTL level voltages to the PIC indicating if the train is near the sensor or not Runs off a 5V DC source One full circuit contains nine (9) reed switches Sends a logic High when no train is neat the sensor, and a logic Low when a train is present

39 Block Diagram: Low Level Rail Switching In the figure here ground is represented by the input on the top, Vcc (22V DC) is on the bottom This circuit will discharge across the rail switch depending on which switch is closed. Only one switch can be closed at a time The switch is actually a transistor (NTE196). This device will turns on and off when the PIC tells it to do so (sends a designated voltage)

40 Block Diagram: Low Level Rail Power / Speed Control Pulse Width Modulated (PWM) and polarity signal input from the PIC The chip amplifies this signal to the amplitude of pin 8 and 16 (18V in this case) Outputs go to rails and power the trains LEDs will be utilized as visual feed back to see which rails are being powered

41 Draft Acceptance Test Plan Technical Requirements R001: Rail Switch Control - Test by visual inspection Switch must throw track majority of the way across to the other side R002: Engine Power Control - Test GUI by visual inspection Correct operation of 16 speeds and power to selected tracks No speed variation over track segments Over current circuit R003: Train Proximity Monitoring - Test by visual inspection and analysis R004: Expandability/ Adaptability - Test by visual inspection and analysis Multiple trains, documentation for expandability R005: Control and Monitoring Speed - Test by measurement and analysis Time delay must not affect performance R006: Application Programming Interface - Test by documentation Well commented code and API documentation R007: Maintenance User Interface - Test GUI through a qualified user User manual, manually control, visually monitor components R008: Demonstration Application - Test by having non-tech user use system User manual, user friendly easy to follow R009: Modification of the CFE - Test by visual inspection Supported by sub-system diagrams R010: Power Input - Test by visual inspection Sub-system diagrams

42 Draft Acceptance Test Plan General Project Requirements and Ethical Requirements GPR001: Documentation, GPR005: Safety and Good Practice - Tested throughout project process GPR002: Environmental, GPR003: EMI/EMC, GPR004: Hazmat - Visual inspection of components GPR006: Reliability - Analyze, inspect, measure to meet Reliability Requirements GPR007: Maintainability - Test by visual inspection and analysis Documented API, Sub-system diagrams and supplier availability GPR008: Sourcing Sustainability - Test by checking BOM available from 2 suppliers GPR009: Global Sustainability Test by life cycle assessment of 5 years All components RoHS compliant GPR010: Ethics Report Addressed by fully documented ethics report GPR011: Project Demonstration Test by Visual inspection Complete Final Project Presentation GPR012: Final Disposal of Projects Test by Visual inspection Correct labeling of components that are put in storage Sealed container, locked container ER001: Crashing Trains - Test by visual inspection and analysis ER002: Acceleration and Deceleration - Test by visual inspection and measurement

43 Questions?? Any questions??

44 Risk Assessment: UI Maintenance/Demo User Interface These interfaces are designed for the user to control all signals (speed and direction) that will be sent out to the stations. Methodology Maturity Methodology Complexity Software Maturity Software Complexity Dependency of Schedule on External Functional Groups Dependency of Performance on External Functional Groups Potential for Failure Factor = ( )/6 = Degradation of Technical/Operational Performance at System Level Schedule Impact Cost Impact Consequence for Failure Factor = ( )/3 = 0.4 Risk Factor: P+C (P*C) = (0.067 * 0.4) = low risk

45 Risk Assessment: UI Maintenance/Demo Control These control modules monitor the maintenance and demonstration operations to make sure the correct signals going out to the stations. Methodology Maturity Methodology Complexity Software Maturity Software Complexity Dependency of Schedule on External Functional Groups Dependency of Performance on External Functional Groups Potential for Failure Factor = ( )/6 = 0.23 Degradation of Technical/Operational Performance at System Level Schedule Impact Cost Impact Consequence for Failure Factor = ( )/3 = 0.33 Risk Factor: P+C (P*C) = (0.23 * 0.33) = medium risk

46 Risk Assessment: UI API The API is the underlying framework of the lower level methods that communicate between serial port and the PC. Methodology Maturity Methodology Complexity Software Maturity Software Complexity Dependency of Schedule on External Functional Groups Dependency of Performance on External Functional Groups Potential for Failure Factor = ( )/6 = 0.1 Degradation of Technical/Operational Performance at System Level Schedule Impact Cost Impact Consequence for Failure Factor = ( )/3 = 0.33 Risk Factor: P+C (P*C) = (0.1 * 0.33) = medium risk

47 Requirements Analysis: UI Requirements Maintenance Demonstration API R001 rail switch control R002 engine power control R003 train proximity monitoring R004 expandability and adaptability R005 control and monitoring speed R006 applications programming interface R007 maintenance user interface R008 demonstration application R009 modifications of the CFE layout R010 power input

48 Requirements Analysis: UI Requirements Maintenance Demonstration API GPR001 documentation GPR002 environmental GPR003 EMI/EMC GPR004 hazmats GPR005 safety and good practice GPR006 reliability GPR007 maintainability GPR008 sourcing sustainability GPR009 global sustainability GPR010 ethics report GPR011 project demonstration GPR012 final disposal of projects ER001 trains will not crash ER002 train acceleration

49 Test Procedures - UI Start at the lowest level and work up Test each class of the API individually Unit tests using JUnit framework Test BuilderDecoder using oscilloscope Test maintenance interface Change rail and switch values Use breakpoints in the code Use oscilloscope Write a test program and watch sensor display

50 Test Procedures UI Test demo app using a test program to simulate changing sensors Test control logic using printouts, breakpoints, or oscilloscope Integration Test communication with PICs send and receive packets Test maintenance interface with the whole system allows us to test every component Test control logic of the demo app on the whole system

51 Cost Analysis: UI Direct Costs Octopus ~ $125 Indirect Costs Labor ~ $1200 Computers ~ $4500 Total Costs ~ $5800

52 Gradual Speed Change Each PWM/Rail pair has a dedicated 16-bit timer Once a change in speed is received, timer is started to count until a designated time is reached (i.e 1msec) When time is reached, timer overflows, creates interrupt, and increments/decrements current duty cycle by 1% This goes on until current duty cycle reaches desired duty cycle Desired Duty Cycle Diff. Timer X Current Duty Cycle

53 Visual Feedback UI/Controller Group has GUI Networking Group has LEDs on TxD & RxD of PIC-PC and on ether of PIC-to-PIC Low-Level Group has LEDs on PWM outputs of the H- Bridge

54 Requirements Analysis: Networking

55 Requirements Analysis: Networking

56 Networking Board Layout

57 Networking Board Layout N9 I0 N5 N6 (PIC2 PIC) 1K 5V I0

58 Networking Board Layout GND N6 PIC Board LED Circuit N8 N3,N4,N5 PIC to RS232 N6 Communication Board I4 LED-X Circuit N10 GND GND 5V 1K (ohm) PIC Board Master reset (Push Button) N9 MRC (N1,N2, N3, N4)

59 Test Procedures: Low level Speed Control (H-bridge) Testing - Test for the desired PWM output with DC power supplies and function generator without the integration with the PIC. - Test the same output via integration with the PIC. Power Circuit Testing - Test for the desired output voltage by varying the resistance in a output resistor. Switching Circuit Testing - Test via simulation in PSpice. Sensor Circuit Testing - Test by checking the output voltage in the oscilloscope. - Test by integrating with the PIC.

60 Requirements Analysis: Low-Level

61 Risk Analysis: Low Level Overall System Power Methodology Maturity Methodology Complexity Hardware Maturity Hardware Complexity Dependency of Schedule on External Functional Groups Dependency of Performance on External Functional Groups Degradation of Technical/Operational Performance at System Level Schedule Impact Cost Impact Risk Factor = (Medium Risk)

62 Risk Analysis: Low Level Rail Power Methodology Maturity Methodology Complexity Hardware Maturity Hardware Complexity Dependency of Schedule on External Functional Groups Dependency of Performance on External Functional Groups Degradation of Technical/Operational Performance at System Level Schedule Impact Cost Impact Risk Factor = (Medium Risk)

63 Risk Analysis: Low Level Rail Switching Methodology Maturity Methodology Complexity Hardware Maturity Hardware Complexity Dependency of Schedule on External Functional Groups Dependency of Performance on External Functional Groups Degradation of Technical/Operational Performance at System Level Schedule Impact Cost Impact Risk Factor = (Medium Risk)

64 Risk Analysis: Low Level Sensors Methodology Maturity Methodology Complexity Hardware Maturity Hardware Complexity Dependency of Schedule on External Functional Groups Dependency of Performance on External Functional Groups Degradation of Technical/Operational Performance at System Level Schedule Impact Cost Impact Risk Factor = (Medium Risk)

65 Cost Analysis: Low Level Direct Costs: PCBs (5), Power elements, Other components Total direct costs: $1, Indirect Costs: Labor, computers, prototyping boards and software for testing Total indirect costs: $9, Total Costs for project: $7,669.00

A Closed-Loop System to Monitor and Reduce Parkinson s Tremors

A Closed-Loop System to Monitor and Reduce Parkinson s Tremors A Closed-Loop System to Monitor and Reduce Parkinson s Tremors Tremors Group: Anthony Calvo, Linda Gong, Jake Miller, and Mike Sander Faculty Advisor: Dr. Gary H. Bernstein 8 March 2018 Design Review I

More information

BASIC-Tiger Application Note No. 059 Rev Motor control with H bridges. Gunther Zielosko. 1. Introduction

BASIC-Tiger Application Note No. 059 Rev Motor control with H bridges. Gunther Zielosko. 1. Introduction Motor control with H bridges Gunther Zielosko 1. Introduction Controlling rather small DC motors using micro controllers as e.g. BASIC-Tiger are one of the more common applications of those useful helpers.

More information

Programming and Interfacing

Programming and Interfacing AtmelAVR Microcontroller Primer: Programming and Interfacing Second Edition f^r**t>*-**n*c contents Preface xv AtmelAVRArchitecture Overview 1 1.1 ATmegal64 Architecture Overview 1 1.1.1 Reduced Instruction

More information

Motor Control Development Kit

Motor Control Development Kit User s Manual, V 1.0, June 2003 Motor Control Development Kit A reference design for low voltage 3-phase AC induction and brushless DC motor control. Microcontrollers Never stop thinking. Revision History:2003-06

More information

Project Name Here CSEE 4840 Project Design Document. Thomas Chau Ben Sack Peter Tsonev

Project Name Here CSEE 4840 Project Design Document. Thomas Chau Ben Sack Peter Tsonev Project Name Here CSEE 4840 Project Design Document Thomas Chau tc2165@columbia.edu Ben Sack bs2535@columbia.edu Peter Tsonev pvt2101@columbia.edu Table of contents: Introduction Page 3 Block Diagram Page

More information

DASL 120 Introduction to Microcontrollers

DASL 120 Introduction to Microcontrollers DASL 120 Introduction to Microcontrollers Lecture 2 Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to Atmel Atmega328

More information

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board IXDP610 Digital PWM Controller IC Evaluation Board General Description The IXDP610 Digital Pulse Width Modulator (DPWM) is a programmable CMOS LSI device, which accepts digital pulse width data from a

More information

USB-PWM10. User s Manual

USB-PWM10. User s Manual USB-PWM10 User s Manual Windows, Windows2000, Windows NT and Windows XP are trademarks of Microsoft. We acknowledge that the trademarks or service names of all other organizations mentioned in this document

More information

Tarocco Closed Loop Motor Controller

Tarocco Closed Loop Motor Controller Contents Safety Information... 3 Overview... 4 Features... 4 SoC for Closed Loop Control... 4 Gate Driver... 5 MOSFETs in H Bridge Configuration... 5 Device Characteristics... 6 Installation... 7 Motor

More information

SPECIFICATION EP 1000/1500/2000 Series

SPECIFICATION EP 1000/1500/2000 Series UNINTERRUPTIBLE POWER SYSTEM SPECIFICATION EP 1000/1500/2000 Series Page 1 of 28 1.0 Revision Summary REVISION SECTION DESCRIPTION Formal Release Page 2 of 28 Table of Contents 1. Introduction. 4 2. Block

More information

2F. No.25, Industry E. 9 th Rd., Science-Based Industrial Park, Hsinchu, Taiwan Application Note of OGM220, AN001 V1.8

2F. No.25, Industry E. 9 th Rd., Science-Based Industrial Park, Hsinchu, Taiwan Application Note of OGM220, AN001 V1.8 Application Note of OGM220, AN001 V1.8 1.0 Introduction OGM220 series is a dual channels NDIR module having a digital output directly proportional to CO2 concentration. OGM220 is designed for multi-dropped

More information

EVAL-ADM8843. Evaluation Board for Charge Pump Driver for LCD White LED Backlights. Preliminary Technical Data

EVAL-ADM8843. Evaluation Board for Charge Pump Driver for LCD White LED Backlights. Preliminary Technical Data Evaluation Board for Charge Pump Driver for LCD White LED Backlights EVAL-ADM8843 FEATURES ADM8843 drives 4 white LEDs from a 2.6V to 5.5V (li-ion) input supply 1x/1.5x/2x Fractional Charge Pump to maximize

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

Radio Module for MHz. Band RMCx4-1 ; RMCx9-1

Radio Module for MHz. Band RMCx4-1 ; RMCx9-1 General Information The Radio Modules RMCx 4-1 and RMCx 9-1 are transceivers designed for very low power and very low voltage wireless applications. The circuit is mainly intended for the ISM (Industrial,

More information

EE 308 Spring S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE

EE 308 Spring S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE 9S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE In this sequence of three labs you will learn to use the 9S12 S hardware sybsystem. WEEK 1 PULSE WIDTH MODULATION

More information

LAX016 Series Logic Analyzer User Guide

LAX016 Series Logic Analyzer User Guide LAX016 Series Logic Analyzer User Guide QQ: 415942827 1 Contents I Overview... 4 1 Basic knowledge... 4 2 Product series... 4 3 Technical specification... 5 II Brief introduction to JkiSuite software...

More information

Project Final Report: Directional Remote Control

Project Final Report: Directional Remote Control Project Final Report: by Luca Zappaterra xxxx@gwu.edu CS 297 Embedded Systems The George Washington University April 25, 2010 Project Abstract In the project, a prototype of TV remote control which reacts

More information

LM555 and LM556 Timer Circuits

LM555 and LM556 Timer Circuits LM555 and LM556 Timer Circuits LM555 TIMER INTERNAL CIRCUIT BLOCK DIAGRAM "RESET" And "CONTROL" Input Terminal Notes Most of the circuits at this web site that use the LM555 and LM556 timer chips do not

More information

Applications: Off-highway construction equipment Municipal vehicles Material handling equipment (forklifts, etc.) Ordering Part Numbers:

Applications: Off-highway construction equipment Municipal vehicles Material handling equipment (forklifts, etc.) Ordering Part Numbers: TECHNICAL DATASHEET #TDAX021201 CAN to 9 Output Valve Controller P/N: AX021201 CANopen Features: Command messages are received through the CAN network (no physical inputs) 9 outputs are user selectable

More information

EG medlab. Three Lead ECG OEM board. Version Technical Manual. Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual

EG medlab. Three Lead ECG OEM board. Version Technical Manual. Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual medlab Three Lead ECG OEM board EG01010 Technical Manual Copyright Medlab 2008-2016 Version 1.03 1 Version 1.03 28.04.2016 Medlab GmbH Three Lead

More information

Update on Diode Discovery Process. Robert Muir IEEE 802.3af May 2000

Update on Diode Discovery Process. Robert Muir IEEE 802.3af May 2000 Update on Diode Discovery Process Robert Muir IEEE 802.3af May 2000 Agenda Changes made to the Diode Discovery Process Simulation Results Lab test Results Control and Management Implementation Options

More information

Electronics Design Laboratory Lecture #10. ECEN 2270 Electronics Design Laboratory

Electronics Design Laboratory Lecture #10. ECEN 2270 Electronics Design Laboratory Electronics Design Laboratory Lecture #10 Electronics Design Laboratory 1 Lessons from Experiment 4 Code debugging: use print statements and serial monitor window Circuit debugging: Re check operation

More information

Enhanced SmartDrive40 MDS40B

Enhanced SmartDrive40 MDS40B Enhanced SmartDrive40 MDS40B User's Manual Rev 1.0 December 2015 Created by Cytron Technologies Sdn. Bhd. All Rights Reserved 1 INDEX 1. Introduction 3 2. Packing List 4 3. Product Specifications 5 4.

More information

National Quali cations Date of birth Scottish candidate number

National Quali cations Date of birth Scottish candidate number N5FOR OFFICIAL USE X860/75/01 National Quali cations 2018 Mark Practical Electronics WEDNESDAY, 30 MAY 9:00 AM 10:00 AM *X8607501* Fill in these boxes and read what is printed below. Full name of centre

More information

SAT SCD/ARGOS INSTRUCTION MANUAL

SAT SCD/ARGOS INSTRUCTION MANUAL INSTRUCTION MANUAL REVISION: 1/03 COPYRIGHT (c) 2000-2003 CAMPBELL SCIENTIFIC, INC. This is a blank page. WARRANTY AND ASSISTANCE This equipment is warranted by CAMPBELL SCIENTIFIC (CANADA) CORP. ( CSC

More information

S Demonstrates the Operation of MAX9926U Modes

S Demonstrates the Operation of MAX9926U Modes 19-4974; Rev 0; 9/09 MAX9926U Evaluation Kit General Description The MAX9926U evaluation kit (EV kit) is a fully assembled and tested circuit board that contains a dual-channel differential variable-reluctance

More information

Measuring Distance Using Sound

Measuring Distance Using Sound Measuring Distance Using Sound Distance can be measured in various ways: directly, using a ruler or measuring tape, or indirectly, using radio or sound waves. The indirect method measures another variable

More information

PART. Maxim Integrated Products 1

PART. Maxim Integrated Products 1 9-887; Rev 0; 2/00 MAX669 Evaluation System General Description The MAX669 evaluation system consists of a MAX669 evaluation kit (EV kit) and a companion Maxim SMBus interface board. The MAX669 EV kit

More information

EE445L Fall 2014 Quiz 2A Page 1 of 5

EE445L Fall 2014 Quiz 2A Page 1 of 5 EE445L Fall 2014 Quiz 2A Page 1 of 5 Jonathan W. Valvano First: Last: November 21, 2014, 10:00-10:50am. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

GOLDEN CITY (5 REELS 25 LINES VIDEO XVGA SLOT GAME)

GOLDEN CITY (5 REELS 25 LINES VIDEO XVGA SLOT GAME) GOLDEN CITY (5 REELS 25 LINES VIDEO XVGA SLOT GAME) Golden City designs with the object of operating professional and amused game of casino, rather than making classic slot game. It s really extraordinary

More information

RF4432 wireless transceiver module

RF4432 wireless transceiver module 1. Description www.nicerf.com RF4432 RF4432 wireless transceiver module RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity

More information

CPKS8. Photo of device

CPKS8. Photo of device CPKS8 Revised 16-nov-2011. Embedded software version 1. 1. Features The device is designed for using in control systems of accelerators. The device generates 8 output PWM signals. Similar devices (CAMAC

More information

PID MOTOR CONTROLLER. Version 1.0. October Cytron Technologies Sdn. Bhd.

PID MOTOR CONTROLLER. Version 1.0. October Cytron Technologies Sdn. Bhd. PID MOTOR CONTROLLER PR24 Version 1.0 October 2009 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended through suggestion only

More information

medlab Two Channel Invasive Blood Pressure OEM board EG 02000

medlab Two Channel Invasive Blood Pressure OEM board EG 02000 medlab Two Channel Invasive Blood Pressure OEM board EG 02000 Technical Manual Copyright Medlab 2003-2014 1 Version 2.02 01.04.2014 Contents: Mechanical dimensions, overview 3 Specifications 5 Connector

More information

MD04-24Volt 20Amp H Bridge Motor Drive

MD04-24Volt 20Amp H Bridge Motor Drive MD04-24Volt 20Amp H Bridge Motor Drive Overview The MD04 is a medium power motor driver, designed to supply power beyond that of any of the low power single chip H-Bridges that exist. Main features are

More information

1.0 Introduction. 2.0 Scope

1.0 Introduction. 2.0 Scope 1.0 Introduction The LCLS project requires one horizontal kicker magnet (BXKIK) to be installed at sector 25-3d. Nominal LCLS beam energy at that location is 4.8 GeV. The BXKIK magnet is planned to be

More information

+Denotes lead(pb)-free and RoHS compliant. R1, R2, R9 R12, R20, R21

+Denotes lead(pb)-free and RoHS compliant. R1, R2, R9 R12, R20, R21 19-4377; Rev 0; 11/08 MAX9924U Evaluation Kit General Description The MAX9924U evaluation kit (EV kit) is a fully assembled and tested PCB that contains a differential variable reluctance (VR) sensor interface

More information

Catalog

Catalog Catalog 1. Description... - 3-2. Features... - 3-3. Application... - 3-4. Electrical specifications...- 4-5. Schematic... - 4-6. Pin Configuration... - 5-7. Antenna... - 6-8. Mechanical Dimension(Unit:

More information

SenseAir S8 Miniature infrared CO 2 sensor module

SenseAir S8 Miniature infrared CO 2 sensor module SenseAir S SenseAir S Miniature infrared CO 2 sensor module Warning! ESD sensitive device! SenseAir S Article no. 004-0-0010 SenseAir S Article no. 004-0-0011 2 (10) Item Target gas Operating Principle

More information

Remote Switching. Remote Gates. Paging.

Remote Switching. Remote Gates. Paging. Features Miniature RF Receiver and Decoder. Advanced Keeloq Decoding AM Range up to 100 Metres FM Range up to 150 Metres Easy Learn Transmitter Feature. Outputs, Momentary or Latching & Serial Data. Direct

More information

Brushed DC Motor Control. Module with CAN (MDL-BDC24)

Brushed DC Motor Control. Module with CAN (MDL-BDC24) Stellaris Brushed DC Motor Control Module with CAN (MDL-BDC24) Ordering Information Product No. MDL-BDC24 RDK-BDC24 Description Stellaris Brushed DC Motor Control Module with CAN (MDL-BDC24) for Single-Unit

More information

Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN)

Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN) Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN) 217-3367 Ordering Information Product Number Description 217-3367 Stellaris Brushed DC Motor Control Module with CAN (217-3367)

More information

Antenna Switch Box. Update, Feb 2012

Antenna Switch Box. Update, Feb 2012 Antenna Switch Box Update, Feb 2012 Antenna Switch Box What is it a reminder Basic station Contest Station Radio Amplifier PC Antenna Switching Add SO2R Contest Station Radio BPF Amplifier PC SO2R Box

More information

ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab

ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab The purpose of this lab is to learn about sensors and use the ADC module to digitize the sensor signals. You will use the digitized signals

More information

ECE 363 EXAM #2 (F18) 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts)

ECE 363 EXAM #2 (F18) 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts) ECE 363 EXAM #2 (F18) NAME: 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts) Consider an optical communication link for an infrared remote control. A transmitter sends a train of infrared

More information

PLC-K506 Series FEATURES DESCRIPTION FEATURES

PLC-K506 Series FEATURES DESCRIPTION FEATURES FEATURES Two High Speed Counters Two Pulse Train Outputs Two Pulse Width Modulation Outputs Inputs 10 Outputs 1 RS232 Port 2 RS485 Ports Supports Modbus RTU Protocol Communicate With Up to 32 Devices DESCRIPTION

More information

USER GUIDE. Piezo Motor with Encoder. Installation & Software Control Guide. (For Piezo Motor Model LPM-2M, LPM-5, PM-1124R)

USER GUIDE. Piezo Motor with Encoder. Installation & Software Control Guide. (For Piezo Motor Model LPM-2M, LPM-5, PM-1124R) www.dtimotors.com USER GUIDE Piezo Motor with Encoder Installation & Software Control Guide (For Piezo Motor Model LPM-2M, LPM-5, PM-1124R) Version 05312018v11 Page 0 Table of Contents 1.0 Introduction...

More information

ZX Distance and Gesture Sensor Hookup Guide

ZX Distance and Gesture Sensor Hookup Guide Page 1 of 13 ZX Distance and Gesture Sensor Hookup Guide Introduction The ZX Distance and Gesture Sensor is a collaboration product with XYZ Interactive. The very smart people at XYZ Interactive have created

More information

RF1212 RF1212 Ultra-low Power ISM Transceiver Module V2.0

RF1212 RF1212 Ultra-low Power ISM Transceiver Module V2.0 RF1212 Ultra-low Power ISM Transceiver Module V2.0 Application: Features: Home automation Security alarm Telemetry Automatic meter reading Contactless access Wireless data logger Remote motor control Wireless

More information

Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett

Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett Arduino Microcontroller Processing for Everyone!: Third Edition / Steven F. Barrett Anatomy of a Program Programs written for a microcontroller have a fairly repeatable format. Slight variations exist

More information

High Current DC Motor Driver Manual

High Current DC Motor Driver Manual High Current DC Motor Driver Manual 1.0 INTRODUCTION AND OVERVIEW This driver is one of the latest smart series motor drivers designed to drive medium to high power brushed DC motor with current capacity

More information

10 Error Code List. Motion Control SW. NTI AG / LinMot User Manual Motion Control SW/ Page 87/94

10 Error Code List. Motion Control SW. NTI AG / LinMot User Manual Motion Control SW/ Page 87/94 Motion Control SW L i n M o t 10 List Code Description Actions to take 0000h No Error No error is pending. 0001h X4 Logic Supply Too Low The logic supply voltage has been too low. The minimal logic supply

More information

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many RXQ2 - XXX GFSK MULTICHANNEL RADIO TRANSCEIVER Intelligent modem Transceiver Data Rates to 100 kbps Selectable Narrowband Channels Crystal controlled design Supply Voltage 3.3V Serial Data Interface with

More information

Pulse Sensor Individual Progress Report

Pulse Sensor Individual Progress Report Pulse Sensor Individual Progress Report TA: Kevin Chen ECE 445 March 31, 2015 Name: Ying Wang NETID: ywang360 I. Overview 1. Objective This project intends to realize a device that can read the human pulse

More information

CALIFORNIA SOFTWARE LABS

CALIFORNIA SOFTWARE LABS Pulse Shaping on the Palm Pilot With serial, infrared and remote control applications CALIFORNIA SOFTWARE LABS R E A L I Z E Y O U R I D E A S California Software Labs 6800 Koll Center Parkway, Suite 100

More information

Gas and Air Sensors. Product Specification. SenseAir S8. Miniature CO2 sensor. Document PSP 107. Rev 8. Page 1 (10)

Gas and Air Sensors. Product Specification. SenseAir S8. Miniature CO2 sensor. Document PSP 107. Rev 8. Page 1 (10) Gas and Air Sensors Product Specification SenseAir S8 Miniature CO2 sensor 8 1 (10) SenseAir S8 Miniature infrared CO 2 sensor module Warning! ESD sensitive device! Figure 1. SenseAir S8 Article no. 004-0-0013

More information

Controller for the Implementation of a Central or Decentralized Electrohydraulic System

Controller for the Implementation of a Central or Decentralized Electrohydraulic System EFX 1624m Electronic Controller Programmed with Eaton CONTROL F(x) Software to IEC 61131-3 Standard 2nd CAN interface for gateway function according to SAE J1939 Supply voltage 10...32V DC Technical Data

More information

Driesen + Kern GmbH. SenseAir S8

Driesen + Kern GmbH. SenseAir S8 SenseAir S8 SenseAir S8 Miniature infrared CO 2 sensor module Warning! ESD sensitive device! SenseAir S8 Article no. 004-0-0050 SenseAir S8 Article no. 004-0-0051 2 (10) Key technical specification Item

More information

DATASHEET SMT172. Features and Highlights. Application. Introduction

DATASHEET SMT172. Features and Highlights. Application. Introduction V12 1/9 Features and Highlights World s most energy efficient temperature sensor Wide temperature range: -45 C to 130 C Extreme low noise: less than 0.001 C High accuracy: 0.25 C (-10 C to 100 C) 0.1 C

More information

WTDIN-M. eeder. Digital Input Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies

WTDIN-M. eeder. Digital Input Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies eeder Technologies 90-A Beal Pkwy NW, Fort Walton Beach, FL 32548 www.weedtech.com 850-863-5723 Digital Input Module FEATURES 8 wide-range digital input channels with high voltage transient protection.

More information

EE445L Fall 2012 Final Version B Page 1 of 7

EE445L Fall 2012 Final Version B Page 1 of 7 EE445L Fall 2012 Final Version B Page 1 of 7 Jonathan W. Valvano First: Last: This is the closed book section. You must put your answers in the boxes on this answer page. When you are done, you turn in

More information

WTDOT-M. eeder. Digital Output Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies

WTDOT-M. eeder. Digital Output Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies eeder Technologies 90-A Beal Pkwy NW, Fort Walton Beach, FL 32548 www.weedtech.com 850-863-5723 Digital Output Module FEATURES 8 high-current open-collector output channels with automatic overload shutdown.

More information

KNC-PLC-K506 Series FEATURES DESCRIPTION FEATURES

KNC-PLC-K506 Series FEATURES DESCRIPTION FEATURES FEATURES Two High Speed Counters Two Pulse Train Outputs Two Pulse Width Modulation Outputs Inputs 10 Outputs 1 RS232 Port 2 RS485 Ports Supports Modbus RTU Protocol Communicate with up to 32 devices DESCRIPTION

More information

Understanding the Arduino to LabVIEW Interface

Understanding the Arduino to LabVIEW Interface E-122 Design II Understanding the Arduino to LabVIEW Interface Overview The Arduino microcontroller introduced in Design I will be used as a LabVIEW data acquisition (DAQ) device/controller for Experiments

More information

ENGR 210 Lab 12: Analog to Digital Conversion

ENGR 210 Lab 12: Analog to Digital Conversion ENGR 210 Lab 12: Analog to Digital Conversion In this lab you will investigate the operation and quantization effects of an A/D and D/A converter. A. BACKGROUND 1. LED Displays We have been using LEDs

More information

Process Components. Process component

Process Components. Process component What are PROCESS COMPONENTS? Input Transducer Process component Output Transducer The input transducer circuits are connected to PROCESS COMPONENTS. These components control the action of the OUTPUT components

More information

PIRATES ISLAND (SUBSINO CASINO GAME XVGA SERIES)

PIRATES ISLAND (SUBSINO CASINO GAME XVGA SERIES) PIRATES ISLAND (SUBSINO CASINO GAME XVGA SERIES) This game takes a theme you already love Pirates Island - to the next level with new XVGA 5-reels and 9-lines of excitement. State-of-the-art graphics promote

More information

Quadravox. QV306m1 RS232 playback module for ISD series ChipCorders

Quadravox. QV306m1 RS232 playback module for ISD series ChipCorders Quadravox QV306m1 RS232 playback module for ISD33000-4000 series ChipCorders Features: -delivered with 4 minute ISD4003-04 -up to 240 messages -four addressing modes -low power dissipation:

More information

STEPPING MOTOR EMULATION

STEPPING MOTOR EMULATION OPERATING MANUAL SERIES SMTBD1 OPTIONAL FUNCTIONS (Version 2.0) European version 2.0 STEPPING MOTOR EMULATION OPTION C This manual describes the option "C" of the SMT-BD1 amplifier: Stepping motor emulation.

More information

Warning! ESD sensitive device!

Warning! ESD sensitive device! Datasheet & Manual SenseAir S8 Miniature CO2 sensor Model SE-0031 3.2% CO2 Warning! ESD sensitive device! Document PSP 108 Key technical specifications Item Target gas Operating Principle SenseAir S8 CO2

More information

INA169 Breakout Board Hookup Guide

INA169 Breakout Board Hookup Guide Page 1 of 10 INA169 Breakout Board Hookup Guide CONTRIBUTORS: SHAWNHYMEL Introduction Have a project where you want to measure the current draw? Need to carefully monitor low current through an LED? The

More information

BiSS Interface AN18: BiSS C ANALYZER

BiSS Interface AN18: BiSS C ANALYZER Rev A3, Page 1/7 CONTENTS BASIC OPERATION 1 Clock rates................... 1 BiSS analyzer modes............. 2 2 BiSS ANALYZER INSTALLATION 2 ELECTRICAL INTERFACE 2 RS422 BiSS Encoder Interface........

More information

G3P-R232. User Manual. Release. 2.06

G3P-R232. User Manual. Release. 2.06 G3P-R232 User Manual Release. 2.06 1 INDEX 1. RELEASE HISTORY... 3 1.1. Release 1.01... 3 1.2. Release 2.01... 3 1.3. Release 2.02... 3 1.4. Release 2.03... 3 1.5. Release 2.04... 3 1.6. Release 2.05...

More information

Complete 2.4 GHz RF Transceiver Module with Built-In RFDP8 Application Protocol Part Numbers RFD21733, RFD21735, RFD21737, RFD21738, RFD21739

Complete 2.4 GHz RF Transceiver Module with Built-In RFDP8 Application Protocol Part Numbers RFD21733, RFD21735, RFD21737, RFD21738, RFD21739 Complete 2.4 GHz RF Transceiver Module with Built-In Application Protocol Part Numbers,,,, Optional Configuration For use with External Antenna 15mm x 15mm (0.600 inch x 0.600 inch) / is a complete, READY-TO-USE

More information

EE445L Fall 2014 Quiz 2A Page 1 of 5

EE445L Fall 2014 Quiz 2A Page 1 of 5 EE445L Fall 2014 Quiz 2A Page 1 of 5 Jonathan W. Valvano First: Last: November 21, 2014, 10:00-10:50am. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

MILFORD INSTRUMENTS Limited

MILFORD INSTRUMENTS Limited MILFORD INSTRUMENTS Limited DMX Receiver (#1-497) Rev1.5 09/01/2007 The DMX receiver module is designed to provide 8 consecutive channels of output from a standard DMX protocol input signal. The outputs

More information

ZKit-51-RD2, 8051 Development Kit

ZKit-51-RD2, 8051 Development Kit ZKit-51-RD2, 8051 Development Kit User Manual 1.1, June 2011 This work is licensed under the Creative Commons Attribution-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/in/

More information

TMC603EVAL MANUAL Evaluation board for the TMC603 three phase motor driver with BLDC back EMF commutation hallfx

TMC603EVAL MANUAL Evaluation board for the TMC603 three phase motor driver with BLDC back EMF commutation hallfx TMC603EVAL MANUAL Evaluation board for the TMC603 three phase motor driver with BLDC back EMF commutation hallfx TRINAMIC Motion Control GmbH & Co. KG Sternstraße 67 D 20357 Hamburg GERMANY www.trinamic.com

More information

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications AT-XTR-7020A-4 Multi-Channel Micro Embedded Transceiver Module The AT-XTR-7020A-4 radio data transceiver represents a simple and economical solution to wireless data communications. The employment of an

More information

TECH 3232 Fall 2010 Lab #1 Into To Digital Circuits. To review basic logic gates and digital logic circuit construction and testing.

TECH 3232 Fall 2010 Lab #1 Into To Digital Circuits. To review basic logic gates and digital logic circuit construction and testing. TECH 3232 Fall 2010 Lab #1 Into To Digital Circuits Name: Purpose: To review basic logic gates and digital logic circuit construction and testing. Introduction: The most common way to connect circuits

More information

METERSUK. SmartLink D Y N A M i T E. EM415 MOD Series. User Manual KEY FEATURES INDEX 3. TECHNICAL DESCRIPTION. Single Phase Metering

METERSUK. SmartLink D Y N A M i T E. EM415 MOD Series. User Manual KEY FEATURES INDEX 3. TECHNICAL DESCRIPTION. Single Phase Metering METERSUK LTD s a l e s @ m e t e r s. c o. u k 0 1 5 2 4 5 5 5 9 2 9 Series Smart Energy Meter KEY FEATURES Single Phase Metering Single phase metering 4 din modules, Standard DIN rail Format (DIN43880)

More information

An Arduino-based DCC Accessory Decoder for Model Railroad Turnouts. Eric Thorstenson 11/1/17

An Arduino-based DCC Accessory Decoder for Model Railroad Turnouts. Eric Thorstenson 11/1/17 An Arduino-based DCC Accessory Decoder for Model Railroad Turnouts Eric Thorstenson 11/1/17 Introduction Earlier this year, I decided to develop an Arduino-based DCC accessory decoder for model railroad

More information

Heliotrack Programmable Wind Alarm Switch V1.0 Developed in partnership with Inspeed.com, LLC

Heliotrack Programmable Wind Alarm Switch V1.0 Developed in partnership with Inspeed.com, LLC Heliotrack Programmable Wind Alarm Switch V1.0 Developed in partnership with Inspeed.com, LLC IMPORTANT DISCLAIMER: Niether Heliotrack,LLC nor Inspeed assume any responsibility for damages caused by the

More information

DISCONTINUED. Modulation Type Number of RF Channels 15

DISCONTINUED. Modulation Type Number of RF Channels 15 RFM Products are now Murata products. 2.4 GHz Spread Spectrum Transceiver Module Small Size, Light Weight, Built-In Antenna Sleep Current less than 3 µa FCC, Canadian IC and ETSI Certified for Unlicensed

More information

RX23T inverter ref. kit

RX23T inverter ref. kit RX23T inverter ref. kit Deep Dive October 2015 YROTATE-IT-RX23T kit content Page 2 YROTATE-IT-RX23T kit: 3-ph. Brushless Motor Specs Page 3 Motors & driving methods supported Brushless DC Permanent Magnet

More information

Controlling DC Brush Motor using MD10B or MD30B. Version 1.2. Aug Cytron Technologies Sdn. Bhd.

Controlling DC Brush Motor using MD10B or MD30B. Version 1.2. Aug Cytron Technologies Sdn. Bhd. PR10 Controlling DC Brush Motor using MD10B or MD30B Version 1.2 Aug 2008 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended

More information

The PmodIA is an impedance analyzer built around the Analog Devices AD bit Impedance Converter Network Analyzer.

The PmodIA is an impedance analyzer built around the Analog Devices AD bit Impedance Converter Network Analyzer. 1300 Henley Court Pullman, WA 99163 509.334.6306 www.digilentinc.com PmodIA Reference Manual Revised April 15, 2016 This manual applies to the PmodIA rev. A Overview The PmodIA is an impedance analyzer

More information

AP08022 C504 / C508. Generating sinusoidal 3-Phase- Currents for Induction Maschines with a time-optimezed algorithm for the Capture Compare Unit

AP08022 C504 / C508. Generating sinusoidal 3-Phase- Currents for Induction Maschines with a time-optimezed algorithm for the Capture Compare Unit C504 / C508 Application te, V 1.1, Feb. 2004 Generating sinusoidal 3-Phase- Currents for Induction Maschines with a time-optimezed algorithm for the Capture Compare Unit. AP08022 Microcontrollers Never

More information

System Board 6219 MAXREFDES89#: MAX14871 Full-Bridge DC Motor Driver MBED Shield

System Board 6219 MAXREFDES89#: MAX14871 Full-Bridge DC Motor Driver MBED Shield System Board 6219 MAXREFDES89#: MAX14871 Full-Bridge DC Motor Driver MBED Shield Introduction Brushed DC motors provide cost-effective, convenient motion in many applications ranging from electric toothbrushes

More information

Application Note. I C s f o r M o t o r C o n t r o l. Evaluation board for the TDA5143/TDA5144. Report No: EIE/AN R. Galema

Application Note. I C s f o r M o t o r C o n t r o l. Evaluation board for the TDA5143/TDA5144. Report No: EIE/AN R. Galema Application Note I C s f o r M o t o r C o n t r o l Evaluation board for the TDA5143/TDA5144 Report No: R. Galema Product Concept & Application Laboratory Eindhoven, the Netherlands. Keywords Motor Control

More information

Analog Servo Drive 25A20DD

Analog Servo Drive 25A20DD Description Power Range NOTE: This product has been replaced by the AxCent family of servo drives. Please visit our website at www.a-m-c.com or contact us for replacement model information and retrofit

More information

Low Power with Long Range RF Module DATASHEET Description

Low Power with Long Range RF Module DATASHEET Description Wireless-Tag WT-900M Low Power with Long Range RF Module DATASHEET Description WT-900M is a highly integrated low-power half-'duplex RF transceiver module embedding high-speed low-power MCU and high-performance

More information

etatronix PMA-3 Transmitter Tester Manual

etatronix PMA-3 Transmitter Tester Manual etatronix PMA-3 Transmitter Tester Manual TxTester_Manual_rev1.02.docx 1 Version Version Status Changes Date Responsible 1 Release Initial release 01. Apr. 2015 CW 1.01 Release Updated Figure 4 for better

More information

Lab 5. Binary Counter

Lab 5. Binary Counter Lab. Binary Counter Overview of this Session In this laboratory, you will learn: Continue to use the scope to characterize frequencies How to count in binary How to use an MC counter Introduction The TA

More information

PIC Functionality. General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232

PIC Functionality. General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232 PIC Functionality General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232 General I/O Logic Output light LEDs Trigger solenoids Transfer data Logic Input Monitor

More information

MTY (81)

MTY (81) This manual describes the option "e" of the SMT-BD1 amplifier: Master/slave tension control application. The general information about the digital amplifier commissioning are described in the standard

More information

DNT2400. Low Cost 2.4 GHz FHSS Transceiver Module with I/O

DNT2400. Low Cost 2.4 GHz FHSS Transceiver Module with I/O 2.4 GHz Frequency Hopping Spread Spectrum Transceiver Point-to-point, Point-to-multipoint, Peer-to-peer and Tree-routing Networks Transmitter Power Configurable from 1 to 63 mw RF Data Rate Configurable

More information

CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS

CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS CS/ECE/EEE/INSTR F241 MICROPROCESSOR PROGRAMMING & INTERFACING MODULE 8: I/O INTERFACING QUESTIONS ANUPAMA KR BITS, PILANI KK BIRLA GOA CAMPUS Q1. Distinguish between vectored and non-vectored interrupts

More information

Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs.

Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs. Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs. 1 The purpose of this course is to provide an introduction to the RL78 timer Architecture.

More information

MAKEVMA502 BASIC DIY KIT WITH ATMEGA2560 FOR ARDUINO USER MANUAL

MAKEVMA502 BASIC DIY KIT WITH ATMEGA2560 FOR ARDUINO USER MANUAL BASIC DIY KIT WITH ATMEGA2560 FOR ARDUINO USER MANUAL USER MANUAL 1. Introduction To all residents of the European Union Important environmental information about this product This symbol on the device

More information