T-535-MECH Mechatronics II DC Conveyor motor control using Arduino Uno programmed in C Final report. Gunnar Óli Sölvason

Size: px
Start display at page:

Download "T-535-MECH Mechatronics II DC Conveyor motor control using Arduino Uno programmed in C Final report. Gunnar Óli Sölvason"

Transcription

1 T-535-MECH Mechatronics II DC Conveyor motor control using Arduino Uno programmed in C Final report Gunnar Óli Sölvason February 26, 2014

2 Contents Abstract 2 1 Introduction Background Arduino Uno DC Motors Light sensor Transistors Pulse width modulation Design and progress Requirements Component selection Motor Transistor Light sensor Conveyor and parts Software Hardware Limitations Testing 11 4 Usage Installation Instructions Results and Discussion 12 6 Conclusion Future work Appendix Timeplan Design documents Cad drawings Code

3 Abstract Work in progress. - Abstract chapter will be placed here. 2

4 1 Introduction Conveyors have a wide use in industrial applications. Moving goods around is a common task in the real world, and a conveyor is one way to go about doing so. A wide variety of motors can be used to drive a conveyor, with geared DC motors being a common solution. The project discussed in this report is to use a Ardunio Uno board programmed in the C programming language to control the speed of a small conveyor running on a DC motor with a built in encoder. The speed of the conveyor should keep constant, even though load is applied to it, meaning that power needs to be adjusted dynamically as the load varies with time. At the end of the conveyor a end stop sensor senses if a piece is going to fall of the motor end of the conveyor. The idea for this assignment came from a list of possible topics proposed by the course instructor. At the time the project was chosen I had problems blinking a diode using C, so a project of a fairly low complexity seemed like a good idea. To add a little bit to the idea from the instructor and not just use it raw, a endstop sensor was added to the conveyor. Also, having worked with conveyors before would mean that the focus could be on working with the Arduino microcontroller and the programming part of the assignment. Rather than spending a whole lot of time on physical design, which is maybe not the focus of the course, a bigger portion of the time could go into building the software and learning the ins and outs of the Atmel processor being used, something I have lesser experience with. 1.1 Background The basic idea for the project is this : A Geared DC motor is connected to a power supply and a transistor. The transistor is connected to the Arduino board, and modulated pulses from the Arduino control how much power the motor gets. The determination of power is directly proportional to the percentage time the port controlling the transistor is on, in other words, the duty cycle of the pulse width modulation. If the duty cycle of the pulse width modulation is, for example, 70%, the motor will be running at 70% of maximum power. 1.2 Arduino Uno "The Arduino Uno is a microcontroller board based on the ATmega328. It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator, a USB connection, a power jack, an ICSP header, and a reset button. It contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable or power it with a AC-to-DC adapter or battery to get started. The Uno diers from all preceding boards in that it does not use the FTDI USB-to-serial driver chip. Instead, it features the Atmega16U2 (Atmega8U2 up to version R2) programmed 3

5 Figure 1: Arduino Uno board.[1]. as a USB-to-serial converter. [ ] "Uno" means one in Italian and is named to mark the upcoming release of Arduino 1.0. The Uno and version 1.0 will be the reference versions of Arduino, moving forward. The Uno is the latest in a series of USB Arduino boards, and the reference model for the Arduino platform; for a comparison with previous versions, see the index of Arduino boards [2]." As mentioned in the summary above, from the web page of the producers of the Arduino board, it runs on the ATmega328 microcontroller. The operating voltage of the board is 5V, and runs at a clock speed of 16MHz. Available memory is 32KB (Flash, of which 0.5 is allocated for the bootloader), 2KB SRAM and 1KB EEPROM. The communication to a computer goes on through a USB port on the board, or as phrased on the website : "The Arduino Uno has a number of facilities for communicating with a computer, another Arduino, or other microcontrollers. The ATmega328 provides UART TTL (5V) serial communication, which is available on digital pins 0 (RX) and 1 (TX). An ATmega16U2 on the board channels this serial communication over USB and appears as a virtual com port to software on the computer. The '16U2 rmware uses the standard USB COM drivers, and no external driver is needed [2]." 1.3 DC Motors Write background on DC motors. 1.4 Light sensor Write background on sensor (proximity, light...) 1.5 Transistors A transistor is essentially a switch (much like normal mechanical switches), except it has no moving parts. 4

6 Figure 2: A section view of a brushed DC motor. [3]. There are two types of transistors, P-Type and N-Type. This means that the transistors semiconductor is either infused (doped) with a material that has 1 more electrons than silicon (5e ), like phosphorus (N-Type), or you dope the silicon with a material that has 1 less electrons than silicone (3e ), like Bohron (P-Type). What this does is, that conductivity is increased by more electrons being able to move freely inside the semiconducting material. Note that both of the P and N type semiconductors are neutrally charged. What the P and N describes is whether the electron itself moves inside the semiconducting material, or the "hole" left by the missing electron in the material with only (3e ) in it. Figure 3 shows my illustration of a NPN transistor and its basic functionality. Figure 3: A graphical reprisentation of a NPN transistor. When no voltage is applied to the gate, no current ows through the transistor, it is an open switch, much like a mechanical switch when it is not pressed down. When voltage is applied to the gate, the electrons in the semiconductor overcome the barrier of the depletion layer, making a channel for electrons to ow under the oxide layer. Now the transistor is open and current can ow through it. This can be done very fast, and at very high rates. 5

7 1.6 Pulse width modulation In the simplest explenation, pulse with modulation is varying the time between something being on and being o. In this case the pulse with modulation goes on through a 5V pin on an Arduino Uno board. If the pin would be o 100% o the time, it would give out the average voltage of 0V. If the pin was on 100% o the time, it would give an average output of 5V. Equally, if the pin was altered to be on 50% o the time and on 50% o the time, it would give the average power of 2.5V. For someting that would normally run at 5V, lets just say a light, this would mean that the light would be on, but on 50% of its maximum brightness. Pulse width modulation has a wide variety of practical uses, and here it is used to vary the speed of a DC motor using the principle described here above. Figure 4: Graphical representation of Pulse Width Modulation. [4]. Figure 4 shows graphically how the principle behind PWM is executed. 6

8 2 Design and progress The system design started with the scope of the problem being decided. This was done by setting some functional requirements and design parameters. These parameters can be seen Table 1. The diagram is called a FRDPARRC diagram. FR stands for functional requirements, DP for Design Parameters, A for Analysis, R for References, the other R for Risks and C for Countermeasures. The FRDPARRC Diagram helps identify most crucial functional requirements and design parameters, as well as possible risk factors and their countermeasures. Conveyor runs at set speed. Table 1: FRDPARRC Diagram for DC Conveyor. Based on [5]. FR DP A R R C Previous Speed will Dierence experience variate from set speed Realistic goal. working with outside of set is < ±5% conveyors range Only minority of pieces fall of the edge. Conveyor is aesthetically pleasing. Pieces are not to big for conveyor Pieces are not to small for sensor <1% of pieces fall of the edge of the conveyor. Gunnar likes the aesthetics. Max size : 100x400x400 (WxLxH) Min size : 50x50x50 (WxLxH) 100% success rate not realistic. Designers should strive for good looks. Too big pieces could damage conveyor Too small pieces would not trigger sensor. Former experience with conveyors. Good looking things sell better. Physical constraints of conveyor. Sensor datasheet More than 1% fall o edge. Looks bad. Conveyor breaks. Breaks design parameter 2 Design good feed-back loop Position sensor correctly. Quick stopping of conveyor. Use golden ratios in design. Clearly dene maximum size Clearly dene minimum size 7

9 After conguring the design parameters and functional requirements of the project the group made a crude rst sketch of the machine. The sketch can be seen in Figure 5 Figure 5: The gure shows the rst crude sketch of the idea. The sketch shows... This can be described in a step by step manner like so : Requirements All the main requirements for the project have been analysed in the FRDPRRC diagram in section 2. (ADD TEXT HERE) 2.2 Component selection This chapter deals with the reasons behind the selection of components for the project, and goes through a little analysis on each and every one of the parts chosen Motor When selecting a motor for a conveyor, the main selection criteria are most often speed and torque requirements. The maximum load of the conveyor is known in most situations, both the static load due to weight of the belt itself, and the dynamic load added by goods moving on the conveyor. Along with that the maximum time for delivery to the end of conveyor is most often known, so the speed can be calculated. 8

10 Justify selection of motor with the hand calculations already made. Include the formulas. To calculate the speed of the conveyor we need to know two parameters: The rotational speed of the motor, and the diameter of the sprocket. The nominal pitch diameter of the sprocket is ø41. (the sprocket is the smallest one available for Intralox 1100 series at top belt, as can be seen in [insert citation to intralox manual]. The rotation of the motor is 160RPM. u = d π = 120mm = 0, 12 m rev 160 rev min 60 sec min = 2, 667 rev sec v = 0, 12 m 2, 667rev rev sec 0, 35m/s This gives the speed of 0,35 m/s for the conveyor when no frictional factors are considered. From previous experience with conveyors I am happy with that operating speed, since it is strikes a good balance between being fast enough, and not producing a lot of noise Transistor Justify selection of transistor and calculate size Light sensor Justify selection o sensor (numerical values, price, performance, availability). Analyse what is needed from the sensor, and what sensor meets that criteria the best Conveyor and parts Justify selection for parts in conveyor. 2.3 Software The software used to control the motor is written in C using Eclipse equipped with AVRDude to compile the code and send it to the Arduino board. The entire code is written specically for this project, without relying on built in libraries of the ANSI standard C code. An exception for this is the io.h header le and the interrupt.h header le, which were allowed for use by the 9

11 instructor of the course. The software is split into...(add more text here on the software when ready) 2.4 Hardware The hardware used for this project was as follows : - A computer (laptop/desktop pc) for programming. - Arduino Uno board. - USB Cable (to connect the AU board to the computer) - DC Gearmotor with Encoder (Hennkwell HG37D670WE12-052FH was used for this project, others could be considered) - Light sensor (velja sensor...) - Conveyor (Frame, Conveyor belt and supports) - Control circuit (breadboard, transistor, 2x7segment display) The motor was sourced from the Electronics lab of the Reykjavík University and the Arduino Uno board was bought for use in Mechatronics I preliminary class last semester. The most complicated hardware of the project is the conveyor construction. The conveyor was supplied pro bono from a company the remains anonymous by request. This means that all the parts for the project were sourced for free, so there is no cost gure next to the parts in the BOM. 2.5 Limitations Limitations for this project are the same as for most design projects, time and money. The project does have a limited budget, and the timeframe is only 8 weeks. This limits the features the project can have. For the conveyor to work properly, it needs to be on a solid base and placed horizontal. All calculations made assumed that the conveyor would not be inclined, since that adds load on the relatively small motor. Since the control circuit is open, and not in any way protected, the conveyor is obviously not equipped to be used in factory environment since its not waterproof. The conveyor can only handle loads inside of the specications of the motor (INCLUDE MO- TOR CALCULATIONS HERE!!). Since the actual belt itself can carry upwards of a 1000kg without breaking, the motor torque will be a limiting factor long before that load is reached, along with the conveyor frame breaking. Since the constructional integrity of the conveyor was far out of the scope of this project, no calculations were carried out to proof how much it could 10

12 withstand, but it is safe to assume that it will be a matter of no concern here. The maximum torque of the motor is 0,65 Nm, so the motor will stall long before any physical damage is done to the conveyor. Since the width of the conveyor is roughly 100mm, and the length is about 500mm it can obviously not handle pieces or items exceeding that size. For the sensor to be able to sense items on the conveyor, the items must be of adequate size. Maximum and minimum sizes are dened in the FRDPARRC diagram, table 1. Due to the rotational speed of the motor, the conveyor wont be able to run over 0.35 meters per second without seriously lowering the torque the motor can handle. It could probably be run faster, but it won't be guaranteed. The maximum rated speed is 0.35m/s. 3 Testing Work in progress. 11

13 4 Usage To use the conveyor one has to follow a simple procedure. The conveyor is simply connected to power, the speed is set, and the conveyor should run. It should by then run at the set speed, and maintain that speed even though load is added. The physical button allowing or not allowing pieces to fall of the motor-end of the conveyor can be set, allowing either of those two options. 4.1 Installation For the conveyor to be able to run, the correct software needs to be installed onto the Arduino board rst. The software needed can be found in the appendix. Step by step installation guide for for the Conveyor: 1. Turn on a computer. 2. Start operating system of own choice. 3. Start Eclipse software developement enviroment Connect the Arduino via USB cable to one of your computer's USB ports. 5. Upload the conveyor software to the Arduino board. With the software installed on the Arduino board, the conveyor only needs external power to run. This is done by plugging in the power cord supplied with the conveyor. 4.2 Instructions Work in progress. 5 Results and Discussion Work in progress. 6 Conclusion Work in progress. 1 This needs to be installed. If you have not installed Eclipse, it can be downloaded from 12

14 6.1 Future work Work in progress. 13

15 7 Appendix 7.1 Timeplan This is the original timeplan of the project turned in when the project was selected in week 5. Week 6 : Scope project, source parts. Week 7 : Design hardware. Week 8 : Design software. Week 9 : Build circuit. Week 10 : Build hardware. Week 11 : Start on report, nish hardware. Week 12 : Simultaneously work on writing and programming. Week 13 : Writing, programming. Week 14 : Finish writing report, make presentation, ne tune conveyor This is the timeplan as it was executed. Notice the dierence in week numbers. Green tasks have already been nalized. Orange parts are underway. Others have not been started. Week 8 : Scope project, source parts. Week 8 : Design hardware. Week 8 : Design software. Week 9 : Build circuit. Week 10 : Build hardware. Week 11 : Start on report, nish hardware. Week 12 : Simultaneously work on writing and programming. Week 13 : Writing, programming. Week 14 : Finish writing report, make presentation, ne tune conveyor 14

16 7.2 Design documents Cad drawings Work in progress. 15

17 7.3 Code This is the source code that was used for the conveyor??. The code would need to be tweaked for the nal design. belowcaptionskip Work in progress. 16

18 References [1] Web Page. [Online]. Available: 1/1/0/2/1/ a.jpg [2] Arduino, Arduino uno, Webpage, [Online]. Available: arduinoboarduno#.uwyxk_l_s5q [3] 2by, Dc motor anatomy, Web page. [Online]. Available: DC-Motor-Anatomy-sm.png [4] Web page. [Online]. Available: atmega168a_pwm_02_lrg.jpg [5] A. H. Slocum, Precision Machine Design. Society of Manufacturing Engineers,

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K.

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Roberts Page 1 See Appendix A, for Licensing Attribution information

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

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

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

Module: Arduino as Signal Generator

Module: Arduino as Signal Generator Name/NetID: Teammate/NetID: Module: Laboratory Outline In our continuing quest to access the development and debugging capabilities of the equipment on your bench at home Arduino/RedBoard as signal generator.

More information

ARDUINO BASED DC MOTOR SPEED CONTROL

ARDUINO BASED DC MOTOR SPEED CONTROL ARDUINO BASED DC MOTOR SPEED CONTROL Student of Electrical Engineering Department 1.Hirdesh Kr. Saini 2.Shahid Firoz 3.Ashutosh Pandey Abstract The Uno is a microcontroller board based on the ATmega328P.

More information

Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance)

Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance) Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance) Supriya Bhuran 1, Rohit V. Agrawal 2, Kiran D. Bombe 2, Somiran T. Karmakar 2, Ninad V. Bapat 2 1 Assistant Professor, Dept. Instrumentation,

More information

Lesson 3: Arduino. Goals

Lesson 3: Arduino. Goals Introduction: This project introduces you to the wonderful world of Arduino and how to program physical devices. In this lesson you will learn how to write code and make an LED flash. Goals 1 - Get to

More information

Lab 2: Blinkie Lab. Objectives. Materials. Theory

Lab 2: Blinkie Lab. Objectives. Materials. Theory Lab 2: Blinkie Lab Objectives This lab introduces the Arduino Uno as students will need to use the Arduino to control their final robot. Students will build a basic circuit on their prototyping board and

More information

Ardweeny 1.60" 0.54" Simple construction - only 7 parts plus pins & PCB! Ideal for breadboard applications

Ardweeny 1.60 0.54 Simple construction - only 7 parts plus pins & PCB! Ideal for breadboard applications Ardweeny tm Arduino -compatible Microcontroller Like to build your own breadboard-compatible Arduino? Get all the basic features of Arduino in a tidy, cost-effectve package! Build Time: 20mins Skill Level:

More information

Training Schedule. Robotic System Design using Arduino Platform

Training Schedule. Robotic System Design using Arduino Platform Training Schedule Robotic System Design using Arduino Platform Session - 1 Embedded System Design Basics : Scope : To introduce Embedded Systems hardware design fundamentals to students. Processor Selection

More information

Introduction to the Arduino Kit

Introduction to the Arduino Kit 1 Introduction to the Arduino Kit Introduction Arduino is an open source microcontroller platform used for sensing both digital and analog input signals and for sending digital and analog output signals

More information

FABO ACADEMY X ELECTRONIC DESIGN

FABO ACADEMY X ELECTRONIC DESIGN ELECTRONIC DESIGN MAKE A DEVICE WITH INPUT & OUTPUT The Shanghaino can be programmed to use many input and output devices (a motor, a light sensor, etc) uploading an instruction code (a program) to it

More information

AUTOMATIC RESISTOR COLOUR CODING DETECTION & ALLOCATION

AUTOMATIC RESISTOR COLOUR CODING DETECTION & ALLOCATION AUTOMATIC RESISTOR COLOUR CODING DETECTION & ALLOCATION Abin Thomas 1, Arun Babu 2, Prof. Raji A 3 Electronics Engineering, College of Engineering Adoor (India) ABSTRACT In this modern world, the use of

More information

LoRa Quick Start Guide

LoRa Quick Start Guide LoRa Quick Start Guide The Things Uno Tweetonig Rotterdam (English) v1.0 - written for Things Uno v4 Index LoRa Quick Start Guide 1 The Things Uno 1 Index 2 Specifications 3 CPU: ATmega32u4 3 Pin layout

More information

Demon Pumpkin APPROXIMATE TIME (EXCLUDING PREPARATION WORK): 1 HOUR PREREQUISITES: PART LIST:

Demon Pumpkin APPROXIMATE TIME (EXCLUDING PREPARATION WORK): 1 HOUR PREREQUISITES: PART LIST: Demon Pumpkin This is a lab guide for creating your own simple animatronic pumpkin. This project encourages students and makers to innovate upon the base design to add their own personal touches. APPROXIMATE

More information

Coding with Arduino to operate the prosthetic arm

Coding with Arduino to operate the prosthetic arm Setup Board Install FTDI Drivers This is so that your RedBoard will be able to communicate with your computer. If you have Windows 8 or above you might already have the drivers. 1. Download the FTDI driver

More information

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1 HAW-Arduino Sensors and Arduino 14.10.2010 F. Schubert HAW - Arduino 1 Content of the USB-Stick PDF-File of this script Arduino-software Source-codes Helpful links 14.10.2010 HAW - Arduino 2 Report for

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

Breadboard Arduino Compatible Assembly Guide

Breadboard Arduino Compatible Assembly Guide (BBAC) breadboard arduino compatible Breadboard Arduino Compatible Assembly Guide (BBAC) A Few Words ABOUT THIS KIT The overall goal of this kit is fun. Beyond this, the aim is to get you comfortable using

More information

LC-10 Chipless TagReader v 2.0 August 2006

LC-10 Chipless TagReader v 2.0 August 2006 LC-10 Chipless TagReader v 2.0 August 2006 The LC-10 is a portable instrument that connects to the USB port of any computer. The LC-10 operates in the frequency range of 1-50 MHz, and is designed to detect

More information

HAND GESTURE CONTROLLED ROBOT USING ARDUINO

HAND GESTURE CONTROLLED ROBOT USING ARDUINO HAND GESTURE CONTROLLED ROBOT USING ARDUINO Vrushab Sakpal 1, Omkar Patil 2, Sagar Bhagat 3, Badar Shaikh 4, Prof.Poonam Patil 5 1,2,3,4,5 Department of Instrumentation Bharati Vidyapeeth C.O.E,Kharghar,Navi

More information

Feeder Protection From Over Load and Earth Fault Relay

Feeder Protection From Over Load and Earth Fault Relay Feeder Protection From Over Load and Earth Fault Relay Prof. Vaneela Pyla 1, Uma N. Bhimnath 2, Archana M. Bhosale 3, Apurva V. Khachane 4 Assistant Professor, Electrical Engineering Department, NBN Sinhgad

More information

WifiBotics. An Arduino Based Robotics Workshop

WifiBotics. An Arduino Based Robotics Workshop WifiBotics An Arduino Based Robotics Workshop WifiBotics is the workshop designed by RoboKart group pioneers in this field way back in 2014 and copied by many competitors. This workshop is based on the

More information

1Getting Started SIK BINDER //3

1Getting Started SIK BINDER //3 SIK BINDER //1 SIK BINDER //2 1Getting Started SIK BINDER //3 Sparkfun Inventor s Kit Teacher s Helper These worksheets and handouts are supplemental material intended to make the educator s job a little

More information

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment.

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment. Physics 222 Name: Exercise 6: Mr. Blinky This exercise is designed to help you wire a simple circuit based on the Arduino microprocessor, which is a particular brand of microprocessor that also includes

More information

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino Lecture 4: Basic Electronics Lecture 4 Page: 1 Brief Introduction to Electronics and the Arduino colintan@nus.edu.sg Lecture 4: Basic Electronics Page: 2 Objectives of this Lecture By the end of today

More information

Arduino An Introduction

Arduino An Introduction Arduino An Introduction Hardware and Programming Presented by Madu Suthanan, P. Eng., FEC. Volunteer, Former Chair (2013-14) PEO Scarborough Chapter 2 Arduino for Mechatronics 2017 This note is for those

More information

Lab 5: Inverted Pendulum PID Control

Lab 5: Inverted Pendulum PID Control Lab 5: Inverted Pendulum PID Control In this lab we will be learning about PID (Proportional Integral Derivative) control and using it to keep an inverted pendulum system upright. We chose an inverted

More information

Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink

Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink By the end of this session: You will know how to use an Arduino

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

Object Detection for Collision Avoidance in ITS

Object Detection for Collision Avoidance in ITS Available online www.ejaet.com European Journal of Advances in Engineering and Technology, 2016, 3(5): 29-35 Research Article ISSN: 2394-658X Object Detection for Collision Avoidance in ITS Rupojyoti Kar

More information

Light Emitting Diode IV Characterization

Light Emitting Diode IV Characterization Light Emitting Diode IV Characterization In this lab you will build a basic current-voltage characterization tool and determine the IV response of a set of light emitting diodes (LEDs) of various wavelengths.

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

ASCOM EF Lens Controller

ASCOM EF Lens Controller ASCOM EF Lens Controller ASCOM EF Lens Controller control unit for Canon EF/EF-S lenses. It allows you to control lens using the ASCOM platform tools. Features (supported by driver): focus control; aperture

More information

Arduino Uno Pinout Book

Arduino Uno Pinout Book Arduino Uno Pinout Book 1 / 6 2 / 6 3 / 6 Arduino Uno Pinout Book Arduino Uno pinout - Power Supply. There are 3 ways to power the Arduino Uno: Barrel Jack - The Barrel jack, or DC Power Jack can be used

More information

Sensors and Sensing Motors, Encoders and Motor Control

Sensors and Sensing Motors, Encoders and Motor Control Sensors and Sensing Motors, Encoders and Motor Control Todor Stoyanov Mobile Robotics and Olfaction Lab Center for Applied Autonomous Sensor Systems Örebro University, Sweden todor.stoyanov@oru.se 13.11.2014

More information

ECE 445 Spring 2017 Autonomous Trash Can. Group #85: Eshwar Cheekati, Michael Gao, Aditya Sule

ECE 445 Spring 2017 Autonomous Trash Can. Group #85: Eshwar Cheekati, Michael Gao, Aditya Sule ECE 445 Spring 27 Autonomous Trash Can Group #85: Eshwar Cheekati, Michael Gao, Aditya Sule Introduction High amount of waste generated Poor communication/trash management -> smelly odors Need for reminder

More information

Micromouse Meeting #3 Lecture #2. Power Motors Encoders

Micromouse Meeting #3 Lecture #2. Power Motors Encoders Micromouse Meeting #3 Lecture #2 Power Motors Encoders Previous Stuff Microcontroller pick one yet? Meet your team Some teams were changed High Level Diagram Power Everything needs power Batteries Supply

More information

Persistence of Vision LED Sphere

Persistence of Vision LED Sphere Persistence of Vision LED Sphere Project Proposal ECE 445 February 10, 2016 TA: Vivian Hou Michael Ling Li Quan 1 Table of Contents 1.0 Introduction... 3 1.1 Purpose and Motivation:... 3 1.2 Objectives:...

More information

ARDUINO / GENUINO. start as professional. short course in a book. faculty of engineering technology

ARDUINO / GENUINO. start as professional. short course in a book. faculty of engineering technology ARDUINO / GENUINO start as professional short course in a book faculty of engineering technology Publisher Universiti Malaysia Pahang Kuantan 2017 Copyright Universiti Malaysia Pahang, 2017 First Published,

More information

SPEED CONTROL OF DC MOTOR USING PWM TECHNIQUE

SPEED CONTROL OF DC MOTOR USING PWM TECHNIQUE SPEED CONTROL OF DC MOTOR USING PWM TECHNIQUE Shubham Naik 1 1 Electrical Engineering Abstract DC motors are widely used in industries where high speed torque requirement. Because of it characteristics

More information

Design and Simulation of Three Phase Controlled Rectifier Using IGBT

Design and Simulation of Three Phase Controlled Rectifier Using IGBT Design and Simulation of Three Phase Controlled Rectifier Using IGBT Tanmay Sharma 1, Dhruvi Dave 2, Ruchit Soni 3 1 Student, Electrical Engineering Department, Indus University, Ahmedabad, Gujarat. 2

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

High Speed Continuous Rotation Servo (# )

High Speed Continuous Rotation Servo (# ) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Autonomous. Chess Playing. Robot

Autonomous. Chess Playing. Robot Autonomous Chess Playing Robot Team Members 1. Amit Saharan 2. Gaurav Raj 3. Riya Gupta 4. Saumya Jaiswal 5. Shilpi Agrawal 6. Varun Gupta Mentors 1. Mukund Tibrewal 2. Hardik Soni 3. Zaid Tasneem Abstract

More information

VMA502 BASIC DIY KIT WITH ATMEGA2560 FOR ARDUINO USER MANUAL

VMA502 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

Arduino Workshop 01. AD32600 Physical Computing Prof. Fabian Winkler Fall 2014

Arduino Workshop 01. AD32600 Physical Computing Prof. Fabian Winkler Fall 2014 AD32600 Physical Computing Prof. Fabian Winkler Fall 2014 Arduino Workshop 01 This workshop provides an introductory overview of the Arduino board, basic electronic components and closes with a few basic

More information

smraza Getting Start Guide Contents Arduino IDE (Integrated Development Environment)... 1 Introduction... 1 Install the Arduino Software (IDE)...

smraza Getting Start Guide Contents Arduino IDE (Integrated Development Environment)... 1 Introduction... 1 Install the Arduino Software (IDE)... Getting Start Guide Contents Arduino IDE (Integrated Development Environment)... 1 Introduction... 1 Install the Arduino Software (IDE)...1 Introduction... 1 Step 1: Get an Uno R3 and USB cable... 2 Step

More information

Beacon Atom Hardware Design Analysis Seeed Studio EE 2012/12

Beacon Atom Hardware Design Analysis Seeed Studio EE 2012/12 Beacon Atom Hardware Design Analysis Seeed Studio EE 2012/12 BEACON ATOM HARDWARE DESIGN INSTRUCTION... 1 DESIGN OBJECTIVE... 1 HARDWARE DESIGN SCHEME... 1 DETAILED HARDWARE DESIGN INSTRUCTION... 1 MCU...

More information

Sunday, November 4, The LadyUno Sound Unit

Sunday, November 4, The LadyUno Sound Unit The LadyUno Sound Unit Here s what we ll need for this project We start with our finished Lady Ada Wav Shield. 5V for LCD Serial Data for LCD GND for LCD 5V (coming from the BBB) is_lady_ada_busy PIN GND

More information

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G P R O F. S L A C K L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G G B S E E E @ R I T. E D U B L D I N G 9, O F F I C E 0 9-3 1 8 9 ( 5 8 5 ) 4 7 5-5 1 0

More information

Welcome to Arduino Day 2016

Welcome to Arduino Day 2016 Welcome to Arduino Day 2016 An Intro to Arduino From Zero to Hero in an Hour! Paul Court (aka @Courty) Welcome to the SLMS Arduino Day 2016 Arduino / Genuino?! What?? Part 1 Intro Quick Look at the Uno

More information

DC Motor and Servo motor Control with ARM and Arduino. Created by:

DC Motor and Servo motor Control with ARM and Arduino. Created by: DC Motor and Servo motor Control with ARM and Arduino Created by: Andrew Kaler (39345) Tucker Boyd (46434) Mohammed Chowdhury (860822) Tazwar Muttaqi (901700) Mark Murdock (98071) May 4th, 2017 Objective

More information

IOT Based Smart Greenhouse Automation Using Arduino

IOT Based Smart Greenhouse Automation Using Arduino IOT Based Smart Greenhouse Automation Using Arduino Prof. D.O.Shirsath, Punam Kamble, Rohini Mane, Ashwini Kolap, Prof.R.S.More Abstract Greenhouse Automation System is the technical approach in which

More information

Brushed DC Motor Microcontroller PWM Speed Control with Optical Encoder and H-Bridge

Brushed DC Motor Microcontroller PWM Speed Control with Optical Encoder and H-Bridge Brushed DC Motor Microcontroller PWM Speed Control with Optical Encoder and H-Bridge L298 Full H-Bridge HEF4071B OR Gate Brushed DC Motor with Optical Encoder & Load Inertia Flyback Diodes Arduino Microcontroller

More information

Internet of Things Student STEM Project Jackson High School. Lesson 2: Arduino and LED

Internet of Things Student STEM Project Jackson High School. Lesson 2: Arduino and LED Internet of Things Student STEM Project Jackson High School Lesson 2: Arduino and LED Lesson 2: Arduino and LED Time to complete Lesson 60-minute class period Learning objectives Students learn about Arduino

More information

EEL5666C IMDL Spring 2006 Student: Andrew Joseph. *Alarm-o-bot*

EEL5666C IMDL Spring 2006 Student: Andrew Joseph. *Alarm-o-bot* EEL5666C IMDL Spring 2006 Student: Andrew Joseph *Alarm-o-bot* TAs: Adam Barnett, Sara Keen Instructor: A.A. Arroyo Final Report April 25, 2006 Table of Contents Abstract 3 Executive Summary 3 Introduction

More information

Arduino based pulse width modulated output voltage control of a dc-dc boost converter using Proportional, Integral and Derivative control strategy

Arduino based pulse width modulated output voltage control of a dc-dc boost converter using Proportional, Integral and Derivative control strategy AENSI Journals Australian Journal of Basic and Applied Sciences Journal home page: www.ajbasweb.com Arduino based pulse width modulated output voltage control of a dc-dc boost converter using Proportional,

More information

Laboratory Assignment Number 3 for Mech 143. Pre-Lab: Part 1 Interfacing to a DC Motor and Potentiometer

Laboratory Assignment Number 3 for Mech 143. Pre-Lab: Part 1 Interfacing to a DC Motor and Potentiometer Purpose: Minimum Parts Required: Laboratory Assignment Number 3 for Mech 143 Due by 5:00 pm on Thursday, February 11, 1999 Pre-Lab Due by 5:00pm on Tuesday, February 9, 1999 This lab is intended to acquaint

More information

Introduction. Theory of Operation

Introduction. Theory of Operation Mohan Rokkam Page 1 12/15/2004 Introduction The goal of our project is to design and build an automated shopping cart that follows a shopper around. Ultrasonic waves are used due to the slower speed of

More information

Ultimate Actuator Drivebox 30A Quick start guide

Ultimate Actuator Drivebox 30A Quick start guide 2016 Ultimate Actuator Drivebox 30A Quick start guide info@e-tronix.cz e-tronix s.r.o. 1.1.2016 OBSAH Identification... 3 Serial Number... 3 Manufacturer and reseller contact... 4 Before Start... 4 UAD30A

More information

Energy Efficiency for Secured Smart Village using IoT

Energy Efficiency for Secured Smart Village using IoT Energy Efficiency for Secured Smart Village using IoT S.P. Angelin Claret 1 1 Asst. Prof, Department of Computer Science, SRM Institute of Science & Technology, Chennai. Abstract: This paper is all about

More information

Practical Assignment 1: Arduino interface with Simulink

Practical Assignment 1: Arduino interface with Simulink !! Department of Electrical Engineering Indian Institute of Technology Dharwad EE 303: Control Systems Practical Assignment - 1 Adapted from Take Home Labs, Oklahoma State University Practical Assignment

More information

TWEAK THE ARDUINO LOGO

TWEAK THE ARDUINO LOGO TWEAK THE ARDUINO LOGO Using serial communication, you'll use your Arduino to control a program on your computer Discover : serial communication with a computer program, Processing Time : 45 minutes Level

More information

The Metal-Oxide-Semiconductor Field-Effect Transistor (MOSFET)

The Metal-Oxide-Semiconductor Field-Effect Transistor (MOSFET) The Metal-Oxide-Semiconductor Field-Effect Transistor (MOSFET) Introduction Recall that in Lab 3 we studied the current versus voltage properties of a forward biased diode. The diode consisted of a PN

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

ArduCAM USB Camera Shield

ArduCAM USB Camera Shield ArduCAM USB Camera Shield Application Note for MT9J001 Rev 1.0, Aug 2017 Table of Contents 1 Introduction... 2 2 Hardware Installation... 2 3 Run the Demo... 3 4 Tune the Sensor Registers... 4 4.1 Identify

More information

Arduino Setup & Flexing the ExBow

Arduino Setup & Flexing the ExBow Arduino Setup & Flexing the ExBow What is Arduino? Before we begin, We must first download the Arduino and Ardublock software. For our Set-up we will be using Arduino. Arduino is an electronics platform.

More information

ies-2309 Integrated Easy Servo

ies-2309 Integrated Easy Servo Datasheet of the integrated easy servo motor ies-09 ies-09 Integrated Easy Servo Motor + Drive + Encoder, 0-0VDC, NEMA, 0.9Nm Features Easy servo control technology to combine advantages of open-loop stepper

More information

TLE9879 EvalKit V1.2 Users Manual

TLE9879 EvalKit V1.2 Users Manual TLE9879 EvalKit V1.2 Users Manual Contents Abbreviations... 3 1 Concept... 4 2 Interconnects... 5 3 Test Points... 6 4 Jumper Settings... 7 5 Communication Interfaces... 8 5.1 LIN (via Banana jack and

More information

Hardware Platforms and Sensors

Hardware Platforms and Sensors Hardware Platforms and Sensors Tom Spink Including material adapted from Bjoern Franke and Michael O Boyle Hardware Platform A hardware platform describes the physical components that go to make up a particular

More information

1 Introduction. 2 Embedded Electronics Primer. 2.1 The Arduino

1 Introduction. 2 Embedded Electronics Primer. 2.1 The Arduino Beginning Embedded Electronics for Botballers Using the Arduino Matthew Thompson Allen D. Nease High School matthewbot@gmail.com 1 Introduction Robotics is a unique and multidisciplinary field, where successful

More information

Advanced Mechatronics 1 st Mini Project. Remote Control Car. Jose Antonio De Gracia Gómez, Amartya Barua March, 25 th 2014

Advanced Mechatronics 1 st Mini Project. Remote Control Car. Jose Antonio De Gracia Gómez, Amartya Barua March, 25 th 2014 Advanced Mechatronics 1 st Mini Project Remote Control Car Jose Antonio De Gracia Gómez, Amartya Barua March, 25 th 2014 Remote Control Car Manual Control with the remote and direction buttons Automatic

More information

Arduino

Arduino Arduino Class Kit Contents A Word on Safety Electronics can hurt you Lead in some of the parts Wash up afterwards You can hurt electronics Static-sensitive: don t shuffle your feet & touch Wires only

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

Milli Developer Kit Reference Application Published on Silver Spring Networks STAGE (

Milli Developer Kit Reference Application Published on Silver Spring Networks STAGE ( Milli Developer Kit Example Application PART 1 Example CoAP Server Sensor Implementation With The Milli Dev Kit Get the Milli Developer Kit Temperature Sensor Reference Application on GitHub [1] This reference

More information

Teaching students science and engineering with high altitude balloons and ChipKits

Teaching students science and engineering with high altitude balloons and ChipKits Paper ID #10474 Teaching students science and engineering with high altitude balloons and ChipKits Mr. Matthew Nelson, Iowa State University My background and interests are in embedded systems and radio

More information

Application Note AN 157: Arduino UART Interface to TelAire T6613 CO2 Sensor

Application Note AN 157: Arduino UART Interface to TelAire T6613 CO2 Sensor Application Note AN 157: Arduino UART Interface to TelAire T6613 CO2 Sensor Introduction The Arduino UNO, Mega and Mega 2560 are ideal microcontrollers for reading CO2 sensors. Arduino boards are useful

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

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Ahmed Okasha, Assistant Lecturer okasha1st@gmail.com Objective Have a

More information

Pololu Jrk USB Motor Controller

Pololu Jrk USB Motor Controller Pololu Jrk USB Motor Controller User's Guide 1. Overview.................................................... 2 1.a. Module Pinout and Components.................................... 4 1.b. Supported Operating

More information

AN ARDUINO CONTROLLED CHAOTIC PENDULUM FOR A REMOTE PHYSICS LABORATORY

AN ARDUINO CONTROLLED CHAOTIC PENDULUM FOR A REMOTE PHYSICS LABORATORY AN ARDUINO CONTROLLED CHAOTIC PENDULUM FOR A REMOTE PHYSICS LABORATORY J. C. Álvarez, J. Lamas, A. J. López, A. Ramil Universidade da Coruña (SPAIN) carlos.alvarez@udc.es, jlamas@udc.es, ana.xesus.lopez@udc.es,

More information

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

Electronics Design Laboratory Lecture #9. ECEN 2270 Electronics Design Laboratory Electronics Design Laboratory Lecture #9 Electronics Design Laboratory 1 Notes Finishing Lab 4 this week Demo requires position control using interrupts and two actions Rotate a given angle Move forward

More information

ArduCAM USB Camera Shield

ArduCAM USB Camera Shield ArduCAM USB Camera Shield Application Note for MT9V034 Rev 1.0, June 2017 Table of Contents 1 Introduction... 2 2 Hardware Installation... 2 3 Run the Demo... 3 4 Tune the Sensor Registers... 4 4.1 Identify

More information

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE LABORATORY 7: IR SENSORS AND DISTANCE DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOAL: This section will introduce

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 2, February -2016 e-issn (O): 2348-4470 p-issn (P): 2348-6406 SIMULATION

More information

Preliminary Design Report. Project Title: Search and Destroy

Preliminary Design Report. Project Title: Search and Destroy EEL 494 Electrical Engineering Design (Senior Design) Preliminary Design Report 9 April 0 Project Title: Search and Destroy Team Member: Name: Robert Bethea Email: bbethea88@ufl.edu Project Abstract Name:

More information

ISSN: [Singh* et al., 6(6): June, 2017] Impact Factor: 4.116

ISSN: [Singh* et al., 6(6): June, 2017] Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY WORKING, OPERATION AND TYPES OF ARDUINO MICROCONTROLLER Bhupender Singh, Manisha Verma Assistant Professor, Electrical Department,

More information

Experiment 9 : Pulse Width Modulation

Experiment 9 : Pulse Width Modulation Name/NetID: Experiment 9 : Pulse Width Modulation Laboratory Outline In experiment 5 we learned how to control the speed of a DC motor using a variable resistor. This week, we will learn an alternative

More information

Arduino Lesson 1. Blink. Created by Simon Monk

Arduino Lesson 1. Blink. Created by Simon Monk Arduino Lesson 1. Blink Created by Simon Monk Guide Contents Guide Contents Overview Parts Part Qty The 'L' LED Loading the 'Blink' Example Saving a Copy of 'Blink' Uploading Blink to the Board How 'Blink'

More information

BOAT LOCALIZATION AND WARNING SYSTEM FOR BORDER IDENTIFICATION

BOAT LOCALIZATION AND WARNING SYSTEM FOR BORDER IDENTIFICATION BOAT LOCALIZATION AND WARNING SYSTEM FOR BORDER IDENTIFICATION Mr.Vasudevan, Ms.Aarthi.C, Ms.Arunthathi.M, Ms.Durgakalaimathi.L.T, Ms.Evangelin Darvia.P 1Professor, Dept. of ECE, Panimalar Engineering

More information

BARALE RENU Electrical Department, Sanjeevan Engineering Institute and Technology, Panhala, Kolhapur. India.

BARALE RENU Electrical Department, Sanjeevan Engineering Institute and Technology, Panhala, Kolhapur. India. SPEED CONTROL OF UNIVERSAL MOTOR USING SNIVERSAL BRIDGE MR. P. P. KULKARNI BARALE RENU POTE TEJASHREE SUTAR KOMAL POWAR VAISHALI ABSTRACT Speed control of AC and DC motor is carried out by using universal

More information

APDS-9960 RGB and Gesture Sensor Hookup Guide

APDS-9960 RGB and Gesture Sensor Hookup Guide Page 1 of 12 APDS-9960 RGB and Gesture Sensor Hookup Guide Introduction Touchless gestures are the new frontier in the world of human-machine interfaces. By swiping your hand over a sensor, you can control

More information

SC16A SERVO CONTROLLER

SC16A SERVO CONTROLLER SC16A SERVO CONTROLLER User s Manual V2.0 September 2008 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded by

More information

ISSN (Online)

ISSN (Online) International Journal of Engineering Research in Electrical and Electronic Design and Implementation of Robot Arm Control Based on Matlab with Arduino Interface [1] T.Rajesh, [2] M. Karthik Reddy, [3]

More information

CURIE Academy, Summer 2014 Lab 2: Computer Engineering Software Perspective Sign-Off Sheet

CURIE Academy, Summer 2014 Lab 2: Computer Engineering Software Perspective Sign-Off Sheet Lab : Computer Engineering Software Perspective Sign-Off Sheet NAME: NAME: DATE: Sign-Off Milestone TA Initials Part 1.A Part 1.B Part.A Part.B Part.C Part 3.A Part 3.B Part 3.C Test Simple Addition Program

More information

Sensors and Sensing Motors, Encoders and Motor Control

Sensors and Sensing Motors, Encoders and Motor Control Sensors and Sensing Motors, Encoders and Motor Control Todor Stoyanov Mobile Robotics and Olfaction Lab Center for Applied Autonomous Sensor Systems Örebro University, Sweden todor.stoyanov@oru.se 05.11.2015

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

SilverMax Datasheet. QuickSilver Controls, Inc. NEMA 23 Servomotors.

SilverMax Datasheet. QuickSilver Controls, Inc. NEMA 23 Servomotors. SilverMax Datasheet NEMA 23 Servomotors QuickSilver Controls, Inc. www.quicksilvercontrols.com SilverMax Datasheet - NEMA 23 Servomotors 23 Frame Sizes: 23-3, 23-5, 23H-1, 23H-3, 23H-5 / Series: E, E3,

More information