NAMASKAR ROBOT-WHICH PROVIDES SERVICE

Size: px
Start display at page:

Download "NAMASKAR ROBOT-WHICH PROVIDES SERVICE"

Transcription

1

2 Int. J. Elec&Electr.Eng&Telecoms V Sai Krishna and R Sunitha, 2014 Research Paper ISSN Vol. 3, No. 1, January IJEETC. All Rights Reserved NAMASKAR ROBOT-WHICH PROVIDES SERVICE R Sunitha 1 and V Sai Krishna 1 * *Corresponding Author: V Sai Krishna, speak2sainow@gmail.com This paper introduces a service robot which performs the repetitive task of welcoming people graciously both by a sweet recorded message and hand gesture representing Namaste an Indian traditional method wishing of people Most commonly we observe people dressed in the getups of Mickey mouse, Donald duck, Teddy bear, etc., near schools, colleges, offices, in parties and marriages, etc. Here the people wear only dress and performs the task of wishing unknown people mechanically which is really a mind-numbing task. In this paper we designed a service robot that acts as a host in receiving people and performs the same task for hours without getting weary. This is a low cost flexible robot which can be designed and constructed without difficulty. Keywords: Ping sensor, Arduino, Servos, Relays INTRODUCTION A robot is a mechanical or virtual agent, usually an electro-mechanical machine that is guided by computer program or electronic circuitry. Robots have replaced humans in the assistance of performing those repetitive and dangerous tasks which humans prefer not to do, or are unable to do due to size limitations, or even those such as in outer space or at the bottom of the sea where humans could not survive the extreme environments. Modern robots are classified into different categories such as mobile robots, Commercial or industrial robots, cobots or service robots based on their performance features ( en.wikipedia.org/wiki/cobot). In this project we built a service robot which performs the repetitive task of welcoming people both by recorded voice message and by hand movement representing Namaste in its vicinity. Usually when we invite people to home, office, marriage functions or parties, etc., we need to assign a person to receive them and greet at the entrance. If this greeting is to a limited amount of people then the task appears simpler. But if it is to greet hundreds or thousands of people, then the task appears complex and boring because the person has 1 Department of ECE, N.R.I Institute of Technology, J.N.T University, Kakinada, India. 52

3 to wait for hours and repeat the same process of wishing with affection and enthusiasm carrying a broad smile. Hence we tried to simplify the complexity by developing a robot which could stand at the entrance and wish each and every person within its vicinity. The idea of a robot greeting them in an Indian traditional style, along with a hand gesture NAMASKAR appeals to people. The style can be changed by making minimum changes in the program based upon the country. It does not get tired or bored and hence can perform its duty for longer hours. Children attending the function also will be more eager and excited at such reception. W e present our exploration of the emotional impact that abstract mechanical or robot motion has on Human-Robot Interaction (HRI). We discuss our design approach and motion planning as a process of detailing a task into discrete motions. We detail our results and explain how different styles of robot motion were mapped to emotional responses in human observers. We believe that our findings can inform and provide important insight into the purposeful use of motion as a design tool in social human-robot interaction. BLOCK DIAGRAM OF ROBOT Figure 1 represents the block diagram of the Namaste robot with voice commands programmed. Module and development board are connected to the common power supply as shown in the above block diagram. The description of each block is as follows: Power Source A common power supply provides to all the required modules. The modules require an operating voltage of 5-volts and current in milliamps. Sensor The ping sensor is an ultrasonic sensor which uses SONAR to determine the distance of an object in its vicinity. This sensor is used as eyes to the robot to detect an obstacle. Ex: proximity sensor ( wiki/proximity_sensor) Voice Playback IC This voice playback IC provides the prerecorded message that plays at predefined frequency rate. The playback is transferred to the audio amplification unit. Relay Figure 1: Block Diagram of Robot A relay is an electrically operated switch. Current flowing through the coil of the relay creates a magnetic field which attracts a lever and changes the switch contacts. Microcontroller A microcontroller is a single integrated chip that contains the processor and non-volatile memory internally present in it. 53

4 MICROCONTROLLER BASED ON ARDUINO Arduino: Arduino is a tool for making computers that can sense and control more of the physical world than desktop computer. It is an open-source physical computing platform based on a simple microcontroller board. There are many other microcontrollers and microcontroller platforms available for physical computing. Two vital features of the arduino: 1. Inexpensive Arduino boards are relatively inexpensive compared to other microcontroller platforms. 2. Open source and extensible software The Arduino software is published as open source tools. The language can be expanded through C++ libraries, and people wanting to understand the technical details can make the leap from Arduino to the AVR C programming language on which it s based. Figure 2: Front View of the Arduino Board Source: Technical Specifications of Arduino Board Microcontroller - ATmega328 Operating voltage - 5V Maximum input voltage V Digital I/O Pins 14 Analog Input Pins 6 DC Current per I/O Pin - 40 ma DC Current for 3.3V Pin - 50 ma Flash Memory - 32 KB Arduino Code Definitions Setup( ) A function present in every Arduino sketch. Run once before the loop( ) function. If is often used to set pinmode to input or output. The setup( ) function looks like: void setup( ) { //code goes here } Loop( ) A function present in every single Arduino sketch. This code happens over and over again. The loop( ) is where (almost) everything happens. The one exception to this is setup( ) and variable declaration. void loop( ) { //code goes here } Input: A pin mode that intakes information. Output: A pin mode that sends information. 54

5 High: Electrical signal present (5V Uno). Also ON Low: No electrical signal present (0V). Also OFF or False in Boolean logic. Digital Write: Assign a HIGH or LOW value to a pin already declared as an output. PWM: PW M stands for Pulse-W idth Modulation, a method of emulating an analog signal through a digital pin having value from 0 and 255. Used with analog Write. INTERFACING THE PING SENSOR WITH ARDUINO Working of a Ping Sensor Figure 3 represents the working principle of a ping sensor. The HC-SR04 ultrasonic sensor uses sonar to determine distance to an object. It offers excellent range accuracy and stable readings in an easy-to-use package. Its operation is not affected by sunlight or black material like Sharp rangefinders are (although acoustically soft materials like cloth can be difficult to detect). Figure 3: Working Principle of Ping Sensor IO trigger for at least 5 µs sequence of high level signal. The module sends eight 40 khz square waves and in return detects if it is receiving any pulse signal, i.e., the echo signal. If the signal is back through high level, time of high output IO duration is the time from sending ultrasonic to returning. Test distance = (high level time velocity of sound/2 = (340 M/S)/2). Specifications for Ping Sensor Working voltage Current 5V(DC) 15 ma Sensor angle Not> = 15 Detection Distance 2 cm~450 cm. Pin Connections from HCSR04 Ping Sensor to Arduino For interfacing the ping sensor to the Arduino board there are 4 pins present in the Arduino board they are V CC, GROUND, TRIGGER and ECHO. The pins 12 and 13 are the I/O pins that are present on the Arduino Uno board, i.e. (D-0, D-13). Figure 4: Connections from Ping Sensor to Arduino Board Source: Ultra_Sonic_range_measurement_module A ping sensor uses high frequency sound to accurately measure distance. This high frequency sound signal is supplied through an 55

6 Code to Test the Working of the Ping Ultra-Ultrasonic Sensor #define echopin 13 // Echo Pin #define trigpin 3 // Trigger Pin #define LEDPin 13 // Onboard LED //header files declarations. int maximumrange = 200; // Max range needed int minimumrange = 0; // Minimum range needed long duration, distance; // Duration used to calculate //giving the data type inputs. distance void setup() { Serial.begin (9600); pinmode(trigpin, OUTPUT); pinmode(echopin, INPUT); pinmode(ledpin, OUTPUT); // Use LED indicator } void loop() { /* The following trigpin/echopin cycle is used to determine the distance of the nearest object by bouncing soundwaves off of it. */ digitalwrite(trigpin, LOW); delaymicroseconds(2); digitalwrite(trigpin, HIGH); delaymicroseconds(10); digitalwrite(trigpin, LOW); duration = pulsein(echopin, HIGH); //Calculate the distance (in cm) based on the speed of sound. distance = duration/58.2; if (distance >= maximumrange distance <= minimumrange) { /* Send a negative number to computer and Turn LED ON to indicate out of range */ Serial.println( -1 ); digitalwrite(ledpin, HIGH); } Else { /* Send the distance to the computer using Serial protocol, and turn LED OFF to indicate successful reading. */ Serial.println(distance); digitalwrite(ledpin, LOW); } //Delay 50ms before next reading. delay(50); } In this paper, we used the ping sensor to act as eyes to the robot. The robot will detect the presence of the obstacle and generates an echo signal. This signal is sent to the Arduino development board via I/O port. In the above code, the LED turns ON for the time delay when the robot senses any obstacle 56

7 within 200 cm of distance. The distance from sensor to obstacle is measured and displayed on serial monitor on the Arduino software. The measured distance is sent to the computer using Serial protocol, and the LED is turned OFF to indicate successful reading. The delay of 50msec is present for the next object to be sensed. If there are no obstacles or if the obstacles are not within the vicinity of the robot, then the LED is switched OFF and it remains immobile. INTERFACING THE SERVOS WITH AURDINO Servo motors are dc motors with a servo mechanism that lets us control the precise position of the Shaft. There are many types of Servo Motors available depending upon type of application. They are used in areas requiring position control. In this paper we used RC Servo Motors or the type of Servo motors used in Robotics/Radio Control Projects. A Servo motor constitutes of 4 parts a DC motor, a Gear system, A Potentiometer (for sensing feedback) and a Control Circuit. Here the Control Circuit and the Potentiometer together form the Servo Mechanism as shown in Figure 5. Working of Servo Motor The Control Circuitry on the Servo motor drives the DC motor based on input signals it receives. The output shaft of the DC motor is connected to the gear assembly. The gear assembly moves the potentiometer when it rotates. The Control Circuitry gets feedback from this potentiometer and spins the DC motor to obtain a desired angle between 0 and 180. Figure 6: Internal Working of a Servo Motor Source: servos_with_arduino_psu_2011_slides.pdf Figure 7: Square Pulses to Motor Figure 5: Parts of a Servo Motor 57 Controlling Servo Motors To Control a servo we need to apply a pulse once every 20 milliseconds. The duration of this pulse will determine the Servo Angle. For most Servo s a Pulse duration of 1 ms will set the shaft position to 0 and a pulse

8 duration of 2 milliseconds will set the shaft position to 180. Controlling Servos with an Arduino Arduino provides us with a servo control library that lets us control servos with ease. In this paper we used five servos to control the movements of the robot, i.e., head, right shoulder, right elbow, left shoulder and left elbow. Here the digital I/O pins D5, D6, D9, D10, D11 pins represents in the Arduino board connected to servos. Table 1: Servo Pins to Arduino Board Servo 1 D6 Head rotation Servo 2 D5 Left elbow Servo 3 D11 Right elbow Servo 4 D9 Left shoulder Servo 5 D1 Right shoulder Figure 8: Pin Connections from Arduino to Servos SIMULATION SCENARIO In this section the working of the robot is represented in a step wise manner along with the simulated results. Figure 9 shows that the robot is in initial state, i.e., the servos 2, 3, 4, 5 of the robot are in 0 state or OFF state. The head of the robot rotates from centre to left and then to right and back to centre due to rotation of Servo 1 from 0 to 180. The movement of the head indicates that the robot is searching for an obstacle. When any obstacle is sensed by the Ping sensor which acts like eyes of robot, the head position returns to the centre and Servo 1 remains at 90 angle and turns OFF and is operated in LOW state as shown in Figure 9. Figure 9: Initial Position of Robot 58

9 Once the Servo 1 turns OFF, the Servos 4 and 5 turns ON and switches to HIGH state, i.e., the signal line is activated for the left and right shoulders of the robot. Now the hands of robot can make movement upwards. The shoulder servos are connected to the Arduino Digital I/O pins (D9, D10). For these pins the signal line is high and the position of the servo is changed by an angle of 90 as shown in the Figure 10. Now the Servos 4 and 5 turns OFF. Figure 11: 3 rd Position of Robot Figure 10: 2 nd Position of Robot Once the Servos 4 and 5 turn OFF, the signal line of Servos 2 and 3 turns ON and provides movement of elbows to the robot. In order to move the elbow gracefully a time delay of 15 µs is provided for both the servos. If there is no time delay then the movement will be very fast and will appear n an odd manner. This robot now represent the Namaste position after the 90 of high motion from the shoulders then the action of 45 from elbow movement. Here in the Namaste position there is a delay of 3 seconds is applied in that position. The digital pins that are used for the movement are (D5, D11, D9, D10) are at low state. At all these cases the position of the head is in 90 and basically in the OFF state. All these actions depend upon the signal line that comes from the Arduino Uno board. Again the 4 th position is matched with the 2 nd position that is the after the 3 seconds of delay from the Namaste position it is back to the 2 nd position as observed. The 45 of operation is performed. This robot now represent the Namaste position after the 90 of high motion from the shoulders then the action of 45 from elbow movement. Here in the Namaste position there is a delay of 3 seconds is applied in that position. The digital pins that are used for the 59

10 movement are (D5, D11, D9, D10) are at low state. At all these cases the position of the head is in 90 and basically in the OFF state. All these actions depend upon the signal line that comes from the Arduino Uno board. Figure 13: 5 th Position of Robot Again the 4 th position is matched with the 2 nd position that is the after the 3 seconds of delay from the Namaste position it is back to the 2 nd position as observed. The 45 of operation is performed. This is the final view that is observed all the servo lines are set to zero (D5, D11, D10, D9) are down to OFF state. And the D6 digital pin is HIGH that which is used for the head rotation is performed and the PING again starts searching for the obstacle panning from left to right. Figure 12: 4 th Position of Robot 60 CONCLUSION The main aim of this paper was to construct a Namaskar robot which provides the service of welcoming people graciously. We have constructed a model robot which can sense people walking before it within its vicinity and welcome them courteously. Different messages can be saved according to the requirement of the customer. This is a low cost service robot which can be designed and used in public places, functions, parties etc which attracts a lot of attention from kids as well as adults. In order to develop this robot we used different software. For designing the circuit we used PCB wizard and Photoshop software. All the figures were drawn using Photoshop software. The code is transferred into the ATMEGA328 MC Arduino Software is used.

11 FUTURE SCOPE So far this robot is stationary. By implementing the Biped mechanism to this project the robot can walk as the human. Now it identifies not only humans but also any obstacle within its vicinity. Hence this can further be improved by using digital image processing techniques to identify only humans. BIBLIOGRAPHY h t t p : / / e n. w i k i p e d i a. o r g / w i k i / Proximity_sensor 3. h t t p : / / a r d u i n o. c c / e n / M a i n / ArduinoBoardUno Ultra_Sonic_range_measurement_module 6. datasheet-sen136b5b.pdf 7. EAS199A/notes/10/servos_with_ Arduino_PSU_2011_slides.pdf 8. adafruit-arduino-lesson-14-servomotors.pdf 61

12

A Model Based Approach for Human Recognition and Reception by Robot

A Model Based Approach for Human Recognition and Reception by Robot 16 MHz ARDUINO A Model Based Approach for Human Recognition and Reception by Robot Prof. R. Sunitha Department Of ECE, N.R.I Institute Of Technology, J.N.T University, Kakinada, India. V. Sai Krishna,

More information

ARDUINO BASED GREETING CONTROLLED ROBOT

ARDUINO BASED GREETING CONTROLLED ROBOT ARDUINO BASED GREETING CONTROLLED ROBOT 1 Patil Tushar R, 2 Goad Prashant M., 3 Patil Jagdish B, 4 Bari Jayesh P 1,3,4 Students, 2 Professor Abstract: This paper introduces a service robot which performs

More information

Introduction: Components used:

Introduction: Components used: Introduction: As, this robotic arm is automatic in a way that it can decides where to move and when to move, therefore it works in a closed loop system where sensor detects if there is any object in a

More information

About Arduino: About keyestudio:

About Arduino: About keyestudio: About Arduino: Arduino is an open-source hardware project platform. This platform includes a circuit board with simple I/O function and program development environment software. It can be used to develop

More information

Arduino and Servo Motor

Arduino and Servo Motor Arduino and Servo Motor 1. Basics of the Arduino Board and Arduino a. Arduino is a mini computer that can input and output data using the digital and analog pins b. Arduino Shield: mounts on top of Arduino

More information

Marine Debris Cleaner Phase 1 Navigation

Marine Debris Cleaner Phase 1 Navigation Southeastern Louisiana University Marine Debris Cleaner Phase 1 Navigation Submitted as partial fulfillment for the senior design project By Ryan Fabre & Brock Dickinson ET 494 Advisor: Dr. Ahmad Fayed

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

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

Distance Measurement of an Object by using Ultrasonic Sensors with Arduino and GSM Module

Distance Measurement of an Object by using Ultrasonic Sensors with Arduino and GSM Module IJSTE - International Journal of Science Technology & Engineering Volume 4 Issue 11 May 2018 ISSN (online): 2349-784X Distance Measurement of an Object by using Ultrasonic Sensors with Arduino and GSM

More information

Automobile Prototype Servo Control

Automobile Prototype Servo Control IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 Automobile Prototype Servo Control Mr. Linford William Fernandes Don Bosco

More information

SCHOOL OF TECHNOLOGY AND PUBLIC MANAGEMENT ENGINEERING TECHNOLOGY DEPARTMENT

SCHOOL OF TECHNOLOGY AND PUBLIC MANAGEMENT ENGINEERING TECHNOLOGY DEPARTMENT SCHOOL OF TECHNOLOGY AND PUBLIC MANAGEMENT ENGINEERING TECHNOLOGY DEPARTMENT Course ENGT 3260 Microcontrollers Summer III 2015 Instructor: Dr. Maged Mikhail Project Report Submitted By: Nicole Kirch 7/10/2015

More information

PROJECT BAT-EYE. Developing an Economic System that can give a Blind Person Basic Spatial Awareness and Object Identification.

PROJECT BAT-EYE. Developing an Economic System that can give a Blind Person Basic Spatial Awareness and Object Identification. PROJECT BAT-EYE Developing an Economic System that can give a Blind Person Basic Spatial Awareness and Object Identification. Debargha Ganguly royal.debargha@gmail.com ABSTRACT- Project BATEYE fundamentally

More information

Lecture 6. Interfacing Digital and Analog Devices to Arduino. Intro to Arduino

Lecture 6. Interfacing Digital and Analog Devices to Arduino. Intro to Arduino Lecture 6 Interfacing Digital and Analog Devices to Arduino. Intro to Arduino PWR IN USB (to Computer) RESET SCL\SDA (I2C Bus) POWER 5V / 3.3V / GND Analog INPUTS Digital I\O PWM(3, 5, 6, 9, 10, 11) Components

More information

Available online Journal of Scientific and Engineering Research, 2018, 5(4): Research Article

Available online   Journal of Scientific and Engineering Research, 2018, 5(4): Research Article Available online www.jsaer.com, 2018, 5(4):341-349 Research Article ISSN: 2394-2630 CODEN(USA): JSERBR Arduino Based door Automation System Using Ultrasonic Sensor and Servo Motor Orji EZ*, Oleka CV, Nduanya

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

Lab 5: Arduino Uno Microcontroller Innovation Fellows Program Bootcamp Prof. Steven S. Saliterman

Lab 5: Arduino Uno Microcontroller Innovation Fellows Program Bootcamp Prof. Steven S. Saliterman Lab 5: Arduino Uno Microcontroller Innovation Fellows Program Bootcamp Prof. Steven S. Saliterman Exercise 5-1: Familiarization with Lab Box Contents Objective: To review the items required for working

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

Performance Analysis of Ultrasonic Mapping Device and Radar

Performance Analysis of Ultrasonic Mapping Device and Radar Volume 118 No. 17 2018, 987-997 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Performance Analysis of Ultrasonic Mapping Device and Radar Abhishek

More information

Sensor and. Motor Control Lab. Abhishek Bhatia. Individual Lab Report #1

Sensor and. Motor Control Lab. Abhishek Bhatia. Individual Lab Report #1 Sensor and 10/16/2015 Motor Control Lab Individual Lab Report #1 Abhishek Bhatia Team D: Team HARP (Human Assistive Robotic Picker) Teammates: Alex Brinkman, Feroze Naina, Lekha Mohan, Rick Shanor I. Individual

More information

Assignments from last week

Assignments from last week Assignments from last week Review LED flasher kits Review protoshields Need more soldering practice (see below)? http://www.allelectronics.com/make-a-store/category/305/kits/1.html http://www.mpja.com/departments.asp?dept=61

More information

Computational Crafting with Arduino. Christopher Michaud Marist School ECEP Programs, Georgia Tech

Computational Crafting with Arduino. Christopher Michaud Marist School ECEP Programs, Georgia Tech Computational Crafting with Arduino Christopher Michaud Marist School ECEP Programs, Georgia Tech Introduction What do you want to learn and do today? Goals with Arduino / Computational Crafting Purpose

More information

Robotic Arm Assembly Instructions

Robotic Arm Assembly Instructions Robotic Arm Assembly Instructions Last Revised: 11 January 2017 Part A: First follow the instructions: http://www.robotshop.com/media/files/zip2/rbmea-02_-_documentation_1.zip While assembling the servos:

More information

Lesson4 Obstacle avoidance car

Lesson4 Obstacle avoidance car Lesson4 Obstacle avoidance car 1 Points of this section The joy of learning, is not just know how to control your car, but also know how to protect your car. So, make you car far away from collision. Learning

More information

Sten-Bot Robot Kit Stensat Group LLC, Copyright 2013

Sten-Bot Robot Kit Stensat Group LLC, Copyright 2013 Sten-Bot Robot Kit Stensat Group LLC, Copyright 2013 Legal Stuff Stensat Group LLC assumes no responsibility and/or liability for the use of the kit and documentation. There is a 90 day warranty for the

More information

Embedded Controls Final Project. Tom Hall EE /07/2011

Embedded Controls Final Project. Tom Hall EE /07/2011 Embedded Controls Final Project Tom Hall EE 554 12/07/2011 Introduction: The given task was to design a system that: -Uses at least one actuator and one sensor -Determine a controlled variable and suitable

More information

Lesson 13. The Big Idea: Lesson 13: Infrared Transmitters

Lesson 13. The Big Idea: Lesson 13: Infrared Transmitters Lesson Lesson : Infrared Transmitters The Big Idea: In Lesson 12 the ability to detect infrared radiation modulated at 38,000 Hertz was added to the Arduino. This lesson brings the ability to generate

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

Keywords - Arduino Uno, Ultrasonic Sensor, DC-DC Boost Convertor, Wireless Charging Pad, Piezo Buzzer

Keywords - Arduino Uno, Ultrasonic Sensor, DC-DC Boost Convertor, Wireless Charging Pad, Piezo Buzzer DESIGN OF ARDUINO BASED SHOE FOR BLIND WITH WIRELESS CHARGING 1 MOHAMMAD HASSAN, 2 MD.ATIQUR RAHMAN, 3 SHAKEB ALAM Electrical Electronics Engineering, Maulana Azad College of Engineering and Technology.

More information

Arduino. AS220 Workshop. Part II Interactive Design with advanced Transducers Lutz Hamel

Arduino. AS220 Workshop. Part II Interactive Design with advanced Transducers Lutz Hamel AS220 Workshop Part II Interactive Design with advanced Transducers Lutz Hamel hamel@cs.uri.edu www.cs.uri.edu/~hamel/as220 How we see the computer Image source: Considering the Body, Kate Hartman, 2008.

More information

Programming 2 Servos. Learn to connect and write code to control two servos.

Programming 2 Servos. Learn to connect and write code to control two servos. Programming 2 Servos Learn to connect and write code to control two servos. Many students who visit the lab and learn how to use a Servo want to use 2 Servos in their project rather than just 1. This lesson

More information

Hardware Implementation of an Explorer Bot Using XBEE & GSM Technology

Hardware Implementation of an Explorer Bot Using XBEE & GSM Technology Volume 118 No. 20 2018, 4337-4342 ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Hardware Implementation of an Explorer Bot Using XBEE & GSM Technology M. V. Sai Srinivas, K. Yeswanth,

More information

Safe Landing of Autonomous Amphibious Unmanned Aerial Vehicle on Water

Safe Landing of Autonomous Amphibious Unmanned Aerial Vehicle on Water Safe Landing of Autonomous Amphibious Unmanned Aerial Vehicle on Water Pandya Garvit Kalpesh 1, Dr. Balasubramanian E. 2, Parvez Alam 3, Sabarish C. 4 1M.Tech Student, Vel Tech Dr. RR & Dr. SR University,

More information

DC motor control using arduino

DC motor control using arduino DC motor control using arduino 1) Introduction: First we need to differentiate between DC motor and DC generator and where we can use it in this experiment. What is the main different between the DC-motor,

More information

Basics before Migtrating to Arduino

Basics before Migtrating to Arduino Basics before Migtrating to Arduino Who is this for? Written by Storming Robots Last update: Oct 11 th, 2013 This document is meant for preparing students who have already good amount of programming knowledge,

More information

Measuring Distance Using Sound

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

More information

Setup Download the Arduino library (link) for Processing and the Lab 12 sketches (link).

Setup Download the Arduino library (link) for Processing and the Lab 12 sketches (link). Lab 12 Connecting Processing and Arduino Overview In the previous lab we have examined how to connect various sensors to the Arduino using Scratch. While Scratch enables us to make simple Arduino programs,

More information

Mechatronics Laboratory Assignment 3 Introduction to I/O with the F28335 Motor Control Processor

Mechatronics Laboratory Assignment 3 Introduction to I/O with the F28335 Motor Control Processor Mechatronics Laboratory Assignment 3 Introduction to I/O with the F28335 Motor Control Processor Recommended Due Date: By your lab time the week of February 12 th Possible Points: If checked off before

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

Understanding the Arduino to LabVIEW Interface

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

More information

MICROCONTROLLERS BASIC INPUTS and OUTPUTS (I/O)

MICROCONTROLLERS BASIC INPUTS and OUTPUTS (I/O) PH-315 Portland State University MICROCONTROLLERS BASIC INPUTS and OUTPUTS (I/O) ABSTRACT A microcontroller is an integrated circuit containing a processor and programmable read-only memory, 1 which is

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

Over Speed Vehicle Marking System Using Arduino UNO Controlled Air Cannon

Over Speed Vehicle Marking System Using Arduino UNO Controlled Air Cannon Over Speed Vehicle Marking System Using Arduino UNO Controlled Air Cannon Vasanth B, Sreenivasan S, Mathanesh V.R Sri Krishna College Of Engineering and Technology ABSTRACT: Though we have speed limit

More information

IMPLEMENTATION OF AUTOMATIC COLLEGE BELL SYSTEM USING ARDUINO

IMPLEMENTATION OF AUTOMATIC COLLEGE BELL SYSTEM USING ARDUINO IMPLEMENTATION OF AUTOMATIC COLLEGE BELL SYSTEM USING ARDUINO Burgoji Santhosh Kumar Assistant Professor, Dept Of ECE, Anurag Group Of Institutions, Ts, India. Abstract The main objective of this project

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

100UF CAPACITOR POTENTIOMETER SERVO MOTOR MOTOR ARM. MALE HEADER PIN (3 pins) INGREDIENTS

100UF CAPACITOR POTENTIOMETER SERVO MOTOR MOTOR ARM. MALE HEADER PIN (3 pins) INGREDIENTS 05 POTENTIOMETER SERVO MOTOR MOTOR ARM 100UF CAPACITOR MALE HEADER PIN (3 pins) INGREDIENTS 63 MOOD CUE USE A SERVO MOTOR TO MAKE A MECHANICAL GAUGE TO POINT OUT WHAT SORT OF MOOD YOU RE IN THAT DAY Discover:

More information

Floating Ball Using Fuzzy Logic Controller

Floating Ball Using Fuzzy Logic Controller Floating Ball Using Fuzzy Logic Controller Abdullah Alrashedi Ahmad Alghanim Iris Tsai Sponsored by: Dr. Ruting Jia Tareq Alduwailah Fahad Alsaqer Mohammad Alkandari Jasem Alrabeeh Abstract Floating ball

More information

Arduino Control of Tetrix Prizm Robotics. Motors and Servos Introduction to Robotics and Engineering Marist School

Arduino Control of Tetrix Prizm Robotics. Motors and Servos Introduction to Robotics and Engineering Marist School Arduino Control of Tetrix Prizm Robotics Motors and Servos Introduction to Robotics and Engineering Marist School Motor or Servo? Motor Faster revolution but less Power Tetrix 12 Volt DC motors have a

More information

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control. October 5, 2009 Dr. Harrison H. Chin

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control. October 5, 2009 Dr. Harrison H. Chin 2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control October 5, 2009 Dr. Harrison H. Chin Formal Labs 1. Microcontrollers Introduction to microcontrollers Arduino microcontroller

More information

MULTI ROBOT COMMUNICATION AND TARGET TRACKING SYSTEM AND IMPLEMENTATION OF ROBOT USING ARDUINO

MULTI ROBOT COMMUNICATION AND TARGET TRACKING SYSTEM AND IMPLEMENTATION OF ROBOT USING ARDUINO MULTI ROBOT COMMUNICATION AND TARGET TRACKING SYSTEM AND IMPLEMENTATION OF ROBOT USING ARDUINO K. Sindhuja 1, CH. Lavanya 2 1Student, Department of ECE, GIST College, Andhra Pradesh, INDIA 2Assistant Professor,

More information

Arduino Digital Out_QUICK RECAP

Arduino Digital Out_QUICK RECAP Arduino Digital Out_QUICK RECAP BLINK File> Examples>Digital>Blink int ledpin = 13; // LED connected to digital pin 13 // The setup() method runs once, when the sketch starts void setup() // initialize

More information

Learning Objectives. References 10/26/11. Using servos with an Arduino. EAS 199A Fall 2011

Learning Objectives. References 10/26/11. Using servos with an Arduino. EAS 199A Fall 2011 Using servos with an Arduino EAS 199A Fall 2011 Learning Objectives Be able to identify characteristics that distinguish a servo and a DC motor Be able to describe the difference a conventional servo and

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

SELF STABILIZING PLATFORM

SELF STABILIZING PLATFORM SELF STABILIZING PLATFORM Shalaka Turalkar 1, Omkar Padvekar 2, Nikhil Chavan 3, Pritam Sawant 4 and Project Guide: Mr Prathamesh Indulkar 5. 1,2,3,4,5 Department of Electronics and Telecommunication,

More information

Using Servos with an Arduino

Using Servos with an Arduino Using Servos with an Arduino ME 120 Mechanical and Materials Engineering Portland State University http://web.cecs.pdx.edu/~me120 Learning Objectives Be able to identify characteristics that distinguish

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

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

Intelligent Systems Design in a Non Engineering Curriculum. Embedded Systems Without Major Hardware Engineering

Intelligent Systems Design in a Non Engineering Curriculum. Embedded Systems Without Major Hardware Engineering Intelligent Systems Design in a Non Engineering Curriculum Embedded Systems Without Major Hardware Engineering Emily A. Brand Dept. of Computer Science Loyola University Chicago eabrand@gmail.com William

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

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

MICROCONTROLLERS BASIC INPUTS and OUTPUTS (I/O)

MICROCONTROLLERS BASIC INPUTS and OUTPUTS (I/O) PH-315 Portland State University MICROCONTROLLERS BASIC INPUTS and OUTPUTS (I/O) ABSTRACT A microcontroller is an integrated circuit containing a processor and programmable read-only memory, 1 which is

More information

Obstacle Avoidance Mobile Robot With Ultrasonic Sensors

Obstacle Avoidance Mobile Robot With Ultrasonic Sensors JURNAL TEKNOLOGI TERPADU Vol. 5 No. 1 April 2017 ISSN 2338-6649 Received: February 2017 Accepted: March 2017 Published: April 2017 Obstacle Avoidance Mobile Robot With Ultrasonic Sensors Qory Hidayati

More information

C++ PROGRAM FOR DRIVING OF AN AGRICOL ROBOT

C++ PROGRAM FOR DRIVING OF AN AGRICOL ROBOT Annals of the University of Petroşani, Mechanical Engineering, 14 (2012), 11-19 11 C++ PROGRAM FOR DRIVING OF AN AGRICOL ROBOT STELIAN-VALENTIN CASAVELA 1 Abstract: This robot is projected to participate

More information

Portland State University MICROCONTROLLERS

Portland State University MICROCONTROLLERS PH-315 MICROCONTROLLERS INTERRUPTS and ACCURATE TIMING I Portland State University OBJECTIVE We aim at becoming familiar with the concept of interrupt, and, through a specific example, learn how to implement

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

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

Sten BOT Robot Kit 1 Stensat Group LLC, Copyright 2016

Sten BOT Robot Kit 1 Stensat Group LLC, Copyright 2016 StenBOT Robot Kit Stensat Group LLC, Copyright 2016 1 Legal Stuff Stensat Group LLC assumes no responsibility and/or liability for the use of the kit and documentation. There is a 90 day warranty for the

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

Total Hours Registration through Website or for further details please visit (Refer Upcoming Events Section)

Total Hours Registration through Website or for further details please visit   (Refer Upcoming Events Section) Total Hours 110-150 Registration Q R Code Registration through Website or for further details please visit http://www.rknec.edu/ (Refer Upcoming Events Section) Module 1: Basics of Microprocessor & Microcontroller

More information

Written by Hans Summers Wednesday, 15 November :53 - Last Updated Wednesday, 15 November :07

Written by Hans Summers Wednesday, 15 November :53 - Last Updated Wednesday, 15 November :07 This is a phantastron divider based on the HP522 frequency counter circuit diagram. The input is a 2100Hz 15V peak-peak signal from my 2.1kHz oscillator project. Please take a look at the crystal oscillator

More information

ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING

ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING 1 HARSHUL BALANI, 2 CHARU GUPTA, 3 KRATIKA SUKHWAL 1,2,3 B.TECH (ECE), Poornima College Of Engineering, RTU E-mail; 1 harshul.balani@gmail.com, 2 charu95g@gmail.com,

More information

Hobby Servo Tutorial. Introduction. Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial

Hobby Servo Tutorial. Introduction. Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial Hobby Servo Tutorial Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial Introduction Servo motors are an easy way to add motion to your electronics projects. Originally used in remotecontrolled

More information

ILR #1: Sensors and Motor Control Lab. Zihao (Theo) Zhang- Team A October 14, 2016 Teammates: Amit Agarwal, Harry Golash, Yihao Qian, Menghan Zhang

ILR #1: Sensors and Motor Control Lab. Zihao (Theo) Zhang- Team A October 14, 2016 Teammates: Amit Agarwal, Harry Golash, Yihao Qian, Menghan Zhang ILR #1: Sensors and Motor Control Lab Zihao (Theo) Zhang- Team A October 14, 2016 Teammates: Amit Agarwal, Harry Golash, Yihao Qian, Menghan Zhang Individual Progress For my team s sensors and motor control

More information

Solar Powered Obstacle Avoiding Robot

Solar Powered Obstacle Avoiding Robot Solar Powered Obstacle Avoiding Robot S.S. Subashka Ramesh 1, Tarun Keshri 2, Sakshi Singh 3, Aastha Sharma 4 1 Asst. professor, SRM University, Chennai, Tamil Nadu, India. 2, 3, 4 B.Tech Student, SRM

More information

Obstacle and Cliff Detection For Robotics Applications Using Miniaturized Sonar and IR Distance Triangulation

Obstacle and Cliff Detection For Robotics Applications Using Miniaturized Sonar and IR Distance Triangulation ENVIRONMENT OBSERVATION MODULE FOR THE DECI ZEBRO Obstacle and Cliff Detection For Robotics Applications Using Miniaturized Sonar and IR Distance Triangulation BACHELOR THESIS OF Lode De Herdt 4390601

More information

Nikhil Mahalingam 1, Veera S. Kumar 2 1,2 (Computer Science & Engineering, PSG College of Technology, India)

Nikhil Mahalingam 1, Veera S. Kumar 2 1,2 (Computer Science & Engineering, PSG College of Technology, India) Robotic Walking Aid for Visually Impaired Nikhil Mahalingam 1, Veera S. Kumar 2 1,2 (Computer Science & Engineering, PSG College of Technology, India) ABSTRACT : In this fast developing world, it is hard

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

Operating Mode: Serial; (PWM) passive control mode; Autonomous Mode; On/OFF Mode

Operating Mode: Serial; (PWM) passive control mode; Autonomous Mode; On/OFF Mode RB-Dfr-11 DFRobot URM V3.2 Ultrasonic Sensor URM37 V3.2 Ultrasonic Sensor uses an industrial level AVR processor as the main processing unit. It comes with a temperature correction which is very unique

More information

Community College of Allegheny County Unit 4 Page #1. Timers and PWM Motor Control

Community College of Allegheny County Unit 4 Page #1. Timers and PWM Motor Control Community College of Allegheny County Unit 4 Page #1 Timers and PWM Motor Control Revised: Dan Wolf, 3/1/2018 Community College of Allegheny County Unit 4 Page #2 OBJECTIVES: Timers: Astable and Mono-Stable

More information

LaserPING Rangefinder Module (#28041)

LaserPING Rangefinder Module (#28041) 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

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

III. MATERIAL AND COMPONENTS USED

III. MATERIAL AND COMPONENTS USED Prototype Development of a Smartphone- Controlled Robotic Vehicle with Pick- Place Capability Dheeraj Sharma Electronics and communication department Gian Jyoti Institute Of Engineering And Technology,

More information

URM37 V3.2 Ultrasonic Sensor (SKU:SEN0001)

URM37 V3.2 Ultrasonic Sensor (SKU:SEN0001) URM37 V3.2 Ultrasonic Sensor (SKU:SEN0001) From Robot Wiki Contents 1 Introduction 2 Specification 2.1 Compare with other ultrasonic sensor 3 Hardware requierments 4 Tools used 5 Software 6 Working Mode

More information

Figure 1. Digilent DC Motor

Figure 1. Digilent DC Motor Laboratory 9 - Usage of DC- and servo-motors The current laboratory describes the usage of DC and servomotors 1. DC motors Figure 1. Digilent DC Motor Classical DC motors are converting electrical energy

More information

J. La Favre Using Arduino with Raspberry Pi February 7, 2018

J. La Favre Using Arduino with Raspberry Pi February 7, 2018 As you have already discovered, the Raspberry Pi is a very capable digital device. Nevertheless, it does have some weaknesses. For example, it does not produce a clean pulse width modulation output (unless

More information

Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers

Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers Chapter 4 Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers 4.1. Introduction Data acquisition and control boards, also known as DAC boards, are used in virtually

More information

You'll create a lamp that turns a light on and off when you touch a piece of conductive material

You'll create a lamp that turns a light on and off when you touch a piece of conductive material TOUCHY-FEELY LAMP You'll create a lamp that turns a light on and off when you touch a piece of conductive material Discover : installing third party libraries, creating a touch sensor Time : 5 minutes

More information

MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS

MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS 1 RAKSHA A R, 2 KAVYA B, 3 PRAVEENA ANAJI, 4 NANDESH K N 1,2 UG student, 3,4 Assistant Professor Department of

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

Parts List. Robotic Arm segments ¼ inch screws Cable XBEE module or Wifi module

Parts List. Robotic Arm segments ¼ inch screws Cable XBEE module or Wifi module Robotic Arm 1 Legal Stuff Stensat Group LLC assumes no responsibility and/or liability for the use of the kit and documentation. There is a 90 day warranty for the Sten-Bot kit against component defects.

More information

Undefined Obstacle Avoidance and Path Planning

Undefined Obstacle Avoidance and Path Planning Paper ID #6116 Undefined Obstacle Avoidance and Path Planning Prof. Akram Hossain, Purdue University, Calumet (Tech) Akram Hossain is a professor in the department of Engineering Technology and director

More information

Solid Modelling Interaction with Sensors for Virtual Reality Welding

Solid Modelling Interaction with Sensors for Virtual Reality Welding Solid Modelling Interaction with Sensors for Virtual Reality Welding Bharath V. G. 1* and Rajashekar Patil 2 1 School of Mechanical Engineering, REVA University, Bengaluru, Karnataka, India 2 Department

More information

Motors and Servos Part 2: DC Motors

Motors and Servos Part 2: DC Motors Motors and Servos Part 2: DC Motors Back to Motors After a brief excursion into serial communication last week, we are returning to DC motors this week. As you recall, we have already worked with servos

More information

Attribution Thank you to Arduino and SparkFun for open source access to reference materials.

Attribution Thank you to Arduino and SparkFun for open source access to reference materials. Attribution Thank you to Arduino and SparkFun for open source access to reference materials. Contents Parts Reference... 1 Installing Arduino... 7 Unit 1: LEDs, Resistors, & Buttons... 7 1.1 Blink (Hello

More information

Autonomous Obstacle Avoiding and Path Following Rover

Autonomous Obstacle Avoiding and Path Following Rover Volume 114 No. 9 2017, 271-281 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu Autonomous Obstacle Avoiding and Path Following Rover ijpam.eu Sandeep Polina

More information

Analog Servo Drive 25A20DD

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

More information

CMSC838. Tangible Interactive Assistant Professor Computer Science. Week 11 Lecture 20 April 9, 2015 Motors

CMSC838. Tangible Interactive Assistant Professor Computer Science. Week 11 Lecture 20 April 9, 2015 Motors CMSC838 Tangible Interactive Computing Week 11 Lecture 20 April 9, 2015 Motors Human Computer Interaction Laboratory @jonfroehlich Assistant Professor Computer Science TODAY S LEARNING GOALS 1. Learn about

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

Industrial Automation Training Academy. Arduino, LabVIEW & PLC Training Programs Duration: 6 Months (180 ~ 240 Hours)

Industrial Automation Training Academy. Arduino, LabVIEW & PLC Training Programs Duration: 6 Months (180 ~ 240 Hours) nfi Industrial Automation Training Academy Presents Arduino, LabVIEW & PLC Training Programs Duration: 6 Months (180 ~ 240 Hours) For: Electronics & Communication Engineering Electrical Engineering Instrumentation

More information

Blue Point Engineering

Blue Point Engineering Blue Point Engineering Instruction I www.bpesolutions.com Pointing the Way to Solutions! Animatronic Wizard - 3 Board (BPE No. WAC-0030) Version 3.0 2009 Controller Page 1 The Wizard 3 Board will record

More information

Devantech SRF04 Ultra-Sonic Ranger Finder Cornerstone Electronics Technology and Robotics II

Devantech SRF04 Ultra-Sonic Ranger Finder Cornerstone Electronics Technology and Robotics II Devantech SRF04 Ultra-Sonic Ranger Finder Cornerstone Electronics Technology and Robotics II Administration: o Prayer PicBasic Pro Programs Used in This Lesson: o General PicBasic Pro Program Listing:

More information