PROGRAMMING SERVO MOTORS OF ROBOT ARM TO CONTROLLED DIRECTIONS VIA WII NUNCHUK JOYSTICK

Size: px
Start display at page:

Download "PROGRAMMING SERVO MOTORS OF ROBOT ARM TO CONTROLLED DIRECTIONS VIA WII NUNCHUK JOYSTICK"

Transcription

1 International Journal of Civil Engineering and Technology (IJCIET) Volume 9, Issue 11, November 2018, pp , Article ID: IJCIET_09_11_098 Available online at ISSN Print: and ISSN Online: IAEME Publication Scopus Indexed PROGRAMMING SERVO MOTORS OF ROBOT ARM TO CONTROLLED DIRECTIONS VIA WII NUNCHUK JOYSTICK Intisar Mohsin Saadoon Department of Computer Science, Mustansiriyah University, Baghdad, Iraq Israa M.Abdal Ameer Al-Khafaji Department of Computer Science, Mustansiriyah University, Baghdad, Iraq Khalida Ali Ahmed Department of Computer Science, Mustansiriyah University, Baghdad, Iraq ABSTRACT As we know that the most famous parts of the industry Robort are a robotic arm.a robotic arm is one of the types of a mechanical arm. It is usually programmed to execute particular functions. In this a research project, we are studying the connection of the robotic arm via the Wii Nunchuk to control the moves of the robotic arm with Arduino (UNO). The goal of this project is to control the four directions (left, right, up & down) and open - close the hands of the robotic arm by using two buttons (C&Z). Key words: Wii Nunchuk, robotic arm, Arduino Cite this Article: Intisar Mohsin Saadoon, Israa M.Abdal Ameer Al-Khafaji, Khalida Ali Ahmed, Programming Servo Motors of Robot Arm to Controlled Directions via Wii Nunchuk Joystick, International Journal of Civil Engineering and Technology (IJCIET) 9(11), 2018, pp INTRODUCTION The robotic arm is made up of four metal segments, joined by three knuckles. The Wii Nunchuk controls the robotic arm by rotating individual servo motors connected to each joint to move the robotic arm very precisely editor@iaeme.com

2 Intisar Mohsin Saadoon, Israa M.Abdal Ameer Al-Khafaji, Khalida Ali Ahmed The mains objective of this project was to control the robotic arm to move the four directions, open and close the hands of the robotic arm by using Wii Nunchuk with Arduino UNO. 2. ARDUINO UNO The Arduino is open-source have ARM processor, can be configured by using the software in a development environment, used to collect and analyze the data to use it in real-time or stored for future analyze. 3. WII NUNCHUK The Nunchuk uses I2C as a transportation protocol. It has a two-axis joystick, two buttons (C&Z) and accelerometer sensible movements to all three dimensions editor@iaeme.com

3 Programming Servo Motors of Robot Arm to Controlled Directions via Wii Nunchuk Joystick 3.1. Wii Nunchuk Interface The Wii Nunchuk connect with six pins as follows: The frequency used to communicate with the Wii Nunchuk is100khz Wii Nunchuk Output The Wii Nunchuk is a slave I2C bus device as a transportation protocol that outputs six bytes of data as follows: 4. SERVO MOTOR The internal servo motor of a "mostly controlled" control circuit. When the engine gives pulses at a certain time constant, the motor rotates to the angle according to this time constant. In each type, the amount of fixed time varies from engine to engine depending on the manufacturer and technical bulletin that comes with the servo motor editor@iaeme.com

4 Intisar Mohsin Saadoon, Israa M.Abdal Ameer Al-Khafaji, Khalida Ali Ahmed Servo Motor 5. HARDWARE REQUIRED Arduino UNO Wii Nunchuk x1 (Master) Metal segments x4 Servo motors x3 (Slave) USB Cable for Arduino Power supply

5 Programming Servo Motors of Robot Arm to Controlled Directions via Wii Nunchuk Joystick Breadboard Jumper wires 6. WII NUNCHUK /ROBOTIC ARM INTERFACE Wii Nunchuk / robotic arm interface is a system that measures Nunchuk activity and transforms this activity into outputs (robotic arm) by transportation protocol 7. CODING #include "Wire.h" #include "Servo.h" int x_axis; int y_axis; int z_axis; Servo servolr; Servo servoud; Servo servoro; static uint8_t nunchuckza_buf[6]; void setup() Serial.begin(19200); servolr.attach(9); servoro.attach(10); servoud.attach(11); nunchuckza_setpowerpins(); nunchuckza_init(); Serial.print ("Finished setup\n"); void loop() nunchuckza_get_data(); x_axis = map(nunchuckza_buf[0], 0, 255, 180, 0); editor@iaeme.com

6 Intisar Mohsin Saadoon, Israa M.Abdal Ameer Al-Khafaji, Khalida Ali Ahmed y_axis = map(nunchuckza_buf[1], 0, 265, 0, 180); if ((nunchuckza_buf[5] >> 1) & 1) z_axis=map(nunchuckza_buf[5], 43, 44, 180, 0); else z_axis=map(nunchuckza_buf[5], 44, 45, 0, 180); servolr.write(x_axis); servoud.write(y_axis); servoro.write(z_axis); x_axis =0; y_axis =0; static void nunchuckza_setpowerpins() #define pwrpin PORTC3// #define gndpin PORTC2// DDRC = _BV(pwrpin) _BV(gndpin);// PORTC &=~ _BV(gndpin); PORTC = _BV(pwrpin); delay(101); void nunchuckza_init() Wire.begin(); Wire.beginTransmission(0x52); Wire.write(0x40); Wire.write(0x00); Wire.endTransmission(); void nunchuckza_send_request() Wire.beginTransmission(0x52); Wire.write(0x00); Wire.endTransmission(); int nunchuckza_get_data() editor@iaeme.com

7 Programming Servo Motors of Robot Arm to Controlled Directions via Wii Nunchuk Joystick int cnt=0; Wire.requestFrom (0x52, 6); // while ((Wire.available ())) nunchuckza_buf[cnt] = (Wire.read() ^ 0x17) + 0x17;// cnt++; nunchuckza_send_request(); if (cnt >= 5) return 1; return 0; 8. CONCLUSIONS The objective of the project is using the robotic arm in industrial works and dangerous duty by controlling the directions (left, right, up & down) and open - close the hands of the robotic arm by using two buttons (C&Z). REFERENCES [1] Erin Sullivan, Wii Nunchuk Interface.PDF [2] Using wii nunchuk with Arduino Robert Eisele Engineer, Systems Architect and DBA December 19th, 2016 [3] Arduino Servo [4] Servomotor Wikipedia [5] NUNCHUK CONTROLLED ROBOTIC ARM (WITH ARDUINO) By IgorF2 in TechnologyRobots Feb. 20, 2018 [6] Control Servos using Wii NunchukMark Tashiro. Hackster.io February 27, editor@iaeme.com

Introducing the itapstick: Video Game USB Mouse Stick for Wii Nunchuk Controllers

Introducing the itapstick: Video Game USB Mouse Stick for Wii Nunchuk Controllers Introducing the itapstick: Video Game USB Mouse Stick for Wii Nunchuk Controllers Created by itaparcade Last updated on 2016-09-03 02:11:57 AM UTC Guide Contents Guide Contents Overview Prerequisite Guides

More information

Written Report of Robot Design

Written Report of Robot Design Written Report of Robot Design Name: Robot Name: Course: Shaojie Ge Four Leg Walking Robot EEL 4665/5666 Intelligent Machines Design Laboratory Instructors: Dr. A. Antonio Arroyo Dr. Eric M. Schwartz TAs:

More information

12/07/2016 Grove Gas Sensor(O₂) Wiki

12/07/2016 Grove Gas Sensor(O₂) Wiki Grove - Gas Sensor(O₂) Grove-Gas Sensor (O₂) is a kind of sensor to test the oxygen concentration in air, which is based on the principle of the electrochemical cell to the original work. You can know

More information

Grove - Gas Sensor(MQ9)

Grove - Gas Sensor(MQ9) Grove - Gas Sensor(MQ9) Introduction 5.0V Analog The Grove - Gas Sensor(MQ9) module is useful for gas leakage detection (in home and industry). It is suitable for detecting LPG, CO, CH4. Due to its high

More information

PEDESTRIAN CRASH MODEL FOR VEHICLE SPEED CALCULATION AT ROAD ACCIDENT

PEDESTRIAN CRASH MODEL FOR VEHICLE SPEED CALCULATION AT ROAD ACCIDENT International Journal of Civil Engineering and Technology (IJCIET) Volume 8, Issue 9, September 017, pp. 1093 1099, Article ID: IJCIET_08_09_1 Available online at http://http://www.iaeme.com/ijciet/issues.asp?jtype=ijciet&vtype=8&itype=9

More information

WeatherStation Monitoring for Industrial marine Applications

WeatherStation Monitoring for Industrial marine Applications WeatherStation Monitoring for Industrial marine Applications PB200 WeatherStation Instrument Applications: Industrial marine weather monitoring Features: True and Apparent Wind Speed and Direction Barometric

More information

Algorithm for Line Follower Robots to Follow Critical Paths with Minimum Number of Sensors

Algorithm for Line Follower Robots to Follow Critical Paths with Minimum Number of Sensors International Journal of Computer (IJC) ISSN 2307-4523 (Print & Online) Global Society of Scientific Research and Researchers http://ijcjournal.org/ Algorithm for Line Follower Robots to Follow Critical

More information

A CHOICE MODEL ON TRIP MODE CHAIN FOR INTER-ISLANDS COMMUTERS IN MOLUCCA-INDONESIA: A CASE STUDY OF THE TERNATE ISLAND HALMAHERA ISLAND TRIP

A CHOICE MODEL ON TRIP MODE CHAIN FOR INTER-ISLANDS COMMUTERS IN MOLUCCA-INDONESIA: A CASE STUDY OF THE TERNATE ISLAND HALMAHERA ISLAND TRIP International Journal of Civil Engineering and Technology (IJCIET) Volume 8, Issue 7, July 2017, pp. 1050 1057, Article ID: IJCIET_08_07_112 Available online at http://http://ww www.iaeme.com/ijciet/issues.asp?jtype=ijciet&v

More information

Grove - Gas Sensor (O2)

Grove - Gas Sensor (O2) Grove - Gas Sensor (O2) Release date: 9/20/2015 Version: 1.0 Wiki: http://www.seeedstudio.com/wiki/grove_-_gas_sensor(o%e2%82%82) Bazaar: http://www.seeedstudio.com/depot/grove-gas-sensoro2-p-1541.html

More information

IBU3 Manual Addendum 1

IBU3 Manual Addendum 1 This addendum covers the follow items. Connection of airsoft micro switch Connection of Taigen airsoft recoil units Selecting airsoft mode Settings for clutch style gearboxes Motor enable selection Confirmation

More information

THE DETERMINATION OF RAINFALL CATCHMENT COEFFICIENT OF HIGH RISE BUILDING

THE DETERMINATION OF RAINFALL CATCHMENT COEFFICIENT OF HIGH RISE BUILDING International Journal of Civil Engineering and Technology (IJCIET) Volume 9, Issue 9, September 2018, pp. 485 493, Article ID: IJCIET_09_09_049 Available online at http://www.iaeme.com/ijciet/issues.asp?jtype=ijciet&vtype=9&itype=9

More information

Dynamically Reconfigurable Miniature Golf Course

Dynamically Reconfigurable Miniature Golf Course Western Michigan University ScholarWorks at WMU Honors Theses Lee Honors College 12-2-2014 Dynamically Reconfigurable Miniature Golf Course James Lind Western Michigan University, jamesplind@gmail.com

More information

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer.

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer. My Files Files are automatically placed into the appropriate folders. When you download a program using a Sound file to the NXT, the program will be placed under Software files while the sound data will

More information

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer.

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer. NXT Main Menu My Files Files are automatically placed into the appropriate folders. When you download a program using a Sound file to the NXT, the program will be placed under Software files while the

More information

living with the lab control of salinity 2012 David Hall

living with the lab control of salinity 2012 David Hall control of salinity 2012 David Hall General Idea The objective is to keep the salinity close to a setpoint which will provided by your instructor The salinity sensor measures the analog voltage output

More information

The NXT Generation. A complete learning solution

The NXT Generation. A complete learning solution The NXT Generation A complete learning solution 2008 The NXT Generation LEGO MINDSTORMS Education is the latest in educational robotics, enabling students to discover ICT, science, D&T and maths concepts

More information

LX Compass module 3 Electronic compass device User manual

LX Compass module 3 Electronic compass device User manual LX Compass module 3 Electronic compass device User manual LX navigation d.o.o., Tkalska 10 SLO 3000 Celje, tel: + 386 3 490 46 70, fax: + 386 3 490 46 71 info@lxnavigation.si, http://www.lxnavigation.com

More information

Design of a Microcontroller-Based Pitch Angle Controller for a Wind Powered Generator

Design of a Microcontroller-Based Pitch Angle Controller for a Wind Powered Generator Journal of Engineering and Science Research 1 (2): 133-138, e-issn RMP Publications, DOI: Design of a Microcontroller-Based Pitch Angle Controller for a Wind Powered Generator Glenn V. Magwili, Michael

More information

YSC-8330 USER MANUAL XI AN TYPICAL INDUSTRIES CO.,LTD.

YSC-8330 USER MANUAL XI AN TYPICAL INDUSTRIES CO.,LTD. YSC-8330 USER MANUAL XI AN TYPICAL INDUSTRIES CO.,LTD. Contents 1 Notice 1.1 Work environment 1.2 Notice of installation 1.3 Notice of safety 2 Installation and Adjustment 2.1 Controll box 2.2 Speed controller

More information

SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR

SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR INTRODUCTION Robotics is a very common and discussed problem recently. Robotic arms and manipulators are used in industry, transport or medicine. They often

More information

RELIABILITY ASSESSMENT, STATIC AND DYNAMIC RESPONSE OF TRANSMISSION LINE TOWER: A COMPARATIVE STUDY

RELIABILITY ASSESSMENT, STATIC AND DYNAMIC RESPONSE OF TRANSMISSION LINE TOWER: A COMPARATIVE STUDY RELIABILITY ASSESSMENT, STATIC AND DYNAMIC RESPONSE OF TRANSMISSION LINE TOWER: A COMPARATIVE STUDY Yusuf Mansur Hashim M. Tech (Structural Engineering) Student, Sharda University, Greater Noida, (India)

More information

Laboratory 2(a): Interfacing WiiMote. Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments)

Laboratory 2(a): Interfacing WiiMote. Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments) Laboratory 2(a): Interfacing WiiMote Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments) Instructors: Edward A. Lee Sanjit A. Seshia University of California, Berkeley EECS

More information

Generation of Robot Motion Based on Measurement of Human Movement. Susumu Sakano 1, Satoru Shoji 1

Generation of Robot Motion Based on Measurement of Human Movement. Susumu Sakano 1, Satoru Shoji 1 Generation of Robot Motion Based on Measurement of Human Movement Susumu Sakano 1, Satoru Shoji 1 1College of Engineering, Nihon University 1 Nakagawara Tokusada Tamura-machi Koriyama 963-8642 Japan Tel;

More information

RG2 Gripper Datasheet Version 1.6

RG2 Gripper Datasheet Version 1.6 RG2 Gripper Datasheet Version 1.6 The RG2 gripper is a flexible electric gripper specially designed for robots from Universal Robots. The long stroke allows the gripper to handle a variety of object sizes.

More information

Setting Up the Ingenico isc250 Pinpad via USB

Setting Up the Ingenico isc250 Pinpad via USB One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Setting Up the Ingenico isc250 Pinpad via USB The following

More information

AHE58/59 AC Servo System

AHE58/59 AC Servo System AHE58/59 AC Servo System HMI-12 User Manual Safely INstruction Please read this manual carefully, also with related manual for the machine head before use. For perfect operation and safety, installing

More information

Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB

Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB Akshay C. Mahakalkar, Gaurav R. Powale 2, Yogita R. Ashtekar 3, Dinesh L. Mute 4, 2 B.E. 4 th Year Student of Electrical

More information

Technical Bulletin, Communicating with Gas Chromatographs

Technical Bulletin, Communicating with Gas Chromatographs Last Updated: 13- July-2010 TB-080000C Technical Bulletin, Communicating with Gas Chromatographs OMNI FLOW COMPUTERS, INC. 12620 West Airport Boulevard, Suite 100 Sugar Land, Texas 77478 United States

More information

GOLFER. The Golf Putting Robot

GOLFER. The Golf Putting Robot GOLFER The Golf Putting Robot Written By Wing Pan Yuen For EEL 5666 Intelligent Machines Design Laboratory December 05, 1999 Table of Contents Abstract Introduction Executive Summary Integrated System

More information

ECL Comfort 110, application 131 (valid as of software version 2.00)

ECL Comfort 110, application 131 (valid as of software version 2.00) Operating Guide ECL Comfort 110, application 131 (valid as of software version 2.00) English version www.danfoss.com How to navigate? Adjust temperatures and values. Switch between menu lines. Select /

More information

AMS 6915 Board mount pressure sensor with digital output (I²C)

AMS 6915 Board mount pressure sensor with digital output (I²C) Board mount pressure sensor with digital output (I²C) FEATURES Calibrated and temperature compensated pressure sensor with digital output (I²C) Differential, relative (gage), bidirectional differential,

More information

Wiimote Visualization Through Particles

Wiimote Visualization Through Particles 1 Abstract Wiimote Visualization Through Particles Joshua Jacobson Since 2006, the Wii video game console has been found within homes throughout out the world. The Wiimote exists as the primary input method

More information

VARIABLE AIR FLOW REGULATOR

VARIABLE AIR FLOW REGULATOR The RCV regulator is a variable air flow self-regulated system (VAV type). It is used to regulate the air flow in an area or room of a building according to a setpoint. The RCV regulator is also available

More information

SCIENTIFIC DATA SYSTEMS, INC. Depth Tension Line Speed Panel. DTLS Manual

SCIENTIFIC DATA SYSTEMS, INC. Depth Tension Line Speed Panel. DTLS Manual SCIENTIFIC DATA SYSTEMS, INC. Depth Tension Line Speed Panel DTLS Manual This document contains proprietary information. Copyright 2015 Scientific Data Systems, Inc. All rights reserved. 1 Depth Tension

More information

CFD ANALYSIS AND COMPARISON USING ANSYS AND STAR-CCM+ OF MODEL AEROFOIL SELIG 1223

CFD ANALYSIS AND COMPARISON USING ANSYS AND STAR-CCM+ OF MODEL AEROFOIL SELIG 1223 International Journal of Mechanical Engineering and Technology (IJMET) Volume 8, Issue 11, November 2017, pp. 312 318, Article ID: IJMET_08_11_034 Available online at http://www.iaeme.com/ijmet/issues.asp?jtype=ijmet&vtype=8&itype=11

More information

01 TM SuperModified Testing with RS485 <> USB

01 TM SuperModified Testing with RS485 <> USB Testing with RS485 USB 1. Preinstalled cables The Supermodified controller comes with several wires soldered. By default the power and RS485 cables are soldered. I2C and legacy RC servo interface cables

More information

Setting up the Ingenico isc250 Pinpad via USB in Windows 8

Setting up the Ingenico isc250 Pinpad via USB in Windows 8 One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Setting up the Ingenico isc250 Pinpad via USB in Windows 8 The

More information

COMPUTATIONAL FLUID DYNAMIC ANALYSIS OF AIRFOIL NACA0015

COMPUTATIONAL FLUID DYNAMIC ANALYSIS OF AIRFOIL NACA0015 International Journal of Mechanical Engineering and Technology (IJMET) Volume 8, Issue 2, February 2017, pp. 210 219 Article ID: IJMET_08_02_026 Available online at http://www.iaeme.com/ijmet/issues.asp?jtype=ijmet&vtype=8&itype=2

More information

DESIGN OF A POWER AUTONOMOUS SOLAR POWERED LAWN MOWER

DESIGN OF A POWER AUTONOMOUS SOLAR POWERED LAWN MOWER International Journal of Mechanical Engineering and Technology (IJMET) Volume 8, Issue 5, May 2017, pp. 113 123, Article ID: IJMET_08_05_013 Available online at http://www.iaeme.com/ijmet/issues.asp?jtype=ijmet&vtype=8&itype=5

More information

SonoMeter 30 Energy Meters

SonoMeter 30 Energy Meters Data Sheet SonoMeter 30 Energy Meters Description The Danfoss SonoMeter 30 is a range of ultrasonic, compact energy meters intended for measuring energy consumption in heating and cooling applications

More information

Second Generation Charging Station

Second Generation Charging Station Second Generation Charging Station Progress Report Presentation J. Alhabshy, R. Alzahrani, B. Gabrelcik, R. Murphy, R. Villezcas January 21, 2015 1 Project Summary This year s team was assigned the project

More information

ANZAI AZ-733VI. Respiratory Gating System. since 1976

ANZAI AZ-733VI. Respiratory Gating System. since 1976 ANZAI since 1976 Respiratory Gating System AZ-733VI Specifications AZ-733VI Dimension Configuration Options Sensor Port W:260 D:230 H:126mm Sensor Port Laser Sensor & Fixing Arm Relay Box Wave Monitor

More information

Edge Isolation Tool. Standard Operating Procedure. Version 1.1. Date: Prepared by, Sandeep S S. Department of Electrical Engineering

Edge Isolation Tool. Standard Operating Procedure. Version 1.1. Date: Prepared by, Sandeep S S. Department of Electrical Engineering Edge Isolation Tool Standard Operating Procedure Version 1.1 Date: 20-9-2012 Prepared by, Sandeep S S Department of Electrical Engineering IIT Bombay This document is meant for internal circulation only

More information

Software Design of the Stiquito Micro Robot

Software Design of the Stiquito Micro Robot Software Design of the Stiquito Micro Robot Andrew McClain and James M. Conrad University of North Carolina at Charlotte jmconrad@uncc.edu Abstract The Stiquito robot is a small, six legged robot that

More information

OFFSHORE WIND ENERGY POTENTIAL ALONG INDIAN COAST

OFFSHORE WIND ENERGY POTENTIAL ALONG INDIAN COAST International Journal of Civil Engineering and Technology (IJCIET) Volume 9, Issue 7, July 2018, pp. 1480 1486, Article ID: IJCIET_09_07_157 Available online at http://www.iaeme.com/ijciet/issues.asp?jtype=ijciet&vtype=9&itype=7

More information

Resonance in Transverse Waves. Regents Physics

Resonance in Transverse Waves. Regents Physics Title: Resonance in Transverse Waves Original: Revision: Authors: Appropriate Level: Abstract: Time Required: NY Standards Met: Special Notes: 1 July 2004 4 April 2008 Charlene Rydgren, Jeff Harbold, George

More information

TR Electronic Pressure Regulator. User s Manual

TR Electronic Pressure Regulator. User s Manual TR Electronic Pressure Regulator Page 2 of 13 Table of Contents Warnings, Cautions & Notices... 3 Factory Default Setting... 4 Quick Start Procedure... 5 Configuration Tab... 8 Setup Tab... 9 Internal

More information

In addition to reading this assignment, also read Appendices A and B.

In addition to reading this assignment, also read Appendices A and B. 1 Kinematics I Introduction In addition to reading this assignment, also read Appendices A and B. We will be using a motion detector to track the positions of objects with time in several lab exercises

More information

Development of Fish type Robot based on the Analysis of Swimming Motion of Bluefin Tuna Comparison between Tuna-type Fin and Rectangular Fin -

Development of Fish type Robot based on the Analysis of Swimming Motion of Bluefin Tuna Comparison between Tuna-type Fin and Rectangular Fin - Development of Fish type Robot based on the Analysis of Swimming Motion of Bluefin Tuna Comparison between Tuna-type Fin and Rectangular Fin - Katsuya KUGAI* Abstract The swimming motion of Tuna type fishes

More information

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION NXT User Guide Introduction WELCOME TO LEGO MINDSTORMS EDUCATION LEGO MINDSTORMS Education is the next generation in educational robotics, enabling students to discover Science, Technology, Engineering

More information

Section Freepoint Service 26.1 FREEPOINT CONTROL PANEL

Section Freepoint Service 26.1 FREEPOINT CONTROL PANEL Section 26 26 Freepoint Service The Warrior system supports Freepoint tools that do not require motorized deployment. This includes Applied Electronics Bowspring and Magnetic tools and Homco tools. Other

More information

e.do Gripper Safety requirements, technical features and assembly and integration instructions

e.do Gripper Safety requirements, technical features and assembly and integration instructions e.do Gripper Safety requirements, technical features and assembly and integration instructions Requirements, technical features and instructions for safe installation and use of the e.do Gripper. CR00758190-en_00/2018.05

More information

1001ICT Introduction To Programming Lecture Notes

1001ICT Introduction To Programming Lecture Notes 1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 4 Lego Mindstorms 4.1 Robotics? Any programming course will set

More information

215 Liquid Handler Up-Grade Manual

215 Liquid Handler Up-Grade Manual BRUKER NMR 220 25 Liquid Handler Up-Grade Manual For Up-Grade to Run with XWINNMR Vers.. Manual # H977 The kit will include: H9770 BEST NMR Up-Grade Kit to No. Article Bruker # Comment 500mm Capillary

More information

Perfect Game Baseball - msherwood pseudo code backbone Using MVC Convention (Model/View/Controller) With Multimodal I/O

Perfect Game Baseball - msherwood pseudo code backbone Using MVC Convention (Model/View/Controller) With Multimodal I/O Perfect Game Baseball - msherwood pseudo code backbone Using MVC Convention (Model/View/Controller) With Multimodal I/O Model: DataModel.h/c Use this to store the game states View: Buzzers.h/.c Output

More information

Evolving Gaits for the Lynxmotion Hexapod II Robot

Evolving Gaits for the Lynxmotion Hexapod II Robot Evolving Gaits for the Lynxmotion Hexapod II Robot DAVID TOTH Computer Science, Worcester Polytechnic Institute Worcester, MA 01609-2280, USA toth@cs.wpi.edu, http://www.cs.wpi.edu/~toth and GARY PARKER

More information

SAPCON. User Manual. Capacitance Continuous Level Indicator. . Introduction. . General Description. . Principle of Operation. .

SAPCON. User Manual. Capacitance Continuous Level Indicator. . Introduction. . General Description. . Principle of Operation. . User Manual Capacitance Continuous Level Indicator Comprehensive User s Manual. Introduction. General Description. Principle of Operation. Specifications. Connection Diagrams. Quick Calibration Chart.

More information

Along-string pressure, temperature measurements hold revolutionary promise for downhole management

Along-string pressure, temperature measurements hold revolutionary promise for downhole management Along-string pressure, temperature measurements hold revolutionary promise for downhole management IT S WIDELY KNOWN that the majority of stuck pipe incidents occur while pulling out of hole. If we can

More information

Maneuver Control System for Collision Avoidance Based on Experimental Study

Maneuver Control System for Collision Avoidance Based on Experimental Study EPI International Journal of Engineering pissn 2615-5109 Volume 1, Number 2, August 2018, pp. 65-69 eissn 2621-0541 DOI: 10.25042/epi-ije.082018.10 Maneuver Control System for Collision Avoidance Based

More information

Roller AC Servo System

Roller AC Servo System Safely Instruction Roller AC Servo System HMI-15 User Manual Please read this manual carefully, also with related manual for the machinery before use the controller. For installing and operating the controller

More information

Trim and Stabilisation systems NEXT GENERATION IN BOAT CONTROL.

Trim and Stabilisation systems NEXT GENERATION IN BOAT CONTROL. Trim and Stabilisation systems NEXT GENERATION IN BOAT CONTROL www.humphree.com WHEN EFFICIENCY AND PERFORMANCE REALLY MATTERS! Humphree proudly presents the new HCS-5 The HCS-5 combines exceptional mechanical

More information

The World Of Weather Data

The World Of Weather Data Thies CLIMA assures innovation and quality in environmental sensors The World Of Weather Data Page:1 A closer look at Thies Clima Numbers and Facts: Founded in 1945 approx. 100 Employees Worldwide Agents

More information

PK-2D Service Manual

PK-2D Service Manual PK-2D Service Manual PK-2D Service 10182013 This manual should be read and understood prior to installing, operating or servicing the PK-1D Unit. PK-2D Service 10182013 Table of Contents WARNINGS... 4

More information

Silkrip. ORR Computer. Owner s Manual. Silkrip Motorsports LLC. Rev H 4/13/2017 IMPORTANT CHANGE TO SENSOR WIRING! Tom King

Silkrip. ORR Computer. Owner s Manual. Silkrip Motorsports LLC. Rev H 4/13/2017 IMPORTANT CHANGE TO SENSOR WIRING! Tom King Silkrip ORR Computer Owner s Manual Silkrip Motorsports LLC Rev H 4/13/2017 IMPORTANT CHANGE TO SENSOR WIRING! Tom King The latest version of the Owner s Manual is available under the Services tab of the

More information

DDR Dive Data Recorder Manual - Rel /12

DDR Dive Data Recorder Manual - Rel /12 DDR Dive Data Recorder Manual - Rel. 1.1 2/12 TABLE OF CONTENTS 1. WHAT IS THE DDR? 4 2. TECHNICAL CHARACTERISTICS 5 3. DOWNLOADING DATA TO A PC 6 4. DDR MANAGER 7 5. CONFIGURE DEVICE BUTTON 9 6. READ

More information

Biped Walking Robot Control System Design

Biped Walking Robot Control System Design 69 Biped Walking Robot Control System Design Jian Fang Abstract For biped walking robot posture instability problems presented this paper, ZMP gait planning algorithm and a time division multiplexing servo

More information

Lab 2: Superposition of waves on a string

Lab 2: Superposition of waves on a string Lab 2: Superposition of waves on a string Name: Group Members: Date: TA s Name: Apparatus: PASCO mechanical vibrator, PASCO interface, string, mass hanger (50 g) and set of masses, meter stick, electronic

More information

The Design of Electrical Putter Car Moving Robots Based on Microcontroller Control Jie TANG and Xiao-min LIU

The Design of Electrical Putter Car Moving Robots Based on Microcontroller Control Jie TANG and Xiao-min LIU 2016 International Conference on Applied Mechanics, Electronics and Mechatronics Engineering (AMEME 2016) ISBN: 978-1-60595-357-1 The Design of Electrical Putter Car Moving Robots Based on Microcontroller

More information

Documentation. By Henry Arnold

Documentation. By Henry Arnold Cricket the Robot Documentation By Henry Arnold Table of Contents TABLE OF CONTENTS... 2 CRICKET THE ROBOT... 4 Overview... 4 Getting Started... 4 Using the Remote Control... 5 Charging Cricket s Battery...

More information

Speed Control of Horizontal Axis Wind Turbine

Speed Control of Horizontal Axis Wind Turbine Speed Control of Horizontal Axis Wind Turbine G Priyadharshini 1, E Pavithra 2, M Sanjay 3 1,2,3Electronics and Instrumentation Engineering, Bannari Amman Institute of Technology, Erode, India ---------------------------------------------------------------------***---------------------------------------------------------------------

More information

Mitos Fluika Pressure and Vacuum Pumps Datasheet

Mitos Fluika Pressure and Vacuum Pumps Datasheet Unit 1, Anglian Business Park, Orchard Road, Royston, Hertfordshire, SG8 5TW, UK T: +44 (0)1763 242491 F: +44 (0)1763 246125 E: sales@dolomite-microfluidics.com W: www.dolomite-microfluidics.com Dolomite

More information

Design, Fabrication and Analysis of Microcontroller Based Bipedal Walking Robot Vaidyanathan.V.T 1 and Sivaramakrishnan.R 2

Design, Fabrication and Analysis of Microcontroller Based Bipedal Walking Robot Vaidyanathan.V.T 1 and Sivaramakrishnan.R 2 Design, Fabrication and Analysis of Microcontroller Based Bipedal Walking Robot Vaidyanathan.V.T 1 and Sivaramakrishnan.R 2 1, 2 Mechatronics, Department of Production Technology, Madras Institute of Technology,

More information

Visualize Nitrogen Gas Consumption

Visualize Nitrogen Gas Consumption Air Flow Monitor EWA2 SERIES Conforming to EMC Directive (all models) & Pressure Equipment Directive (AEWA2150/2200 only) Visualize Nitrogen Gas Consumption Small pipe size as Well as Air Consumption!

More information

Ergonomic Handle for a 2DoF Robotic Hand Rehabilitation Device

Ergonomic Handle for a 2DoF Robotic Hand Rehabilitation Device Ergonomic Handle for a 2DoF Robotic Hand Rehabilitation Device Design Team Steven Adams, Kyle Hackmeister Lucas Johnson, Daniel Lau, Nicholas Pappas Design Advisor Prof. Constantinos Mavroidis Co-Advisors

More information

Sail Racing Instruments. Aspect 40

Sail Racing Instruments.  Aspect 40 Sail Racing Instruments www.nexusmarine.se Presentation Nexus Marine is a leading manufacturer of navigation instrumentation for racing and cruising yachts. Nexus brings with it seventy years of experience

More information

Implementation of Modern Traffic Light Control System

Implementation of Modern Traffic Light Control System International Journal of Scientific and Research Publications, Volume 4, Issue 6, June 2014 1 Implementation of Modern Traffic Light System Nang Hom Kham *, Chaw Myat Nwe ** * Department of Electronic

More information

ACV-10 Automatic Control Valve

ACV-10 Automatic Control Valve ACV-10 Automatic Control Valve Installation, Operation & Maintenance General: The Archer Instruments ACV-10 is a precision automatic feed rate control valve for use in vacuum systems feeding Chlorine,

More information

Control of Salinity in the Fish Tank ME 121. Tank Pump Sensor. Figure 1 Schematic of flow loop and salinity control scheme for the fish tank.

Control of Salinity in the Fish Tank ME 121. Tank Pump Sensor. Figure 1 Schematic of flow loop and salinity control scheme for the fish tank. Control of Salinity in the Fish Tank ME 121 Figure 1 is a schematic of the fish tank and the salinity control system. The pump circulates water continuously through a loop from the tank to the salinity

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53. The design of exoskeleton lower limbs rehabilitation robot

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53. The design of exoskeleton lower limbs rehabilitation robot Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53 CADDM The design of exoskeleton lower limbs rehabilitation robot Zhao Xiayun 1, Wang Zhengxing 2, Liu Zhengyu 1,3,

More information

MASTEEL FABRICATION EQUIPMENT

MASTEEL FABRICATION EQUIPMENT MASTEEL FABRICATION EQUIPMENT MBHS SERIES HYDRAULIC SYNCHRONIZED CNC BRAKES STANDARD CONTROL FEATURES Standard KV-2004 CNC control with 11 TFT screen display 0.0004 high resolution linear scales provide

More information

TrackMan Operator Training

TrackMan Operator Training TrackMan Operator Training The following setup and use information is the same for using TrackMan in the Indoor setting or Outdoor setting unless noted Extend the two bottom legs and single back leg before

More information

Oxygen Meter User Manual

Oxygen Meter User Manual Oxygen Meter User Manual Monday, July 23, 2007 1. Outline...2 2. Program...3 2.1. Environment for program execution...3 2.2. Installation...3 2.3. Un installation...3 2.4. USB driver installation...3 2.5.

More information

This document contains recommendations that may help teams be more successful in preparing for and participating in the FTC World Championship Event.

This document contains recommendations that may help teams be more successful in preparing for and participating in the FTC World Championship Event. HOT SHOT! TIPS AND TRICKS SHEET This document contains recommendations that may help teams be more successful in preparing for and participating in the FTC World Championship Event. BEFORE YOU LEAVE FOR

More information

Position Controller PS312P_LCD_v2.2

Position Controller PS312P_LCD_v2.2 Position Controller PS312P_LCD_v2.2 INSTRUCTION MANUAL Hymark Ltd. 427 Bark Cove Owensboro, KY 4233 (27) 683-35 Fax (27) 683-25 www.kentuckygauge.com 1. FUNCTIONS OF THE DISPLAYS...3 2. FUNCTIONS OF THE

More information

NAVAL POSTGRADUATE SCHOOL THESIS

NAVAL POSTGRADUATE SCHOOL THESIS NAVAL POSTGRADUATE SCHOOL MONTEREY, CALIFORNIA THESIS APPLICATION OF A LEAP MOTION SENSOR FOR IMPROVED DRONE CONTROL by Alfredo Belaunde Sara-Lafosse December 2017 Thesis Advisor: Second Reader: Xiaoping

More information

Ref Product Description Price S1315 Logbook ML S1321 Primary ML S1326 Logbook GLE GPS S1328 Logbook GLE 220.

Ref Product Description Price S1315 Logbook ML S1321 Primary ML S1326 Logbook GLE GPS S1328 Logbook GLE 220. 0 P a g e 1 P a g e Data Loggers S1315 Logbook ML 150.00 S1321 Primary ML 120.00 S1326 Logbook GLE GPS 300.00 S1328 Logbook GLE 220.00 Colorimeters S1626 Colorimeter with 10 cuvettes & caps 119.00 S1647

More information

siot-shoe: A Smart IoT-shoe for Gait Assistance (Miami University)

siot-shoe: A Smart IoT-shoe for Gait Assistance (Miami University) siot-shoe: A Smart IoT-shoe for Gait Assistance (Miami University) Abstract Mark Sullivan, Casey Knox, Juan Ding Gait analysis through the Internet of Things (IoT) is able to provide an overall assessment

More information

Introduction. The Shearwater Petrel is an advanced technical diving computer for open and closed circuit divers.

Introduction. The Shearwater Petrel is an advanced technical diving computer for open and closed circuit divers. Introduction The Shearwater Petrel is an advanced technical diving computer for open and closed circuit divers. Although we strive to make the Petrel easy enough to use without reading the manual, please

More information

GV Standard X-Vent. Setup, Commissioning & Installation Guide

GV Standard X-Vent. Setup, Commissioning & Installation Guide GV Standard X-Vent Setup, Commissioning & Installation Guide Technical experts in the design, manufacture and supply of precision engineered, architectural rooflights for residential and commercial buildings.

More information

GOLOMB Compression Technique For FPGA Configuration

GOLOMB Compression Technique For FPGA Configuration GOLOMB Compression Technique For FPGA Configuration P.Hema Assistant Professor,EEE Jay Shriram Group Of Institutions ABSTRACT Bit stream compression is important in reconfigurable system design since it

More information

Ref Product Description Price S1315 Logbook ML S1321 Primary ML S1326 Logbook GLE GPS S1328 Logbook GLE 220.

Ref Product Description Price S1315 Logbook ML S1321 Primary ML S1326 Logbook GLE GPS S1328 Logbook GLE 220. 0 P a g e 1 P a g e Data Loggers S1315 Logbook ML 150.00 S1321 Primary ML 120.00 S1326 Logbook GLE GPS 300.00 S1328 Logbook GLE 220.00 Colorimeters S1626 Colorimeter with 10 cuvettes & caps 119.00 S1647

More information

A4s Operation Manual

A4s Operation Manual A4s Operation Manual Safety Instruction Please read this manual carefully, also with related manual for the machinery before use the controller. For installing and operating the controller properly and

More information

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc.

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc. [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 9 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(9), 2014 [4222-4227] Evaluation on test of table tennis equipment based

More information

STAND alone & p.c. VERSION

STAND alone & p.c. VERSION STAND alone & p.c. VERSION ECONOMY TRACK SYSTEMS 1/4 & 1/8 Mile Asphalt Track Dirt / Sand Track Mud Track Snowmobile Track R/C Car Track Custom Track Systems Timing to.001 Accuracy Time Slip Printer Optional

More information

ELC7. Bobcat 7 Pin CanBus Electric Control System. Model Number ELC7. Phone: ELC7 08/10/15

ELC7. Bobcat 7 Pin CanBus Electric Control System. Model Number ELC7. Phone: ELC7 08/10/15 ELC7 Bobcat 7 Pin CanBus Electric Control System Model Number ELC7. Phone: 320-393-7080 08/0/5 ELC7 Features of Virnig Mfg. Inc. ELC7 Bobcat 7 Pin CanBus Electric Control System include: Works with Standard

More information

SENSAPHONE APPLICATION NOTE. Functions: C Programming, Pump Control, Data Logging

SENSAPHONE APPLICATION NOTE. Functions: C Programming, Pump Control, Data Logging SENSAPHONE APPLICATION NOTE Application: Pump Station Volumetric Flow Calculation Functions: C Programming, Pump Control, Data Logging Sensaphone Model: SCADA 3000 Who needs to perform Volumetric Flow

More information

Dimensions [All numbers in brackets are in millimeters.] K4-2 US (supplied) 1/2" Centered (Default)

Dimensions [All numbers in brackets are in millimeters.] K4-2 US (supplied) 1/2 Centered (Default) Proportional damper actuator, non-spring return, Multi-Function Technology Torque min. Control to 0 VDC (DEFULT) Feedback to 0 VDC (DEFULT) For proportional modulation of dampers in HVC systems. The is

More information

Improvement of the Cheetah Locomotion Control

Improvement of the Cheetah Locomotion Control Improvement of the Cheetah Locomotion Control Master Project - Midterm Presentation 3 rd November 2009 Student : Supervisor : Alexander Sproewitz Professor : Auke Jan Ijspeert Presentation of the Cheetah

More information

Beating Heart Simulator: Oral Report 2. Ashley Whiteside Nicole Rice Jacob Bauer

Beating Heart Simulator: Oral Report 2. Ashley Whiteside Nicole Rice Jacob Bauer Beating Heart Simulator: Oral Report 2 Ashley Whiteside Nicole Rice Jacob Bauer 1 Question and Thesis Can a user interface be created on a computer that can link and affect different aspects of a heart

More information

Electronic gas volume corrector model DGVC-04

Electronic gas volume corrector model DGVC-04 Electronic gas volume corrector model DGVC-04 1. Introduction The following user s manual gives information about the installation, configuration, usage and storage of the electronic gas volume corrector

More information