University of Moratuwa

Size: px
Start display at page:

Download "University of Moratuwa"

Transcription

1 University of Moratuwa B.Sc. Engineering MAP BUILDING WITH ROTATING ULTRASONIC RANGE SENSOR By A.C. De Silva (EE) E.A.S.M. Hemachandra (ENTC) P.G. Jayasekara (ENTC) S. Kodagoda (ENTC) R.L. Peiris (EE) Department of Electronic and Telecommunication Engineering May 2006

2 Table of Contents 1.0 Introduction Overall Functionality Modular Functionality Ultra Sonic Range Sensor Unit Stepper Motor Drive Unit Darlington Mechanism Limit Switch Mechanism Microcontroller unit Mapping Software Software Functionality Probability Model Sonar Sensor Model Sensor Fusion Modes of Operation GUI Appendix ULN SRF05 16

3 1.0 INTRODUCTION As the title of this project implies, main function of this device is to sense obstacles around the platform and build a map as to where they are situated with some interpolations. The basic construction of the platform is an ultrasonic range sensor mounted on a shaft of a stepper motor so that the sensor could be rotated. Two limit switches are used to identify the two extreme positions of the motor so that intermediate positions could be calculated. A microcontroller is used to issue commands to the stepper motor, to exchange commands with the sensor and to communicate with the pc. The pc is extensively used to build a map according to the data received from the microcontroller. The basic operation is illustrated in Figure 1. Limit switches Sensor Micro Controller Motor Motor Driver IC Figure 1 The map building system with the ultra sonic range sensor includes electronic circuitry, mechanical manipulation, firmware, software and probability theories (sensor fusion). The platform contains circuitry and mechanical devices. A PIC 16F877A was used to control hardware and link with the pc software. Also two ICs ULN2003 and MAX232 were used to drive the motor and to do serial communication with the pc respectively. All these ICs with other circuit elements were mounted on a PCB. The designing of the PCB was done using Protel software. A mechanical manipulation was used in the form of a spur gear between the motor shaft and the sensor shaft. The gear reduction was 1:5. This increased the resolution of the sweep angle and obviously reduced the speed of rotation. Also placing of limit switches to obtain extreme positions of the rotating sensor was done accurately by maintaining proper angles. Firmware was used to implement the algorithm for the sensor, stepper motor and for serial communication. PIC C was used as the programming language. Precise timing signals were provided to the ultra sonic range sensor with firmware to obtain obstacle distance with great accuracy. Also continuous pulses were given to the stepper motor via firmware. Another major

4 portion of this project was implemented in a pc. That is to build the actual map to identify where obstacles are situated. Its algorithm was implemented using Visual Basic. A user interface was designed to view the map as well as to issue some commands to the device from the pc itself. This includes start, stop and sweeping mode (i.e. full sweep or sweep within a desired angle). As an enhancement, a probability model was implemented within this software to get an accurate map. Conditional probability was used to get separate sensor readings and Bayes rule was used for fusion of several sensor readings. With this more accurate map was obtained including the shape of the obstacle. 2.0 OVERALL FUNCTIONALITY When the start command is issued from the pc the sensor shaft rotates to its initial position until it triggers the limit switch. At this position the angle is zero. Then the PIC starts to issue pulses for the stepper motor through ULN2003. At every step the ultrasonic range sensor is triggered to identify any obstacles within that angle. As the timing diagram shown in Appendix Figure 2, a triggering pulse of 10µs is given to the sensor from PIC. Then the sensor itself issues an 8 cycle sonic burst from its transducer. The microcontroller enables the interrupt to get the echo signal. It calculates high time duration of the interrupt signal and with some manipulation with speed of sound and temperature of air the obstacle distance is calculated. Likewise average of 4 distances in 4 step angles is calculated and sends to the pc along with the step angle via serial communication. Within the pc according to the probability model, an approximation of the obstacle is plotted along with the raw distance plot. When the other obstacle distance for the other step angle is received by the pc, it uses the sensor fusion model and calculate the most probable distance for the obstacle to be, and will be plotted on the interface. This process continues through out an angle of When the sensor shaft reaches the other limit switch, the direction of rotation is changed. There is another mode to sweep the sensor with in an angle which the user desires. The sweep angle can set by the user from the software so that the sensor shaft sweeps only within that specific region.

5 2.1. MODULAR FUNCTIONALITY Ultra Sonic Range Sensor Unit (SRF 05) The most important module in this map building device is, non other than the ultra sonic range sensor unit. It is being used in its operation Mode-1, which is the simplest mode. In Mode-1, separate trigger and echo pins are utilized for the purpose. The mode pin is left unconnected. One of the microcontroller output pins is connected directly to the trigger input. Whenever, the distance to the obstacle is needed to be measured, the microcontroller is programmed to set the trigger input pin to go high for 10µs. Then the SRF05 starts the ranging. The SRF05 will send out an 8 cycle burst of ultrasound at 40 khz and raise its echo line high and then listens for an echo. The echo output is directly connected to one of the input pins of the microcontroller. Whenever, an echo comes from an obstacle, the echo line goes low and this is handled by the microcontroller. The operation of the microcontroller will be illustrated later. Figure 2- SRF05 Timing Diagram, Mode 1

6 SRF 05 +5V +5V Echo o/p Trigger i/p Mode 0V Figure 3 - Ultra Sonic Range Sensor Unit Stepper Motor Drive Unit The sensor unit is rotated by mounting it on a stepper motor unit. The microcontroller sends control signals to the ULN2003 IC, which is a Darlington array, which in turn drives the stepper motor. The stepper motor is powered by a 12V power supply. To increase the resolution, gear wheels have been utilized. With this gear reduction the stepper motor can operate at a resolution of approximately Teeth = 79 Teeth = 16 Figure 4 - Gear wheel Setup

7 SRF05 Gear Drive Stepper Motor Figure 5 Mechanical Setup of the Stepper Motor Drive Unit Darlington Mechanism ULN 2003 To sink additional currents, generally, Darlington mechanisms are made use of. This prevents microcontroller providing large currents for the stepper drive. Stepper Motor Darlington Mechanism Microcontroller Figure 6 Block Diagram of the Stepper Motor Drive Unit

8 Limit Switching Mechanism The sensor unit is only allowed to rotate a total of This is because the sensor can cover the missing 60 0 with the help of its beam width. Thus, a 60 0 is excluded. Figure 7-Limit Switch Operation With the help of two limit switches the stepper motor is allowed to sweep the desired angle. When the limit is reached the relevant limit switch sends an interrupt to the microcontroller to so that the direction of rotation can be changed. Limit Switches Interrupt Microcontroller Change of Direction Motor Drive Figure 8- Block Diagram Operation

9 Microcontroller Unit The microcontroller used for this system is a PIC16F877A by Microchip Corporation. The microcontroller unit accounts for these events. a. Stepper Motor Driving - Speed - Direction of rotation b. Ultra sonic Range Sensor Interfacing - Sensor Triggering - Obtaining the round trip time for the echo c. PC interfacing via RS232 - Output the observations to the PC - Responding to the PC instructions PORT D of the PIC was used to send control signals to the stepper motor driver system. By reversing the order of control bits the rotating direction of the motor can be reversed. Also by driving all bits to zero the motor can be stopped. A reading from the range sensor for the round trip time is obtained at each step angle that is each step. Four such readings are averaged inside the PIC to obtain a more accurate reading. The round trip time is in the class of µs. The PIC performs its operations according to the commands sent by the PC program. For instance the PC program can either direct the system to function in the global or local mode by sending a control character using the RS232 serial link between the PC and the hardware sub system. When the system is switched to local mode the PC program sends the location and sweep information in addition to the control signal. Apart from this the PC can direct the shaft to move to the initial position or stop. Above all these the RS232 link is used to feed the PC with the data obtained from the sonar sensor.

10 2.2. MAPPING SOFTWARE The software was written using Visual C#.NET 2005 and has several functionalities. These are Communication with the PIC Micro-controller using serial communication Sending the user commands to the Micro-controller in the form of ASCII characters Obtaining the delays of the echoes for each angle and keeping the information in an updated array after converting the delay (ms) into distance (m). Updating the display (map) based on the distance information kept on the array. Calculate a probability of occupation based on the sensor model (for the Ultrasonic Range sensor) for each of the positions and use the Bayesian Model to combine the results of the different readings (Sensor fusion) Software Functionality

11 2.3. PROBABILITY MODEL Sonar Sensor Model In this model the Sensors range area is divided into three regions based on the delay (i.e. the alleged distance of the obstacle). The Whole area is divided into a grid (whose no of elements will decide the resolution of the Mapping model) and each of the squares is assigned a probability based on its position with relative to the sensor reading. The probability of occupation will be calculated differently based on which region it occupies. Region I R r β α + R α P( Occupied ) = Max 2 P( Empty) = 1 P( Occupied ) Occupied Region II R r β α + R α P( Empty) = 2 P( Empty) = 1 P( Occupied )

12 Region III The model does not assign a probability to this region as no information can be derived from the sensor after the first echo. R = Range of the Sonar sensor r = Distance to the Grid the Grid Element β = Sonar Beamwidth α = Angle to Grid Element Max Occupied = Highest Possible Probability Sensor Fusion The grid which covers the entire possible sweep area is filled as the reading for each angle comes from the Micro-controller. The overlapping regions can be combined using any of number methods such as Bayesian, Dempster-Shafer and HIMM (Histogramic In Motion Mapping). Of these the Bayesian method has been employed to combine the different readings Modes of Operation There are two modes of Operation available in the software. These are, Full scan or Global Mode This allows the system to scan the entire area (300 0 ) that is limited by the limit switches. In this mode the area can be entirely viewed (360) using the probability Model. Local Scan Mode This allows the system to scan a specific area (a limited degrees) if a user needs to scan a particular segment.

13 2.5. GUI GUI Operation Global Mode Operation To operate in the Global Scan Mode select and click on the button Then the sensor shaft will return to the starting position indicated by the arrow and start scanning for the full range. Local Mode Operation To operate in the Local Scan Mode select. Once this option is selected click on the button and select the range required to on the map (on the left) and click on the button. Probability Model In order to activate the probability model click the This can be shown in two methods. button. Color graded: This can be activated by selecting the. This will assign different colors to the grids based on the probability. Monochrome: This is the default mode which will show grid elements with 0.5 or greater probability as black and others as white.

14 3.0 APPENDIX 3.1. ULN2003 Seven Darlingtons per package output current 500mA per driver (600mA peak) Output voltage 50V. Integrated suppression diodes for inductive loads outputs can be paralleled for high current. TTL/CMOS/PMOS/DTL compatible input pinned opposite outputs to simplify layout. Description The ULN2003 is a high voltage, high current Darlington array containing seven open collector Darlington pairs with common emitters. Each channel rated at 500mA and can withstand peak currents of 600mA. Suppression diodes are included for inductive load driving and the inputs are pinned opposite the outputs to simplify board layout. This versatile device is useful for driving a wide range of loads including solenoids, relays DC motors, LED displays filament lamps, thermal print heads and high power buffers. The ULN2003A is supplied in 16 pin plastic DIP packages with a copper lead frame to reduce thermal resistance. This is available also in small outline package (SO-16) as ULN2003D. Pin Connection

15

16 3.2. SRF05 - Ultra-Sonic Range sensor The SRF05 is designed to increase flexibility, increase range, and to reduce costs still further. The Range is increased from 3 meters to 4 meters. A new operating mode (tying the mode pin to ground) allows the SRF05 to use a single pin for both trigger and echo, thereby saving valuable pins on your controller. When the mode pin is left unconnected, the SRF05 operates with separate trigger and echo pins, like the SRF04. The SRF05 includes a small delay before the echo pulse to give slower controllers such as the Basic Stamp and Picaxe time to execute their pulse in commands. Mode - SRF04 compatible - Separate Trigger and Echo This mode uses separate trigger and echo pins, and is the simplest mode to use. All code examples for the SRF04 will work for the SRF05 in this mode. To use this mode, just leave the mode pin unconnected - the SRF05 has an internal pull up resistor on this pin.

17 Figure 2

POWER SAVER METER USING MICROCONTROLLER TO SAVE ELECTRICITY UPTO 30-40%

POWER SAVER METER USING MICROCONTROLLER TO SAVE ELECTRICITY UPTO 30-40% POWER SAVER METER USING MICROCONTROLLER TO SAVE ELECTRICITY UPTO 30-40% Prof. Dipesh. M.Patel 1 Kandarp mehta 2 Himanshu amrutiya 3 Ravi bhalodia 4 Chirag amrutiya 5 1. Head, Electrical Engg. Department,

More information

RE08A Rotary Encoder Kit

RE08A Rotary Encoder Kit RE08A Rotary Encoder Kit User s Manual V1.5 November 2011 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded

More information

I2C-OC805S, I2C-OC805SA I2C Bus 8-Output Open Collectors

I2C-OC805S, I2C-OC805SA I2C Bus 8-Output Open Collectors I2C-OC85, I2C-OC85A I2C Bus 8-Output Open Collectors Features PCF8574 and PCF8574A I2C bus I/O expander 8 Outputs Open Collectors Operating voltage 2.5V to 5.5V Inverse polarity protection circuits khz

More information

Appendix F: Design Documentation for multisensory therapy system

Appendix F: Design Documentation for multisensory therapy system Appendix F: Design Documentation for multisensory therapy system This appendix contains in details all the system design. It summarizes at the structure design, electrical design, and software design.

More information

Arduino Smart Robot Car Kit User Guide

Arduino Smart Robot Car Kit User Guide User Guide V1.0 04.2017 UCTRONIC Table of Contents 1. Introduction...3 2. Assembly...4 2.1 Arduino Uno R3...4 2.2 HC-SR04 Ultrasonic Sensor Module with Bracket / Holder...5 2.3 L293D Motor Drive Expansion

More information

ADVANCED MICRO SYSTEMS

ADVANCED MICRO SYSTEMS Overview... 3 Included in the Box:... 3 Pinout... 4 Installation... 5 Power Supply... 6 Stepping Motors... 7 DIP Switch (JP1) Location... 8 Setting the Output Current (JP1)... 8 Microstep Resolution (JP1)...

More information

Basic Interface Techniques for the CRD155B

Basic Interface Techniques for the CRD155B Basic Interface Techniques for the CRD155B April 2001, ver. 1.10 Application Note 101 Introduction This application note contains basic information about interfacing external circuitry to computer I/O

More information

What are output transducers An output transducer will convert electrical signals passed to it by the process into another form of energy.

What are output transducers An output transducer will convert electrical signals passed to it by the process into another form of energy. What are output transducers An output transducer will convert electrical signals passed to it by the process into another form of energy. ACTIVITY Can you find the symbols of the output components listed

More information

MUSRF05 Interface I.C.

MUSRF05 Interface I.C. MUSRF05 Interface I.C. This allows up to 6 of the superb Devantech SRF05 Ultrasonic range-finding modules to be controlled using a simple serial 2 wire connection from PICAXE or BASIC STAMP. PICAXE & Basic

More information

RKP08 Component List and Instructions

RKP08 Component List and Instructions RKP08 Component List and Instructions PCB layout Constructed PCB RKP08 Scematic RKP08 Project PCB Page 1 Description The RKP08 project PCB has been designed to use PIC microcontrollers such as the Genie

More information

Home Automation control system using SMS

Home Automation control system using SMS Home Automation control system using SMS Sudhasmita Behera 1, Anish Kumar Saha 2, Deepak Kumar 3, Jagannath Polai 4 1Assistant professor, Dept. Of Electrical Engineering, GIET, Gunupur, Odisha,India 2Student,

More information

Line A. Inverse parallel scrs. Load a FUSION. Line B SCR POWER. O delta CONTROLLERS. Line c. inverse parallel scrs. Load C. FUSION Brochure Rev 3.

Line A. Inverse parallel scrs. Load a FUSION. Line B SCR POWER. O delta CONTROLLERS. Line c. inverse parallel scrs. Load C. FUSION Brochure Rev 3. Line A Inverse parallel scrs Load a Line B FUSION SCR POWER O delta CONTROLLERS Line c inverse parallel scrs Load C FEATURES Auto-Ranging Input Voltage 24-600 VAC, 45-65 Hz AC or DC Output AC Models: 50-1200

More information

Me Stepper Driver. Overview

Me Stepper Driver. Overview Me Stepper Driver Overview The Me Stepper Motor Driver module is designed to precisely drive the bipolar stepper motor. When pulse signals are input into the stepper motor, it rotates step by step. For

More information

Overview Included in the Box: Pinout Installation Power Supply Stepping Motors DIP Switch (JP1) Location...

Overview Included in the Box: Pinout Installation Power Supply Stepping Motors DIP Switch (JP1) Location... DRV7 USERS GUIDE Overview... 3 Included in the Box:... 4 Pinout... 4 Installation... 5 Power Supply... 6 Stepping Motors... 8 DIP Switch (JP1) Location... 9 Setting the Output Current (JP1)... 9 Microstep

More information

Wall-Follower. Xiaodong Fang. EEL5666 Intelligent Machines Design Laboratory University of Florida School of Electrical and Computer Engineering

Wall-Follower. Xiaodong Fang. EEL5666 Intelligent Machines Design Laboratory University of Florida School of Electrical and Computer Engineering Wall-Follower Xiaodong Fang EEL5666 Intelligent Machines Design Laboratory University of Florida School of Electrical and Computer Engineering TAs: Tim Martin Josh Weaver Instructors: Dr. A. Antonio Arroyo

More information

SRF08 Ultra sonic range finder Technical Specification

SRF08 Ultra sonic range finder Technical Specification SRF08 Ultra sonic range finder Technical Specification Communication with the SRF08 ultrasonic rangefinder is via the I2C bus. This is available on popular controllers such as the OOPic and Stamp BS2p,

More information

eace PLC Velocio s Embedded Ace (eace) PLC

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

More information

TB6600 Stepper Motor Driver

TB6600 Stepper Motor Driver TB6600 Stepper Motor Driver V1.0 07 2018 Open Source Mechatronics LTD 2018 Safety Statement The author of this document is not liable or responsible for any accidents, injuries, equipment damage, property

More information

Technical data. General specifications. Indicators/operating means

Technical data. General specifications. Indicators/operating means Release date: 08-0-08 0:7 Date of issue: 08-0-09 009_eng.xml Model Number Single head system Features Parameterization interface for the application-specific adjustment of the sensor setting via the service

More information

Super E-Line Applications in Automotive Electronics Replacement of Large Packaged Transistors with an Enhanced TO92 Product David Bradbury

Super E-Line Applications in Automotive Electronics Replacement of Large Packaged Transistors with an Enhanced TO92 Product David Bradbury Super E-Line Applications in Automotive Electronics Replacement of Large Packaged Transistors with an Enhanced TO92 Product David Bradbury Car buyers are now demanding greater and greater sophistication

More information

DC - Devices and Controller

DC - Devices and Controller 123 DC - Devices and Controller 1 DC-0010 Diode laser controller MK1-HP The diode laser module is connected via the 15 pin HD SubD jacket at the rear of the controller. The controller reads the EEPROM

More information

BMS: Installation Manual v2.x - Documentation

BMS: Installation Manual v2.x - Documentation Page 1 of 7 BMS: Installation Manual v2.x From Documentation This section describes how external peripheral devices are connected and additional functions of the BMS are used. I you have not done so already,

More information

ACCESSORIES Pulse Generator V4.11 Data Sheet

ACCESSORIES Pulse Generator V4.11 Data Sheet 03.33 Quick reference: 00 pulses per revolution of measuring drum For use with TG0 to TG0, BG4 to BG100 Uni-directional Not applicable for ex-proof areas Application: Components: Description: The Pulse

More information

SRF02 Ultrasonic range finder Technical Specification

SRF02 Ultrasonic range finder Technical Specification SRF02 Ultrasonic range finder Technical Specification I2C Mode For Serial mode click here I2C Communication To use the SRF02 in I2C mode, make sure nothing is connected to the mode pin, it must be left

More information

solutions for teaching and learning

solutions for teaching and learning RKP18Motor Component List and Instructions PCB layout Constructed PCB Schematic Diagram RKP18Motor Project PCB Page 1 Description The RKP18Motor project PCB has been designed to use PIC microcontrollers

More information

SmartFan Fusion-4. Speed Control and Alarm for DC Fans CONTROL RESOURCES INCORPORATED. The driving force of motor control & electronics cooling.

SmartFan Fusion-4. Speed Control and Alarm for DC Fans CONTROL RESOURCES INCORPORATED. The driving force of motor control & electronics cooling. SmartFan Fusion-4 Speed Control and Alarm for DC Fans The driving force of motor control & electronics cooling. P/N FUS300-F DC Controls SmartFan Fusion-4 is a digital fan speed control and alarm that

More information

Datasheet-MA860 Stepper Motor Driver

Datasheet-MA860 Stepper Motor Driver Datasheet-MA860 Stepper Motor Driver Introduction The MA860 is an economical micro-stepping driver based on patented technology of EDRIVE. It is suitable for driving 2-phase and 4-phase hybrid stepping

More information

MP6500 Stepper Motor Driver, Digital Current Control

MP6500 Stepper Motor Driver, Digital Current Control This breakout board for the MPS MP6500 micro stepping bipolar stepper motor driver is Pololu s latest stepper motor driver. The module has a pinout and interface that are very similar to that of our popular

More information

solutions for teaching and learning

solutions for teaching and learning RKOneAnalogue Component List and Instructions PCB layout Constructed PCB Schematic Diagram RKOneAnalogue Software Development PCB Page 1 Description The RKOneAnalogue software development PCB has been

More information

INTERFACING HARDWARE WITH MICROCONTROLLER

INTERFACING HARDWARE WITH MICROCONTROLLER INTERFACING HARDWARE WITH MICROCONTROLLER P.Raghavendra Prasad Final Yr EEE What is a Microcontroller? A microcontroller (or MCU) is acomputer-on-a-chip. It is a type of microprocessor emphasizing self-

More information

Technical data. General specifications. Indicators/operating means. Electrical specifications Operating voltage U B Power consumption P 0 Interface

Technical data. General specifications. Indicators/operating means. Electrical specifications Operating voltage U B Power consumption P 0 Interface Release date: 0--9 07:6 Date of issue: 0-0- 009_eng.xml Model Number Single head system Features Parameterization interface for the application-specific adjustment of the sensor setting via the service

More information

Mounting the Model 2601

Mounting the Model 2601 Control Technology Corporation Model 2601 Automation Controller Installation Guide Model 2601 Automation Controller This document is current as of the following revision levels: Controller Firmware 2.24

More information

R325P Single Axis Driver

R325P Single Axis Driver R325P Single Axis Driver User Manual And Commands Guide Version 1.3 Thank you for purchasing the R325P Single-Axis Step & Direction Driver. This product is warranted to be free of manufacturing defects

More information

Obstacle Avoidance (Local Path Planning)

Obstacle Avoidance (Local Path Planning) 6.2.2 Obstacle Avoidance (Local Path Planning) The goal of the obstacle avoidance algorithms is to avoid collisions with obstacles It is usually based on local map Often implemented as a more or less independent

More information

AOZ8101. Ultra-Low Capacitance TVS Diode Array. General Description. Features. Applications. Typical Application

AOZ8101. Ultra-Low Capacitance TVS Diode Array. General Description. Features. Applications. Typical Application Ultra-Low Capacitance TS Diode Array General Description The AOZ8101 is a transient voltage suppressor array designed to protect high speed data lines from Electro Static Discharge (ESD) and lightning.

More information

Motor driver board. EB022

Motor driver board.   EB022 Motor driver board www.matrixmultimedia.com EB022 Contents About this document 3 Board layout 3 General information 4 Circuit description 5 Circuit diagram 6 2 Copyright About this document This document

More information

Modules For Six Months Industrial Training On WIRELESS EMBEDDED SYSTEM DESIGN

Modules For Six Months Industrial Training On WIRELESS EMBEDDED SYSTEM DESIGN Modules For Six Months Industrial Training On WIRELESS EMBEDDED SYSTEM DESIGN 1 st Week Introduction to Embedded System a) Tool Hardware tool and Software tool b) Embedded designing, course study c) Board

More information

INTRODUCTION. Mechanical Considerations APPLICATION NOTE Z86E21 THERMAL PRINTER CONTROLLER ZILOG

INTRODUCTION. Mechanical Considerations APPLICATION NOTE Z86E21 THERMAL PRINTER CONTROLLER ZILOG ZILOG DESIGNING A LOW-COST THERMAL PRINTER USING THE Z86E21 TO CONTROL THE OPERATING CURRENT ON LOW-COST THERMAL PRINTERS PROVIDES DESIGN FLEXIBILITY AND HELPS SAFEGUARD PERFORMANCE. INTRODUCTION Compact

More information

Ultra-small U-shaped Micro Photoelectric Sensor. Extremely small size enables space saving!! 12 mm in

Ultra-small U-shaped Micro Photoelectric Sensor. Extremely small size enables space saving!! 12 mm in 1 Ultra-small Micro Photoelectric PM- SERIES Related Information General terms and conditions... F-17 Glossary of terms / General precautions... P.19~ / P.10 Amplifier Built-in selection guide... P.1~

More information

PM-24 SERIES. Ultra-small U-shaped Micro Photoelectric Sensor. Extremely small size enables space saving!! ( ) Equipped with two independent outputs

PM-24 SERIES. Ultra-small U-shaped Micro Photoelectric Sensor. Extremely small size enables space saving!! ( ) Equipped with two independent outputs 19 Ultra-small Micro Photoelectric Sensor PM- SERIES Related Information General terms and conditions...p.1 Glossary of terms / General precautions...p.98~ / P.98~ Amplifier Built-in Sensor selection guide...p.11~

More information

the Interactive Catalog

the Interactive Catalog Interactive Catalog Supplements Catalog PDFs If you need detailed product information, or help choosing the right product for your application, see our Interactive Catalog Use the Interactive Catalog to

More information

Programmable Control. Name Class Teacher. Ellon Academy Technical Faculty

Programmable Control. Name Class Teacher. Ellon Academy Technical Faculty Programmable Control Name Class Teacher Ellon Academy Technical Faculty Learning Intentions o Gain the ability to design and evaluate solutions to engineering problems in a range of contexts o I will gain

More information

EMTRON AUSTRALIA EMTRON ECU OVERVIEW

EMTRON AUSTRALIA EMTRON ECU OVERVIEW EMTRON AUSTRALIA EMTRON ECU OVERVIEW Table of Contents 1.0 General... 3 2.0 Injection... 4 3.0 Ignition... 5 4.0 Digital Inputs... 6 5.0 Auxiliary Outputs... 7 6.0 Analog Inputs... 9 7.0 Crank and Cam

More information

LCMM024: DRV8825 Stepper Motor Driver Carrier,

LCMM024: DRV8825 Stepper Motor Driver Carrier, LCMM024: DRV8825 Stepper Motor Driver Carrier, High Current The DRV8825 stepper motor driver carrier is a breakout board for TI s DRV8825 microstepping bipolar stepper motor driver. The module has a pinout

More information

User s Manual Hub444. Motion Control Network Hub

User s Manual Hub444. Motion Control Network Hub 8/23/02 JK User s Manual Motion Control Network Hub Applied Motion Products, Inc. 404 Westridge Drive Watsonville, CA 95076 Tel (831) 761-6555 (800) 525-1609 Fax (831) 761-6544 motors drives controls -2-

More information

FEATURES DESCRIPTION FEATURES

FEATURES DESCRIPTION FEATURES FEATURES Two High Speed Counters Two Pulse Train Outputs Two Pulse Width Modulation Outputs 24 Sinking or Sourcing Inputs 16 Outputs 1 RS232 Port 2 RS485 Ports Supports Modbus RTU Protocol Communicate

More information

Branch PLC. Velocio s Branch PLC

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

More information

Rear Distance Detection with Ultrasonic Sensors Project Report

Rear Distance Detection with Ultrasonic Sensors Project Report Rear Distance Detection with Ultrasonic Sensors Project Report 11.29.2017 Group #6 Farnaz Behnia Kimia Zamiri Azar Osaze Shears ECE 511: Microprocessors Fall 2017 1 Table of Contents 1. Abstract 3 2. Motivation

More information

EM705 2-phase Digital Stepper Drive

EM705 2-phase Digital Stepper Drive EM705 2-phase Digital Stepper Drive 20-70V, 0.35-5A, Sensorless Stall Detection, Pre-Matching Motor Sensorless stall detection eliminates cost of feedback devices and time of cable connection Super-low

More information

MD3. Microstepping Motor Driver Page 1 of 7. Description. Software. Mechanical Drawing. Features

MD3. Microstepping Motor Driver Page 1 of 7. Description. Software. Mechanical Drawing. Features Page 1 of 7 The MD3 is a stepper motor driver with an integrated motion controller that is capable of driving size 14 to 42 stepper motors from 2 to 256 microsteps per step. Peak motor currents are selectable

More information

CV Arpeggiator Rev 2 Build Documentation.

CV Arpeggiator Rev 2 Build Documentation. CV Arpeggiator Rev Build Documentation. Last updated 8-0-03 The CV Arpeggiator is a modular synth project used for creating arpeggios of control voltage. It utilizes a custom programmed PIC 6F685 micro

More information

Explorer V1.20. Features

Explorer V1.20. Features V1.20 Multi-function USB I/O Expander and Controller Features Dual h-bridge 1.3A motor drive with PWM speed control 4.6V to 10.8V input range USB communication 4x digital inputs 2x analogue inputs 7x 100mA

More information

FEATURES: DESCRIPTION: APPLICATIONS: SPECIFICATIONS: Electrical Specifications of Drive: Operating Environment: [Geben Sie Text ein]

FEATURES: DESCRIPTION: APPLICATIONS: SPECIFICATIONS: Electrical Specifications of Drive: Operating Environment: [Geben Sie Text ein] ist-09 ist-0 FEATURES: Integrated compact size for saving mounting space & setup time, and reducing electrical interference Anti-Resonance provides optimal torque and nulls mid-range instability Motor

More information

EM806 2-phase Digital Stepper Drive

EM806 2-phase Digital Stepper Drive EM806 2-phase Digital Stepper Drive 24-80V, 0.35-6A, Sensorless Stall Detection, Pre-Matching Motor Sensorless stall detection eliminates cost of feedback devices and time of cable connection Super-low

More information

ACS Stepper Controller. Econo Stepper Controller

ACS Stepper Controller. Econo Stepper Controller ACS Stepper Controller & Econo Stepper Controller User's Manual June 22, 2005 6 2 3 3 E. S a w g ra s s R d S a ra s o ta, F L. 3 4 2 4 0 (9 4 1 )3 7 7-5 7 7 5 F A X(9 4 1 )3 7 8-4 2 2 6 www.acscontrol.com

More information

Unit 2. Computer Control. PIC stands for PROGRAMMABLE INTERFACE CONTROLLER. A PIC chip takes in input signals and then controls output transducers

Unit 2. Computer Control. PIC stands for PROGRAMMABLE INTERFACE CONTROLLER. A PIC chip takes in input signals and then controls output transducers Unit 2 Computer Control PIC stands for PROGRAMMABLE INTERFACE CONTROLLER A PIC chip takes in input signals and then controls output transducers Name: Form: 2 ASIC or Application Specific Integrated Circuits

More information

PCL channel Isolated Digital I/O Card

PCL channel Isolated Digital I/O Card PCL-730 32-channel Isolated Digital I/O Card Copyright This documentation is copyrighted 1996 by Advantech Co., Ltd. All rights are reserved. Advantech Co., Ltd. reserves the right to make improvements

More information

ReFlx 100 PLUS COLLISION AVOIDANCE SYSTEM

ReFlx 100 PLUS COLLISION AVOIDANCE SYSTEM 100 PLUS COLLISION AVOIDANCE SYSTEM The 100 Plus collision avoidance system is intended for use with bridges and trolleys to prevent collisions or to limit the approach of adjacent bridges or trolleys.

More information

Connector Built-in U-shaped Micro Photoelectric Sensor. Approximately 60 % of previous model Detachable

Connector Built-in U-shaped Micro Photoelectric Sensor. Approximately 60 % of previous model Detachable 44 Connector Built-in Micro Photoelectric SERIES Related Information General terms and conditions... F-1 Glossary of terms... P.1~ selection guide... P.441~ General precautions... P.140 Amplifier Built-in

More information

Control System Consideration of IR Sensors based Tricycle Drive Wheeled Mobile Robot

Control System Consideration of IR Sensors based Tricycle Drive Wheeled Mobile Robot Control System Consideration of IR Sensors based Tricycle Drive Wheeled Mobile Robot Aye Aye New, Aye Aye Zan, and Wai Phyo Aung Abstract Nowadays, Wheeled Mobile Robots (WMRs) are built and the control

More information

With a digital input we can read two states, a high or low. A switch can be open or closed.

With a digital input we can read two states, a high or low. A switch can be open or closed. Page 1 of 6 PRODUCT INFORMATION B&B ELECTRONICS Data Acquisition Basics Data Acquisition hardware devices provide an interface between electrical signals a computer can read or can output to control things

More information

MSD325 Microstepping Drive

MSD325 Microstepping Drive MSD325 Microstepping Drive Introduction MSD325 is a very small size microstepping drive based on most advanced technology in the world today. It is suitable for driving any 2-phase and 4-phase hybrid stepper

More information

Instruction Manual for BE-SP3 Circuit. 10/21/07

Instruction Manual for BE-SP3 Circuit. 10/21/07 Page 1 of 54 Instruction Manual for BE-SP3 Circuit. 10/21/07 Page 1 Index: Page 2 BE-SP3 Circuit Specifications. Page 3-4 Intro to the BE-SP3. Page 5 Basics of serial to parallel. Page 6-7 ASCII Code.

More information

ACCESS SECURITY SYSTEM USING RFID TAG

ACCESS SECURITY SYSTEM USING RFID TAG ACCESS SECURITY SYSTEM USING RFID TAG OBJECTIVE The main objective of this project is to provide the technology which can be very beneficial is that RFID automated access for door controls to buildings,

More information

THE WI-FI SEEKER GROUP 30 CHRISTINA LEICHTENSCHLAG ADRIAN MORGAN JIMMY WONG SPONSORS: LEIDOS DUKE ENERGY

THE WI-FI SEEKER GROUP 30 CHRISTINA LEICHTENSCHLAG ADRIAN MORGAN JIMMY WONG SPONSORS: LEIDOS DUKE ENERGY THE WI-FI SEEKER GROUP 30 CHRISTINA LEICHTENSCHLAG ADRIAN MORGAN JIMMY WONG SPONSORS: LEIDOS DUKE ENERGY THE WI-FI SEEKER The Wi-Fi Seeker is a robot whose purpose is to determine the location where a

More information

Reversible motor driver

Reversible motor driver Reversible motor driver The BA6289F and BA6417F are reversible-motor drivers, with an output current of 600mA for the former and 1A for the latter. Two logic inputs allow four output modes: forward, reverse,

More information

One step ahead in performance and mounting ease

One step ahead in performance and mounting ease 95 Micro Photoelectric Amplifier Built-in PM-5 SERIES PM-45 SERIES PM-5 SERIES General terms and conditions... F- guide... P.9~ Related Information Glossary of terms / General precautions...p.1549~ / P.155~

More information

Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement.

Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement. NeoLoch NLT-28P-LCD-5S Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement. Kit contents: 1 Printed circuit

More information

DSP240-LPI Inverter Controller Card. Technical Brief

DSP240-LPI Inverter Controller Card. Technical Brief DSP240-LPI Inverter Controller Card Technical Brief September 2006 Manual Release 3.0 Card Revision 3.0 Copyright 2001-2006 Creative Power Technologies P.O. Box 714 MULGRAVE Victoria, 3170 Tel: +61-3-9543-8802

More information

Motorized Capacitor. Electrical Installation of ID-400. Service Bulletin 63

Motorized Capacitor. Electrical Installation of ID-400. Service Bulletin 63 Plasma Control Technologies Service Bulletin 63 Motorized Capacitor Electrical Installation of ID-400 Document Information Authors... O. Lehmann / A. Renggli / T. Fenske... W. Bigler / M. Armbruster Document...

More information

SDM / 4 Phase Stepper Drive Module. Compact Size & High Power Density, 20-60VDC, 6A Peak. Version 1.0

SDM / 4 Phase Stepper Drive Module. Compact Size & High Power Density, 20-60VDC, 6A Peak. Version 1.0 SDM660 2 / 4 Phase Stepper Drive Module Compact Size & High Power Density, 20-60VDC, 6A Peak Version 1.0 http://www.leadshine.com / http://www.leadshineusa.com 2013 Leadshine Technology Co., Ltd. 3/F,

More information

ME 3200 Mechatronics Laboratory FALL 2002 Lab Exercise 7: Ultrasonic Sensors

ME 3200 Mechatronics Laboratory FALL 2002 Lab Exercise 7: Ultrasonic Sensors ME 3200 Mechatronics Laboratory FALL 2002 Lab Exercise 7: Ultrasonic Sensors The objective of this lab is to provide you with the experience of using an ultrasonic sensor. Ultrasonic sensors, or sonar

More information

DRTS 3 PLUS Advanced Protection Relay Test Set and Measurement System

DRTS 3 PLUS Advanced Protection Relay Test Set and Measurement System Advanced Protection Relay Test Set and Measurement System Multi-tasking equipment designed for testing protection relays, energy meters, transducers Particularly designed to test RTU (remote terminal unit)

More information

A4988 Stepper Motor Driver Carrier, Black Edition

A4988 Stepper Motor Driver Carrier, Black Edition A4988 Stepper Motor Driver Carrier, Black Edition A4988 stepper motor driver carrier, Black Edition, bottom view with dimensions. Overview This product is a carrier board or breakout board for Allegro

More information

Motorized Capacitor. Electrical Installation of ID Service Bulletin 66

Motorized Capacitor. Electrical Installation of ID Service Bulletin 66 Plasma Control Technologies Service Bulletin 66 Motorized Capacitor Electrical Installation of ID-5400 Document Information Authors... O. Lehmann / A. Renggli / T. Fenske Document... SB-66-02.doc Created

More information

AOZ8900. Ultra-Low Capacitance TVS Diode Array PRELIMINARY. Features. General Description. Applications. Typical Application

AOZ8900. Ultra-Low Capacitance TVS Diode Array PRELIMINARY. Features. General Description. Applications. Typical Application Ultra-Low Capacitance TS Diode Array General Description The is a transient voltage suppressor array designed to protect high speed data lines from Electro Static Discharge (ESD) and lightning. This device

More information

Obstacle Avoidance (Local Path Planning)

Obstacle Avoidance (Local Path Planning) Obstacle Avoidance (Local Path Planning) The goal of the obstacle avoidance algorithms is to avoid collisions with obstacles It is usually based on local map Often implemented as a more or less independent

More information

Si 2035 Programmable Stepper Drive

Si 2035 Programmable Stepper Drive Si 23 Programmable Stepper Drive Description The Si23 is a programmable stepper drive/ indexer packaged in a rugged steel case. Integral heat sink, mounting brackets, switch covers and connectors are included

More information

Stepper Motor Driver Board. Instruction Note

Stepper Motor Driver Board. Instruction Note Stepper Motor Driver Board Instruction Note August 31, 2012 General Photonics Corp. Ph: (909) 590-5473 5228 Edison Ave. Fax: (909) 902-5536 Chino, CA 91710 USA www.generalphotonics.com Document #: GP-IN-MDL-003-CONTROLB-10

More information

OBSTACLE AVOIDANCE ROBOT

OBSTACLE AVOIDANCE ROBOT e-issn 2455 1392 Volume 3 Issue 4, April 2017 pp. 85 89 Scientific Journal Impact Factor : 3.468 http://www.ijcter.com OBSTACLE AVOIDANCE ROBOT Sanjay Jaiswal 1, Saurabh Kumar Singh 2, Rahul Kumar 3 1,2,3

More information

UNIT 3 THE 8051-REAL WORLD INTERFACING

UNIT 3 THE 8051-REAL WORLD INTERFACING UNIT 3 THE 8051-REAL WORLD INTERFACING 8031/51 INTERFACING TO EXTERNAL MEMORY The number of bits that a semiconductor memory chip can store is called chip capacity It can be in units of Kbits (kilobits),

More information

Driver/Controller Development Assistance Package For IDEX Health & Science TitanHT TM Driver Board

Driver/Controller Development Assistance Package For IDEX Health & Science TitanHT TM Driver Board Driver/Controller Development Assistance Package For IDEX Health & Science TitanHT TM Driver Board Page 1 of 19 Table of Contents Proprietary Letter... 3 Introduction... 4 Section 1.0 Driver Specifications

More information

PIC Dev 14 Through hole PCB Assembly and Test Lab 1

PIC Dev 14 Through hole PCB Assembly and Test Lab 1 Name Lab Day Lab Time PIC Dev 14 Through hole PCB Assembly and Test Lab 1 Introduction: The Pic Dev 14 is a simple 8-bit Microchip Pic microcontroller breakout board for learning and experimenting with

More information

Tongue driven speaking wheel chair with wireless device control

Tongue driven speaking wheel chair with wireless device control Tongue driven speaking wheel chair with wireless device control Tongue Drive system (TDS) is a tongue-operated unobtrusive wireless assistive technology, which can potentially provide people with severe

More information

Embedded Automobile Engine Locking System Using GSM & GPS Technology

Embedded Automobile Engine Locking System Using GSM & GPS Technology Volume-6, Issue-2, March-April 2016 International Journal of Engineering and Management Research Page Number: 117-122 Embedded Automobile Engine Locking System Using GSM & GPS Technology Abhishek Gupta

More information

LED Knight Rider. Yanbu College of Applied Technology. Project Description

LED Knight Rider. Yanbu College of Applied Technology. Project Description LED Knight Rider Yanbu College of Applied Technology Project Description This simple circuit functions as a 12 LED chaser. A single illuminated LED 'walks' left and right in a repeating sequence, similar

More information

FUSION COMPACT. Load a. Line A. Inverse parallel scrs. Line B. Line c. inverse parallel scrs. Load C SCR POWER. O delta CONTROLLERS

FUSION COMPACT. Load a. Line A. Inverse parallel scrs. Line B. Line c. inverse parallel scrs. Load C SCR POWER. O delta CONTROLLERS Line A Inverse parallel scrs Load a Line B COMPACT SCR POWER CONTROLLERS O delta Line c inverse parallel scrs Load C 1 Compact Brochure Rev 3.51 www.ccipower.com 1-800-765-2799 FEATURES Auto-Ranging Input

More information

Sense Autonomous 2_11. All rights reserved.

Sense Autonomous 2_11. All rights reserved. Sense Autonomous Sense Autonomous 2_11 All rights reserved. The material in this book may not be copied, duplicated, printed, translated, re-edited or broadcast without prior agreement in writing. For

More information

BG2E Universal Gate Drive Prototype Board

BG2E Universal Gate Drive Prototype Board Application NOTES: First Release: March 23, 200 BG2E Universal Gate Drive Prototype Board Description: BG2E is a fully isolated two channel gate drive circuit designed for use with dual NX-L series IGBT

More information

DMX-K-DRV. Integrated Step Motor Driver + (Basic Controller) Manual

DMX-K-DRV. Integrated Step Motor Driver + (Basic Controller) Manual DMX-K-DRV Integrated Step Motor Driver + (Basic Controller) Manual Table of Contents 1. Introduction... 4 Features... 4 2. Part Numbering Scheme... 5 3. Electrical and Thermal Specifications... 6 Power

More information

Product Description. Contents. Fusion Series. New Information December 2003

Product Description. Contents. Fusion Series. New Information December 2003 Fusion Series Technical Data New Information December 2003 Durant Fusion Product Description The Durant Fusion from Eaton Electrical is an industrial control unit consisting of a high speed count control

More information

Vector 3D printer complete wire list including extruder PWA listing

Vector 3D printer complete wire list including extruder PWA listing Vector 3D printer complete wire list including extruder PWA listing Conventions Pin numbering for connectors It is normal practice in print circuit board (PCB) layout to denote pin 1 of a PCB mounted connector

More information

USB I/O-CARD WITH 32 INPUTS

USB I/O-CARD WITH 32 INPUTS ORDERING NO. 4 016138 489224 Best. Nr. 502176 Control systems, switchgear cabinets Building automation, Home Automation Model construction, model railroads Step motor control and actuators I/O-card for

More information

Stellar Instruments. SC1 Controller & Display System. General User s Manual. Copyright 2013 Stellar Instruments 1

Stellar Instruments. SC1 Controller & Display System. General User s Manual. Copyright 2013 Stellar Instruments 1 Stellar Instruments SC1 Controller & Display System General User s Manual Copyright 2013 Stellar Instruments 1 Contents Section 1 General... 3 Section 2 Base Unit A (Multi-Event Programmable Timer)...

More information

ULN2065B SWITCH BOARD

ULN2065B SWITCH BOARD 1 ULN2065B SWITCH BOARD FEATURES 2 x ULN2065B(80V 1.5A Quad Darlington switches) Indication LEDs for the output status and input channels Screw Terminal Blocks for Relay outputs and opto input channels

More information

DAQCplate Users Guide

DAQCplate Users Guide DAQCplate Users Guide Contents Overview 2 Board Layout 3 Address Selection Header 4 Digital Outputs (DOUT) o 4. Connector o 4.2 Specifications o 4.3 Functions o 4.4 Examples 4.4. Simple External LED 4.4.2

More information

1. Introduction Packing list Parts Introduction Uno R3 Board for Arduino Specifications... 6

1. Introduction Packing list Parts Introduction Uno R3 Board for Arduino Specifications... 6 Table of Contents Smart Bluetooth Robot Car Kit for Arduino 1. Introduction...4 1.1 Packing list...5 2. Parts Introduction...6 2.1 Uno R3 Board for Arduino...6 2.1.1 Specifications... 6 2.2 HC-SR04 Ultrasonic

More information

EF-S1 SERIES. Continuously check invisible static electricity in lines. Constantly check static in lines!

EF-S1 SERIES. Continuously check invisible static electricity in lines. Constantly check static in lines! 1215 PHOTO PHOTO SAFETY USE SERIES Related Information General terms and conditions... F- General precautions... P.1595 guide... P.1155~ MEASUREMENT panasonic.net/id/pidsx/global Continuously check invisible

More information

FXL6408 Fully Configurable 8-Bit I 2 C-Controlled GPIO Expander

FXL6408 Fully Configurable 8-Bit I 2 C-Controlled GPIO Expander October 2012 FXL6408 Fully Configurable 8-Bit I 2 C-Controlled GPIO Expander Features 4X Expansion of Connected Processor I/O Ports Fully Integrated I 2 C Slave 8 Independently Configurable I/O Ports Low-Power

More information

MSD980 Microstepping Drive

MSD980 Microstepping Drive MSD980 Microstepping Drive Introduction MSD980 is a high-performance microstepping drive based on most advanced technology in the world today. It is suitable for driving any 2-phase and 4-phase hybrid

More information