Microduino-Quadcopter Tutorial USER GUIDE

Size: px
Start display at page:

Download "Microduino-Quadcopter Tutorial USER GUIDE"

Transcription

1 Microduino-Quadcopter Tutorial USER GUIDE

2 Content Outline... 2 Principle... 2 Bildup and Debugging... 6 Program Download... 9 Operating Instruction Conrrection Guide of Qaudcopter Joypad Remote Controller Guide Guide of Joypad Unlocking/Locking Control Guide of Joypad Program Description Attention

3 Outline Quadcopter is one kind of aircraft that is equipped with four propellers. Similar to the helicopter, it can finish the action of hover and flight. A traditional helicopter uses a main rotor to generate thrust and a tail rotor to offset the torque from the main rotor, namely, locking the tail. While the quadcopter adopts positive and negative propeller design and therefore, needs no extra structure to lock the tail. Four propellers distribute symmetrically in the shape of a cross. The No. 1 and No. 2 propellers rotate anticlockwise while the No.3 and No.4 rotate clockwise. When the four propellers generate the same thrust, the anti-torque imposed on the body by the two groups offset, balancing in the vertical direction and making sure flight stability. According to the user-defined fore and aft direction of the aircraft, the quadcopter can be divided into the cross mode and X mode. The cross mode means that the fore and aft direction points to a certain propeller and the X mode refers to that the fore and aft direction points to the middle of two propellers. For most aircraft adopting X mode, the X mode is harder to control but more flexible. Principle System Structure 2

4 As the picture shows, the Quadopcter consists of a remote controller, a flight controller and four motors. And for the flight controller includes a microcontroller, a remote control signal receiving module, a motor driving module and sensor modules (A gyroscope, an accelerator, an electronic compass and a GPS module). Flying Principle Vertical Motion Vertical motion includes rising or falling vertically. As the text mentioned previously, the quadcopter can keep balance horizontally by four motors maintaining the same rotation rate. As you can see from picture 2.2.1, if the four motors increase to the same speed, the generated thrust will be large enough to overcome the quadcopter weight and rise, and vice versa. Under the condition of no surrounding interruption, the four motors can generate enough thrust to overcome the weight and therefore, the quadcopter can suspend in the air. The quadcopter can fly steadily in the vertical direction as long as the four motors maintain the same speed. Front & Lateral Motion The motor 1 is the head of the aircraft and the motor 2 is the rear. How does the quadcopter move forward? Get a thrust in the horizontal direction: By increasing the speed of the motor 2 and the thrust increases in the rear. By decreasing the speed of the motor 1, the thrust will get reduced in the head. In this case, the aircraft will move forward. At the same time, by maintaining the speed of the motor 3 and 4 to keep the anti torque balance, the aircraft will fly forward steadily and vice versa. Since the quadcopter is symmetrical in the middle, the action of controlling the quadcopter forward or laterally is similar. Just keep in mind, the control of the two groups of motors 3

5 should be reversed while trying to fly the aircraft laterally. For example, by keeping the speed of the motor 1 and 2 the same, increasing the speed of the motor 4 and decreasing the speed to the left and the aircraft will move left. of the motor 3, it will generate horizontal thrust Yawing Motion The three kinds of motion mentioned above all happen in the directions of the three axes. Next, we'll introduce the motion around the three axes. Yawing motion is the rotation in the horizontal direction, namely rotation around the Z-axis. During the rotation, it will form an anti-torque opposite to the rotation due to air resistance. Yawing rotation is realized by using the reverse torque. When the aircraft suspends, the speed of the four motors is the same, which can offset torque in both horizontal and vertical direction, and achieve balance. When the speed of the four motors is different, unbalanced anti-torque will cause horizontal rotation and the aircraft will deviate from the route. As the picture shows, by increasing the speed of the motor 1 and 2, and decreasing that of the motor 3 and 4, the clockwise anti-torque generated by the motor 1 and 2 will be larger than the counter clockwise anti-torque generated by the motor 3 and 4, causing clockwise rotation of the aircraft horizontally and generating no vertical displacement when there is no change in the thrust upside. Pitch and Roll Motion Pitch motion refers to the rotation in the Y-axis direction while the roll motion refers to the rotation in the X-axis direction. As the picture shows, by increasing the speed of the motor 1 and decreasing that of the motor 2, and keeping the same of the variable quantity as well as the speed of the motor 3 and 4: The thrust of the head is larger than that of the rear. The unbalanced torque makes the body rise. Similarly, the roll motion is realized by reducing the speed of the motor 1 and increasing that of the motor 2, generating a torque forward. The principle of the roll and pitch motion is the same due to symmetry in the middle. By keeping the speed of the motor 1 and 2 unchanged, and changing the speed of motor 3 and 4, it'll generate unbalanced torque and make the aircraft rotate around the X-axis direction. 4

6 Control Procedure The remote controller sends out control command, such as take-off or flying left. The control signal is received wirelessly. A remote control signal receiving module receives a control signal, which is converted into PWM, PPM or other signals and then transmitted to the flight controller. Micro controller uses the remote control signal and the sensor's value (the current state of the aircraft, such as acceleration, direction and other information) to control the four motor and achieve the desired action through the PWM. Since the four-motor combination control can only reach to six directions, which is an under actuated system. So here we must have a flight controller to control the whole system. In the flight controllers, sensors such as gyroscope and accelerator are dispensable. Micro controller can calculate data from the two sensors, get the current aircraft's attitude and then adjust the rotation rate with algorithms such PID to keep the stability. Sure you can add an electronic compass to get the direction or a GPS module to get the geographic location. Simply speaking, the quadcopter is system with two closed-loops to control---the large loop gets input volume from the remote receiving device and the small loop acquires input volume from the attitude sensor. Generally speaking, the quadcopter kit includes an aircraft and a remote controller, the two of which controls instructions through the CoreRF transmission. The quadcopter is composed of a frame, Microduino-CoreRF, Microduino-Motion and other modules. For Microduino-motion, it integrates a three-axis gyroscope + a three-axis accelerator(mpu6040), a magnetic field intensity sensor(hmc5883l) and a digital pressure sensor(bmp180), and have communication through IIC. MPU6050 is the most important attitude sensor with a three-axis accelerator and a three-axis gyroscope integrated inside, which not only offsets adjustment errors for the combination of a three-axis accelerator and a three-axis gyroscope, and also has a built-in low pass filter. 5

7 Buildup and Debugging Bill of Materials 6

8 7

9 8

10 Please be noted of the electrode of the two wires, which is "red wire connects to red wire" and "black to black". Make sure all wires are connected well in order to prevent accident while flying. Program Download The code of the quadcopter: MultiWii_for_Microduino Programming Stack Microduino-CoreRF and Microduino-USBTTL together. Connect the Microduino-USBTTL with USB cable and prepare to upload the program. Note: You'd better upload the programs before stacking all the modules together. Open the Arduino IDE for Microduino environment(reference of setting up: AVR Core:Getting started) Click File, confirm board card ( Microduino-CoreRF) selected rightly, and choose the corresponding port number (COMX). Click File -> Open, browse to the project program address, and click "MultiWii_for_CoreRF.ino" to open it. 9

11 After confirming all these are right, click " " to download the program to the development board. Microduino-USBTTL download module is used when download programs and debug serial ports and correct the quadcopter, and you can not stack it at other time. Operating Instruction Correction Guide of Qaudcopter Autocorrection(recommended) After programming, under the configuration mode of free host computer by default, you can play on getting. The ways of gyro calibration, self-stabilization and unlocking in this mode by default are as following configuration: It will automatically correct the gyroscope on starting up. Open the self-stabilization function and self-stabilization mode. AUX unlocking mode is invalid by default, and it adopts traditional unlocking way. Manual Correction When you want to correct the quadcopter manually, you can refer to the following steps: Close the automatic correction function. You must configure manually after close the automatic correction. Open the config.h file in the quadcopter code, and note all the following code: //#define MICRODUINO_AUTO_CALIBRATING // configuration of the free host computer, autocorrection of the gyroscope on starting up //#define MICRODUINO_AUTO_ANGLE //configuration of the free host computer, and open of the configuration of the self-stabilization function //#define MICRODUINO_AUTO_ARM //configuration of the free host computer, AUX1 channel a key to unlock. At this time, the traditional unlocking way is invalid. Connect the quadcopter to the computer. Connect the computer with the Microduino-USBTTL in the quadcopter with USB cable. Confirm Microduino-CoreRF and Microduino-10DOF have been stacked normally. Put the quadcopter right horizontally. Make sure that the quadcopter is level on the desk, to make well preparation for the following correction. 10

12 Connect the host computer software Open the host computer program of the corresponding type in MultiWiiConf folder.(note:java environment is needed) On the left of the host computer software, connect PORT COM with corresponding port. Set PID parameter. We recommend you load our configuration file. On the left of the host software, LOAD choose the files in \MultiWiiConf\Microduino.mwi. You can also complete the modification of the PID through dragging the values on the counterpart with the left key on the mouse. Click WRITE to write the setting into flight control. Open the self-stabilization mode. (important) Find the corresponding ANGLE function of AUI1 in the channel map area of the host computer. Activate LOW, MID and HIGH.(Click the left mouse button on the empty space, and the gray square will change into white, then the activation is completed. ) Click WRITE to write the setting into the flight control. And the configuration is completed. Accelerometer correction. Click CALIB_ACC button. About during 5s, just wait for the data smooth. Click WRITE to write the values into the flight control, to complete the correction. 11

13 Debugging with sensor values. Lean the body of the fuselage to the right( lift the left side up): The values of ACC_ROLL and GYRO_ROLL increase. The value of ACC_Z decreases. Make the fuselage lean forward(lift the tail up): The values of ACC_PITCH and GYRO_PITCH increase. The value of ACC_Z decreases. Make the fuselage rotate in clockwise direction(yaw): The value of CYRO_YAW increases. The fuselage keeps level: The value of ACC_Z is positive. After the correction, we recommend that download Microduino-USBTTL] module to reduce the weight of the quadcopter. Joypad Remote Controller Guide For setup process, you can refer to the following page: Microduino Joypad Getting Started Guide of the Usage of Joypad Configuration of Joypad communication mode* You can refer to the following page for mode configuration: For Quadcopter When we use Microduino-CoreRF as the communication, Joypad pick "Quadro" accordingly. Instruction of Joypad Battery* Special attention should be paid to the battery instruction:instruction for Battery Guide of Joypad Unlocking/Locking Traditional Method Confirm the corresponding switch state of Joypad: Whether locked or unlocked, you need confirm the state of Joypad switch is as following: Dial Joypad top left shift switch down(the throttle lock is open). Dial Joypad top right shift switch up(the rocker amplitude is the largest). 12

14 Initialization of the quadcopter: Place the quadcopter on the horizontal ground and open the power supply. Wait the indicator light on the quadcopter stop flashing. Unlock: Turn the left stick to the rightest from the midst, and wait for about 2S. If the indicator light keep lighting, it is unlocked. Otherwise, turn the left stick to the midst, and operate this step again. If you can't unlock after many times of attempt, you need to reset the core of the quadcopter and then try again. Lock: Under the situation that it is unlocked, and the quadcopter stay still Turn the left stick to the leftest from the midst and wait for about 2S. If the indicator light goes out, it is locked. Otherwise, turn the left stick to the midst and reoperate this step. A Key Method Modify the cod, and start a key to unlock. Open the config.h file in quadcopter code, and cancel the following code comments, and download quadcopter program again: 1. define MICRODUINO_AUTO_ARM //free host computer configuration, and AUX1 channel a key to unlock. The traditional unlocking method is invalid at this time. Confirm the state of the corresponding switch of Joypad: Whether locking of unlocking, you need to make sure the state of Joypad switch is as following: Dial the Joypad top left shift switch down(the throttle lock is open). Dial the Joupad top sight shift switch up(the rocker amplitude is the largest). The quadcopter's AUX1 channel is low(key1 button control). Quacopter initialization: Pu the quadcopter level on the ground and open the power supply. Wait the indicator light on the quadcopter stop blinking(if it is blinking all the time, please check whether the AUX1 channel is low). Unlock: Press the key1 of Joypad down, and put the AUX1 channel high. If the indicator light keep lighting, it is unlocked. If it can't be unlocked after many times of attempt, you should reset the core of the quadcopter and try again. Lock: 13

15 Under the situation that it has been unlocked, and the quadcopter is still Press key1 of Joypad down, and put AUX1 channel low. If the indicator light goes out, it is locked. Control Guide of Joypad Be sure to read the following letters, to guarantee your security: The quadcopter is unlocked, and put on the open area. Make sure your Joypad has enough power. Make sure you won't be in the quadcopter unlocking state, and close Joypad at first. The direction of the nose of quadcopter is that of the orange oar. Before remove the lock of the throttle, make sure that the throttle of Joypad is closed(adjust the left rocker to the lowest). For the beginners, the following operations are recommends to improve the precision of the control to make the flight more stable. Dial the Joypad top right shift switch down(rocker amplitude is minimal). Next, you can prepare for the flight: Dial the Joypad top left switch up(close the throttle lock). 14 Gently push the throttle to make the four propellers rotate.

16 Step on the gas slowly, make the quadcopter rise to around 1m, in order to avoid the near-earth airflow interference. Then control the balance of the quadcopter with the bearing rocker. Attention Caution of operation Open ( dial up) the top left throttle control switch to control. You can shake the rocker, and watch the change on the screen. The switch on the right is precision adjustment switch. Dialing it up can control significantly, otherwise, it can be only controlled at small amplitude, which is good for stable control. The left rocker controls the throttle vertically. The upper the rocker is, the larger the throttle is, the larger the motivation is and the higher it flies. Control the quadcopter to rotate horizontally in the horizontal direction. The right rocker controls the movement to front and back direction vertically. Up is front, and down is back. And control movement to right and left horizontally. Although the above contents list a lot of problems that should be paid attention to, they need to be summarized here. For installation The four propellers of the quadcopter are installed in order. If you install wrongly, it is likely to lead to that the aircraft can't fly. The positive and negative of the lithium battery. The red line is for the positive pole, and the black line is for the negative pole. The circuit is easy to burn out once connect wrongly. Especially when supply power to Microduino-Joypad, because there is no design for avoiding plugging inversely, it should be noted. For adjustment of the parameters Refer to the content of section 4 to adjust the PID parameter of the aircraft and the flight mode. And you'd better modify them on the basis of the recommended configuration. If you want to manually modify the PID parameters, you d better modify one parameter at one time, otherwise it is difficult to see which parameters work. For debugging You must correct the controller(microduino-joypad)and aircraft, or it is easy to cause the aircraft flying unstably. For the flight control You must choose an empty place to test, such as the playground in the school, and larger lawn in the park. Before unlocking with the remote controlled, please dial the top left switch to the bottom(close the throttle), and when start the test, please turn the throttle to the lowest at first to avoid accidents. If you want to turn off the aircraft, you must switch off the power of the quadcopter, and then switch off the power of the remote controller, or the quadcopter will be out of control, and it is easy to cause accidents. For charging/dry battery 15

17 The aircraft plate has the function of charge the battery of the aircraft directly, so you only need to plug the USB cable to supply power to the baseboard directly. Joypad adopts dry battery to supply power, and you should dial the battery selection switch to Dry bat. Set up the dry battery, and on supplying power to joypad with USB cable, pull out at once(it can't be charged with USB cable for a long time after installing the dry battery), then you can successfully activate the dry battery to supply power. If other problems appear, please put forward in the discussion part. 16

Hero 550 User Manual

Hero 550 User Manual Hero 550 User Manual IDF 1.01 2014.10.28 version Thanks for purchasing Hero-550.Please regularly visit Hero-550 web page at www.idea-fly.com which is updated regularly. product information,technical updates

More information

U846. headless flying quad PRODUCT PARTS. 1. Quadcopter. Clockwise Blade A. Counter-clockwise Blade B. Counter-clockwise Blade B

U846. headless flying quad PRODUCT PARTS. 1. Quadcopter. Clockwise Blade A. Counter-clockwise Blade B. Counter-clockwise Blade B PRODUCT PARTS U846 headless flying quad 1. Quadcopter Clockwise Blade A Counter-clockwise Blade B Counter-clockwise Blade B Clockwise Blade A Clockwise Blade A Counter-clockwise Blade B USB Power 1 Power

More information

GT p HD FPV 4 Channel RC Quadcopter. Quadcopter Overview Remote Control Overview

GT p HD FPV 4 Channel RC Quadcopter. Quadcopter Overview Remote Control Overview GT-4160 720p HD FPV 4 Channel RC Quadcopter 1 2 3 4 5 6 7 8 9 10 11 12 13 Quadcopter Overview Remote Control Overview Headless Mode Explained Remote Control Battery & Pairing Remote Control Mode FPV Screen

More information

GIGA Commercial Drone. Owner s Manual. For Owner s Manual updates, warranty information, and support, visit:

GIGA Commercial Drone. Owner s Manual. For Owner s Manual updates, warranty information, and support, visit: GIGA -6000 Commercial Drone Owner s Manual For Owner s Manual updates, warranty information, and support, visit: www.mota.com/giga-6000 Please read the Owner s Manual before your first flight. It has information

More information

VENTO WIFI DRONE WITH LIVE STREAMING CAMERA

VENTO WIFI DRONE WITH LIVE STREAMING CAMERA VENTO WIFI DRONE WITH LIVE STREAMING CAMERA INSTRUCTION MANUAL THANK YOU. Thank you for your purchase of Protocol s Vento Wifi Drone with Live Streaming Camera. You are about to experience the best of

More information

DJI Flamewheel F550 RTF package DEVO 7 Setup for NAZA V2

DJI Flamewheel F550 RTF package DEVO 7 Setup for NAZA V2 Step 1 - Set Fixed ID on the transmitter Skip this part if you have a brand new DJI F550 RTF Package, we have already done before we ship. Inside the drone, the RX701 Reciever, if it s flashing Red rapidly,

More information

USER GUIDE AND MANUAL

USER GUIDE AND MANUAL Specifications: Item No.: X5SC Function: up/down, forward/backward, turn left / Right,With GYRO /Flash lights 360-degree 3D special function. Battery: 3.7V 500mAh Li-poly Charging time: About 100 minutes

More information

Storm Drone 6 GPS DEVO 7 Setup for NAZA-M Lite

Storm Drone 6 GPS DEVO 7 Setup for NAZA-M Lite DEVO 7 Setup for NAZA-M Lite Step 1 - Set Fixed ID on the transmitter! Skip this part if you have a brand new Storm Drone 6 GPS, we have already done before we ship. 1. 2. 3. 4. 5. 6. 7. 8. 9. Turn on

More information

DJI Flamewheel F550 RTF package DEVO 7 Setup for NAZA V2 / Lite

DJI Flamewheel F550 RTF package DEVO 7 Setup for NAZA V2 / Lite Step 1 - Set Fixed ID on the transmitter Skip this part if you have a brand new DJI F550 RTF Package, we have already done before we ship. 1. 6. 7. 8. Make sure you have NOTHING plugged into BATT port

More information

Instructional Manual

Instructional Manual Instructional Manual 1. Parts 1. The vice-blade steering engine can be divided into levels of 25%, 50%, 75%, and 100% rudder power. The user can select any one of these levels according to their flying

More information

SunFounder. Preface. About SunFounder. About Quadcopter Learning Starter Kit for MWC

SunFounder. Preface. About SunFounder. About Quadcopter Learning Starter Kit for MWC Preface About is a technology company focused on Raspberry Pi and Arduino open source community development. Committed to the promotion of open source culture, we strive to bring the fun of electronics

More information

Thank you for purchasing the Intel Aero Ready to Fly Drone! Getting Started

Thank you for purchasing the Intel Aero Ready to Fly Drone! Getting Started Thank you for purchasing the Intel Aero Ready to Fly Drone! The Intel Aero Ready to Fly Drone is a pre-assembled quadcopter that is purposely built for professional drone application developers to enable

More information

dronium TWO AP DRONE with camera

dronium TWO AP DRONE with camera dronium TWO AP TM DRONE with camera INSTRUCTION MANUAL WWW.PROTOCOLNY.COM THANK YOU. Thank you for your purchase of Protocol s Dronium Two AP With Camera. You are about to experience the best of what remote

More information

INSTRUCTION & REFERENCE MANUAL Model no. ODY-2017BF1

INSTRUCTION & REFERENCE MANUAL Model no. ODY-2017BF1 INSTRUCTION & REFERENCE MANUAL Model no. ODY-2017BF1 FOR AGES 14 + Thank you for your purchase of the Oblivion NX Live Streaming HD Video Drone. You re just moments away from creating stunning aerial acrobatics!

More information

U28. Name of Parts 1. Drone. Blade Guard. Battery Cover. Drone Body Blade Motor. Body Light. Camera. Landing Gear. Blade Guard Installation Diagram

U28. Name of Parts 1. Drone. Blade Guard. Battery Cover. Drone Body Blade Motor. Body Light. Camera. Landing Gear. Blade Guard Installation Diagram Name of Parts 1. Drone Blade Guard Drone Body Blade Motor Body Light Camera Landing Gear Blade Guard Installation Diagram U8 TF Card Installation Diagram . Transmitter Power Switch Throttle/ Up and Down

More information

Design and Development of Arduino Uno based Quadcopter

Design and Development of Arduino Uno based Quadcopter Design and Development of Arduino Uno based Quadcopter Vibha Kishor 1, Ms. Swati Singh 2 1 UG Student, Department of Electronics and Communication, Meerut Institute of Technology, Meerut 2 Assistant Professor,

More information

DroneCurriculum.net. Drone Theory & Design: FPV Add-on P a g e 1. FPV Add-on Quadcopter Frame

DroneCurriculum.net. Drone Theory & Design: FPV Add-on P a g e 1. FPV Add-on Quadcopter Frame Drone Theory & Design: FPV Add-on P a g e 1 DroneCurriculum.net FPV Add-on Quadcopter Frame GPS Kit with NAZA-M V2 Flight Controller and Turnigy 9X Transmitter/Receiver Drone Theory & Design: FPV Add-on

More information

Instruction Manual ODY-1765

Instruction Manual ODY-1765 INSPIRING IMAGINATION Instruction Manual ODY-1765 We hope you enjoy your purchase of the Stealth NX-2 Drone and use this Instruction Manual to get your drone to take off! Included Contents 1. Stealth NX-2

More information

THANK YOU. As with any aircraft, this is a precision flying machine. Treat it well and enjoy all the fun it has to offer, flight after flight.

THANK YOU. As with any aircraft, this is a precision flying machine. Treat it well and enjoy all the fun it has to offer, flight after flight. WWW. PROTOCOLNY.COM THANK YOU. Thank you for your purchase of Protocol s Dronium One AP With Camera. You are about to experience the best of what remote control flight has to offer. We strongly recommend

More information

ITEM NO USER MANUAL

ITEM NO USER MANUAL ITEM NO. 35064 USER MANUAL Safety & Precautions 1. Fly in an open wide area without large obstacles like buildings, trees or electric wires within 100 feet as they may distort the GPS signals and you may

More information

USER MANUAL FOR MORE INFORMATION

USER MANUAL FOR MORE INFORMATION USER MANUAL FOR MORE INFORMATION Visit us online at force1rc.com for product information, replacement parts and flight tutorials. ATTENTION: BEFORE FLYING YOUR DRONE, PLEASE WATCH THIS FLIGHT INSTRUCTION

More information

14+ FOR AGES 14 AND UP ITEM NO

14+ FOR AGES 14 AND UP ITEM NO 14+ FOR AGES 14 AND UP ITEM NO. 33743 INTRODUCTION Thank you for purchasing this amazing World Tech Toys product. This drone is suitable for indoor and outdoor flight. Please carefully read the entire

More information

AXIS II RC DRONE WITH CAMERA

AXIS II RC DRONE WITH CAMERA AXIS II RC DRONE WITH CAMERA THANK YOU. Thank you for your purchase of Protocol s Axis II RC Drone With Camera. You are about to experience the best of what remote control flight has to offer. We strongly

More information

FuriBee F90 Wasp Mini RC Racing Quadcopter

FuriBee F90 Wasp Mini RC Racing Quadcopter FuriBee F90 Wasp Mini RC Racing Quadcopter User Manual V1.0 Warnings and Safety Notes Thanks for purchasing F90 WasMiniquadcopter.Please regularly visit F90 web page at www.gearbest.com which is updated

More information

S.T.E.M. Integrated Robotics Detailed Outline

S.T.E.M. Integrated Robotics Detailed Outline S.T.E.M. Integrated Robotics Detailed Outline Unit 1: An Introduction to Drones Time: 4 Days Lesson 1.1 Introduction to MINDS-i 1. A brief intro of how MINDS-i defines STEM education and STEM Integrated

More information

GIGA Owner s Manual. For Owner s Manual updates, warranty information, and support, please visit:

GIGA Owner s Manual. For Owner s Manual updates, warranty information, and support, please visit: GIGA -8 Owner s Manual For Owner s Manual updates, warranty information, and support, please visit: www.mota.com/giga-8 Please read this manual carefully before flying! It has information you need to know

More information

GPS SHADOWDRONE P70-GPS INSTRUCTION MANUAL CONTENTS

GPS SHADOWDRONE P70-GPS INSTRUCTION MANUAL CONTENTS Visit our YouTube Channel for How to Videos and More! P70-GPS GPS SHADOWDRONE INSTRUCTION MANUAL CONTENTS INTRODUCTION...2 WARNING...3 MAINTENANCE...4 DRONE PARTS...4 REMOTE CONTROL...4 QUADROTOR LI-POLYMER...5

More information

KAPTUR GPS WI-FI DRONE WITH HD CAMERA

KAPTUR GPS WI-FI DRONE WITH HD CAMERA KAPTUR GPS WI-FI DRONE WITH HD CAMERA THANK YOU. Thank you for your purchase of Protocol s Kaptur GPS Wi-Fi Drone with HD Camera. You are about to experience the best of what remote control flight has

More information

JETJAT ULTRA. Owner s Manual. For Owner s Manual updates, warranty information, and support, please visit: https://www.mota.com/ultra.

JETJAT ULTRA. Owner s Manual. For Owner s Manual updates, warranty information, and support, please visit: https://www.mota.com/ultra. JETJAT ULTRA Owner s Manual Ages 8+ For Owner s Manual updates, warranty information, and support, please visit: https://www.mota.com/ultra Please read this manual carefully before flying! It has valuable

More information

U845Wifi User Manual

U845Wifi User Manual U845Wifi User Manual Catalog Important Statement 3 Safety Precautions 3 Safe Notice for Drone Battery 4 Charging Instruction for Drone Battery 5 Check List Before Flight 5 Instruction for Drone and Transmitter

More information

LIVE STREAMING HD VIDEO DRONE

LIVE STREAMING HD VIDEO DRONE INSTRUCTION & REFERENCE MANUAL Model no. ODY-1811FPV FOR AGES 14 + LIVE STREAMING HD VIDEO DRONE Thank you for your purchase of the Galaxy Seeker II Live Streaming HD Video Drone. You re just moments away

More information

AERIAL ACROBAT VIDEO DRONE. Item No User s Guide

AERIAL ACROBAT VIDEO DRONE. Item No User s Guide AERIAL ACROBAT VIDEO DRONE Item No. 205982 User s Guide Thank you for purchasing the Sharper Image Aerial Acrobat Video Drone. Please read these instructions prior to using this device for the first time.

More information

4CH 2.4G REMOTE CONTROL QUADCOPTER INSTRUCTION MANUAL IMPLEMENT STANDARD: GB/T

4CH 2.4G REMOTE CONTROL QUADCOPTER INSTRUCTION MANUAL IMPLEMENT STANDARD: GB/T AGES 12+ X5SW 4CH 2.4G REMOTE CONTROL QUADCOPTER 1 INSTRUCTION MANUAL IMPLEMENT STANDARD: GB/T26701-2011 Main characteristics Four-axis structure is applied,which makes the quadcopter more flexible and

More information

Grasshopper F210 Racing RC Quadcopter User Manual

Grasshopper F210 Racing RC Quadcopter User Manual Grasshopper F210 Racing RC Quadcopter User Manual V2.0 Shenzhen Idea-Fly Technology Co., Ltd Warnings and Safety Notes Thanks for purchasing F210 quadcopter.please regularly visit F210 web page at www.ide-fly.com

More information

TITAN Quadcopter Assembly Instructions 1

TITAN Quadcopter Assembly Instructions 1 TITAN Quadcopter Assembly Instructions Even if you have built a multirotor before; please read these instructions carefully! There are a lot of tricks in here that can save you headaches in the future

More information

User Manual V LED

User Manual V LED User Manual V1.4 2017.08 LED Searching for Keywords Search for keywords such as battery and install to find a topic. If you are using Adobe Acrobat Reader to read this document, press Ctrl+F on Windows

More information

Content. 5. Appendix Technical Specifications... 13

Content. 5. Appendix Technical Specifications... 13 User Manual v1.0 Content Content... 1 1. Disclaimer and Warning... 2 2. XLink at a glance... 2 System requirements... 2 Parts list... 2 What s included... 3 Terminology... 3 3. 2.4G Bluetooth digital transmitter...

More information

TABLE OF CONTENTS IN TR O DUCT I ON S AFETY & PRE CAUTIONS D R O NE DI AGRAM TRAN SMI T T E R DIAGRAM INSTALLING THE TRANSMITTER BATTERY

TABLE OF CONTENTS IN TR O DUCT I ON S AFETY & PRE CAUTIONS D R O NE DI AGRAM TRAN SMI T T E R DIAGRAM INSTALLING THE TRANSMITTER BATTERY ITEM NO. 33061 TABLE OF CONTENTS IN TR O DUCT I ON 3 S AFETY & PRE CAUTIONS 3 D R O NE DI AGRAM 4 TRAN SMI T T E R DIAGRAM 4 INSTALLING THE TRANSMITTER BATTERY 5 INSTALLING THE DRONE BATTERY 5 ATTACHING

More information

User Manual V

User Manual V User Manual V1.4 2017.08 Searching for Keywords Search for keywords such as battery and install to find a topic. If you are using Adobe Acrobat Reader to read this document, press Ctrl+F on Windows or

More information

U818A WIFI Operations Guide

U818A WIFI Operations Guide U818A WIFI Operations Guide Catalog Important Statement 3 Safety Precautions 3 Safe Notice for Drone Battery 4 Charging Instruction for Drone Battery 5 Checklist before Flight 5 Instruction for Drone and

More information

User Manual. SwellPro. Join our facebook group "Swellpro Splash Drone Owners" for product updates and support.

User Manual. SwellPro. Join our facebook group Swellpro Splash Drone Owners for product updates and support. User Manual SwellPro www.swellpro.com Join our facebook group "Swellpro Splash Drone Owners" for product updates and support. Thank you for purchasing this SwellPro Splash Drone. We have designed and manufactured

More information

Thank you for your purchase of the Neptune II Live Streaming HD Video Drone. You re just moments away from creating stunning aerial acrobatics!

Thank you for your purchase of the Neptune II Live Streaming HD Video Drone. You re just moments away from creating stunning aerial acrobatics! INSTRUCTION & REFERENCE MANUAL Model no. ODY-1950WIFI FOR AGES 14 + CAMERA DRONE 1 Thank you for your purchase of the Neptune II Live Streaming HD Video Drone. You re just moments away from creating stunning

More information

TABLE OF CONTENTS INTRODUCTION 3 SAFETY & PRECAUTIONS 3 DRONE DIAGRAM 4 TRANSMITTER DIAGRAM/PHONE CRADLE INSTALLATION 4 INSTALLING THE LANDING SKIDS 5

TABLE OF CONTENTS INTRODUCTION 3 SAFETY & PRECAUTIONS 3 DRONE DIAGRAM 4 TRANSMITTER DIAGRAM/PHONE CRADLE INSTALLATION 4 INSTALLING THE LANDING SKIDS 5 ITEM NO. 33050 TABLE OF CONTENTS INTRODUCTION 3 SAFETY & PRECAUTIONS 3 DRONE DIAGRAM 4 TRANSMITTER DIAGRAM/PHONE CRADLE INSTALLATION 4 INSTALLING THE LANDING SKIDS 5 INSTALLING THE TRANSMITTER BATTERY

More information

INSTRUCTION MANUAL SPECIFICATIONS:

INSTRUCTION MANUAL SPECIFICATIONS: INSTRUCTION MANUAL XK X250 Alien Specifications CONTENTS OF THE BOX: 1 x Quadcopter 1 x 2.4 GHz remote (6x AA-batteries not included) 1 x 3.7V 780 mah Li-po battery 4 x Spare propeller 1 x Charger 1 x

More information

USER GUIDE. ALPHA Drone HD 720p Quadcopter

USER GUIDE. ALPHA Drone HD 720p Quadcopter USER GUIDE ALPHA Drone HD 720p Quadcopter Languages English 4 English Community /kaiserbaas Tech support: e: helpdesk@kaiserbaas.com w: www.kaiserbaas.com/support p: Australia 1300 302 306 (business hours,

More information

FPV 720P 120 Wide-angle HD Camera. Heading Hold Mode / 360 Flip / Low Battery Alarm / Out of Range Alarm / One Button Take Off/Landing U28-1

FPV 720P 120 Wide-angle HD Camera. Heading Hold Mode / 360 Flip / Low Battery Alarm / Out of Range Alarm / One Button Take Off/Landing U28-1 FPV 720P 120 Wide-angle HD Camera First Person View / Aerial Photography / Real-time Transmission / Live Video and Photo Heading Hold Mode / 360 Flip / Low Battery Alarm / Out of Range Alarm / One Button

More information

User Manual V1.9. (for SuperX Firmware v1.08 )

User Manual V1.9. (for SuperX Firmware v1.08 ) User Manual V1.9 (for SuperX Firmware v1.08 ) 目 录 XAircraft SuperX Overview... 2 Products Specification... 2 SuperX Construction... 2 SuperX Features... 3 SuperX Interface... 4 SuperX Flight Mode... 7

More information

Dragonfly. Notes: Ensure that the propellers are mounted on the correct motors to avoid crashing.

Dragonfly. Notes: Ensure that the propellers are mounted on the correct motors to avoid crashing. Dragonfly Capture Your Adventures in 4K with Shake-Free Shots Ensure that the propellers are mounted on the correct motors to avoid crashing. Assembly Gimbal & Camera 1) Unscrew the camera fastener from

More information

Index Terms Quadcopter, Unmanned Aerial Vehicle, Radial Basis Function Neural Network. Displacement of x axis ey. Displacement of y axis ez

Index Terms Quadcopter, Unmanned Aerial Vehicle, Radial Basis Function Neural Network. Displacement of x axis ey. Displacement of y axis ez Modeling and Control Design of Quad copter Failsafe System Chun-Yi Lin and Wu-Sung Yao Department of Mechanical and Automation Engineering, National Kaohsiung First University of Science and Technology,

More information

INSTRUCTION MANUAL VR HD NANO DRONE

INSTRUCTION MANUAL VR HD NANO DRONE Age: 14+ INSTRUCTION MANUAL VR HD NANO DRONE Thank you for purchasing our VR HD Nano Drone. Please read the instructions carefully to fully learn about the drone and fly it safely. Save this instructions

More information

OWNER S MANUAL AGES 8+ JETJAT Nano-C.

OWNER S MANUAL AGES 8+ JETJAT Nano-C. AGES 8+ TM OWNER S MANUAL JETJAT Nano-C TM For Owner s Manual updates, warranty information, instructional videos, and support, please visit: www.mota.com/jetjat-nano-c Table of Contents Fly Safely! 3

More information

DR-001 Pocket Selfie Drone Quadcopter

DR-001 Pocket Selfie Drone Quadcopter DR-001 Pocket Selfie Drone Quadcopter Smartphone WiFi Remote Control - You can control your drone with wifi connection to your phone(ios or android),your phone will receive real-time transmission from

More information

On Implementing a Low Cost Quadcopter Drone with Smartphone Control

On Implementing a Low Cost Quadcopter Drone with Smartphone Control On Implementing a Low Cost Quadcopter Drone with Smartphone Control Mohammad Masoud, Yousef Jaradat, Mohammad Farhoud, Ammar Almdallaleh Computer and Communication Engineering Department Al-Zaytoonah University

More information

safety precautions disclaimer safety precautions

safety precautions disclaimer safety precautions disclaimer It is the responsibility of the user to read the contents of this manual carefully and in full before operating the Q-Cop 450. Once the Q-Cop 450 is put in use, the user has agreed to operate

More information

Autonomous Battery Charging of Quadcopter

Autonomous Battery Charging of Quadcopter ECE 4901 Fall 2016 Project Proposal Autonomous Battery Charging of Quadcopter Thomas Baietto Electrical Engineering Gabriel Bautista Computer Engineering Ryan Oldham Electrical Engineering Yifei Song Electrical

More information

RXS255 INSTRUCTION MANUAL

RXS255 INSTRUCTION MANUAL RXS255 INSTRUCTION MANUAL REQUIRED FOR COMPLETION 6 Channel Transmitter and Receiver 4S 1300 2200 mah LiPo Battery LiPo Battery Charger 5.8G FPV Receiver and Monitor or Goggles WARNING Please read and

More information

Introduction to Drones

Introduction to Drones Introduction to Drones Introduction You can go backwards, you can hover, and you can go straight up or straight down. What is it? It s a bird, it s a plane, no it s a drone! If you are familiar with the

More information

Technical Layout of Harbin Engineering University UAV for the International Aerial Robotics Competition

Technical Layout of Harbin Engineering University UAV for the International Aerial Robotics Competition Technical Layout of Harbin Engineering University UAV for the International Aerial Robotics Competition Feng Guo No.1 Harbin Engineering University, China Peiji Wang No.2 Yuan Yin No.3 Xiaoyan Zheng No.4

More information

尺寸 :4*4inch 材质 :80 书纸印刷 : 单黑 FLIGHTFORCE. for ages 14 + HD/WI-FI DRONE

尺寸 :4*4inch 材质 :80 书纸印刷 : 单黑 FLIGHTFORCE. for ages 14 + HD/WI-FI DRONE 尺寸 :4*4inch 材质 :80 书纸印刷 : 单黑 FLIGHTFORCE HD/WI-FI DRONE for ages 14 + TABLE OF CONTENTS Warnings and Cautions... 1 FCC Information... 7 Location of Parts and Controls... 9 Operation... 11 Replacing The

More information

AutoFlight Documentation

AutoFlight Documentation AutoFlight Documentation Release dev-preview Lukas Lao Beyer August 23, 2015 Contents 1 Overview 3 1.1 Basic Usage............................................... 3 1.2 Important warnings and known issues..................................

More information

...13 With a Parrot Skycontroller 2 alone Accessing the general settings Piloting settings Position, Distances and Limits...

...13 With a Parrot Skycontroller 2 alone Accessing the general settings Piloting settings Position, Distances and Limits... USER GUIDE TABLE OF CONTENTS Compatibility...1 Drones...1 Smartphones...1 Follow...1 Me GPS & Visual tracking Getting...2 started Connecting...2 a drone and a smartphone Connecting...3 a drone and a Parrot

More information

INSTRUCTION MANUAL. Voice Command Quadcopter with 2MP Camera

INSTRUCTION MANUAL. Voice Command Quadcopter with 2MP Camera Ver. 4 INSTRUCTI MANUAL Voice Command Quadcopter with 2MP Camera SKY2913 CAUTI Please retain these instructions for future reference. Ensure that the drone is correctly assembled to prevent any injuries

More information

User Manual V SwellPro

User Manual V SwellPro User Manual V1.0 2017.03 www.facebook.com/swellpro/ SwellPro www.swellpro.com Thank you for purchasing this SwellPro Splash Drone. We have designed and manufactured the Splash Drone to the highest quality

More information

5045R R 14+ ITEM NO

5045R R 14+ ITEM NO 5045 R 504 504 5 5 504 5R 14+ ITEM NO. 33027 CHECKLIST Check the list below to see if all parts are included before using the drone. Item Name Rapid Racing Drone 50 45 Transmitter 5045R Rotor Blades (4

More information

QUADCOPTER OPERATOR S MANUAL. Quadcopter Rotor-Drone

QUADCOPTER OPERATOR S MANUAL. Quadcopter Rotor-Drone APOLLO A1 Quadcopter Rotor-Drone Operator s Manual Thank you for purchases the Idea-Fly Apollo A1 GEN2 quadcopter. The Apollo A1 is a ready-to-fly quad-rotor heli designed for quadcopter enthusiasts and

More information

UgCS for DJI. User Manual. mobile companion version SPH Engineering

UgCS for DJI. User Manual. mobile companion version SPH Engineering mobile companion version 2.5 User Manual 2017 SPH Engineering www.ugcs.com Table of Contents 1. Preface... 3 2. Drone connection and first flight... 4 2.1. Getting ready... 4 2.2. First flight... 4 2.3.

More information

Quadcopter Video Surveillance UAV

Quadcopter Video Surveillance UAV By Anton Nakazawa Bai Xiang Jin anak@uvic.ca barryjin@uvic.ca URL: http://web.uvic.ca/~barryjin/ Supervisor: Michael Adams Group: 7 Dept. Electrical and Computer Engineering University of Victoria All

More information

Gesture Controlled UAV Proposal

Gesture Controlled UAV Proposal Gesture Controlled UAV Proposal Ben Schreck and Lee Gross 10/29/2014 1 Overview There are currently two types of unmanned aerial vehicles (UAVs): autonomous aircrafts and remotely piloted aircrafts. Remotely

More information

PISO-CAN200-D/T PISO-CAN400-D/T DASYLab CAN Driver User s Manual

PISO-CAN200-D/T PISO-CAN400-D/T DASYLab CAN Driver User s Manual PISO-CAN200-D/T PISO-CAN400-D/T DASYLab CAN Driver User s Manual Warranty All products manufactured by ICP DAS are warranted against defective materials for a period of one year from the date of delivery

More information

GPS Tour User Manual. Introduction. Getting Started. Step 1) Know your Watch:

GPS Tour User Manual. Introduction. Getting Started. Step 1) Know your Watch: User Manual Introduction Thank you for purchasing the GPS Tour Watch. This GPS Watch is packed with personal Training features like speed, trip time, laps, etc. Watch features include but not limited to

More information

FAA APPROVED ROTORCRAFT FLIGHT MANUAL SUPPLEMENT STC SR01164SE

FAA APPROVED ROTORCRAFT FLIGHT MANUAL SUPPLEMENT STC SR01164SE FAA APPROVED ROTORCRAFT FLIGHT MANUAL SUPPLEMENT STC SR01164SE Swing Suspension System With Talon LC Hydraulic Cargo Hook Airbus Helicopter Models AS350B, AS350B1, AS350B2, AS350B3 AS350BA & AS350D R/N

More information

Version Software User Guide

Version Software User Guide 06 Version 0.0. Software User Guide Long Range LLC. 6 Tannery Street Franklin, NH 05 Table of Contents Introduction Features... Included... Installation 5 Migrating Your Personal Access File... 7 Set Range

More information

Autonomous Battery Charging of Quadcopter

Autonomous Battery Charging of Quadcopter ECE 4901 Fall 2016 Final Report Autonomous Battery Charging of Quadcopter Team 1722: Thomas Baietto Electrical Engineering Gabriel Bautista Computer Engineering Ryan Oldham Electrical Engineering Yifei

More information

Information Destruction Architecture and platform - paper shredders. Brian Brigham John Ekholm 11/2006

Information Destruction Architecture and platform - paper shredders. Brian Brigham John Ekholm 11/2006 Information Destruction Architecture and platform - paper shredders Brian Brigham John Ekholm 11/2006 product analysis // functional model The functional model displays the functional hierarchy of the

More information

FAA APPROVED ROTORCRAFT FLIGHT MANUAL SUPPLEMENT

FAA APPROVED ROTORCRAFT FLIGHT MANUAL SUPPLEMENT FAA APPROVED ROTORCRAFT FLIGHT MANUAL SUPPLEMENT STC SR01943SE R/N S/N Cargo Hook Kit 1 of 22 Record of Revisions Rev. Date (s) Reason for Revision 0 Dec. 5, 2008 All Initial Release. 1 Sept. 10, 2015

More information

Bio-Well GloveManual

Bio-Well GloveManual Bio-Well Glove Manual Ver. 10-2017 Bio-Well GloveManual October 2017 Contents Terms...3 Purpose...4 Important note...4 Technical Information about Bio-Well device...5 Important Remarks and Safety Measures...5

More information

Quadcopter Design and Dynamics.

Quadcopter Design and Dynamics. Lecture 2: Quadcopter Design and Dynamics Lecture 2 Page: 1 Quadcopter Design and Dynamics colintan@nus.edu.sg Lecture 2: Quadcopter Design and Dynamics Page: 2 Objectives of this Lecture The objectives

More information

VIDEO CAMERA DRONE WITH LED LIGHTS

VIDEO CAMERA DRONE WITH LED LIGHTS VIDEO CAMERA DRONE WITH LED LIGHTS Item No. 205981 User s Guide Thank you for purchasing the Sharper Image Video Camera Drone with LED Lights. Please read these instructions prior to using this device

More information

Best Selection for Your Business. Electronic Pricing Scale. User s Manual. (Model: TP-31)

Best Selection for Your Business. Electronic Pricing Scale. User s Manual. (Model: TP-31) Best Selection for Your Business Electronic Pricing Scale User s Manual (Model: TP-31) CATALOG 1. Foreword... 2 1.1. Introductions... 2 1.2. Main functions and features... 2 1.3. Specification... 2 1.4.

More information

HIL-Based Fuzzy PID Controller for Quadcopter

HIL-Based Fuzzy PID Controller for Quadcopter I J C T A, 9(24), 2016, pp. 49-56 International Science Press HIL-Based Fuzzy PID Controller for Quadcopter Rijo Thomas* and T. Ananthan** ABSTRACT This paper presents the design of fuzzy logic controller

More information

Scanning Devices Label Counting Table Operations Manual

Scanning Devices Label Counting Table Operations Manual Scanning Devices Label Counting Table Operations Manual This document describes the functions performed by counting table components and suggests procedures for setting up and operating the counting table.

More information

Xerox Nuvera Xerox Production Stacker Operator Manual

Xerox Nuvera Xerox Production Stacker Operator Manual Software Version 11.6 October 2012 702P00782 Xerox Nuvera Xerox Production Stacker Xerox Nuvera 100/120/144/157 EA Production System Xerox Nuvera 100/120/144 MX Production System Xerox Nuvera 200/288/314

More information

Mechatronic systems used in aviation Presenter: Varga Ádám Óbuda University Bánki Donát Faculty of Mechanical & Safety Engineering

Mechatronic systems used in aviation Presenter: Varga Ádám Óbuda University Bánki Donát Faculty of Mechanical & Safety Engineering Mechatronic systems used in aviation Presenter: Varga Ádám Óbuda University Bánki Donát Faculty of Mechanical & Safety Engineering Importance of aviation: A lot of people travel by aircraft daily, but

More information

Aistin IoT Starter Kit

Aistin IoT Starter Kit Aistin IoT Starter Kit Aistin IoT Starter Kit A simple tool, providing a fast Proof-of-Concept platform for IoT solutions The Aistin IoT Starter Kit typical configuration includes a set of wireless sensors

More information

CompeGPS Competition version 6 Manual. CompeGPS Competition version 6 Manual. CompeGPS Team S.L.

CompeGPS Competition version 6 Manual. CompeGPS Competition version 6 Manual. CompeGPS Team S.L. CompeGPS Competition version 6 Manual Index 1 INTRODUCTION... 3 2 COMPEGPS WIZARD... 4 2.1 COMPETITION WIZARD... 4 2.1.1 How to create a new competition... 4 2.2 PILOTS REGISTRY... 5 2.2.1 How to add pilots...

More information

UgCS for DJI. User Manual. mobile companion version 2.6_beta SPH Engineering

UgCS for DJI. User Manual. mobile companion version 2.6_beta SPH Engineering mobile companion version 2.6_beta User Manual 2017 SPH Engineering www.ugcs.com Table of Contents 1. Preface... 3 2. Drone connection and first flight... 4 2.1. Getting ready... 4 2.2. DJI verification

More information

HOBO Plug Load Logger (UX ) Manual

HOBO Plug Load Logger (UX ) Manual HOBO Plug Load Logger (UX120-018) Manual The HOBO Plug Load logger is designed to monitor energy consumption of AC-powered plug in loads. This compact device can be used as a power meter with its built-in

More information

Deliverable 1 Report. Summary. Project Status. UAV Challenge 2016 (Medical Express)

Deliverable 1 Report. Summary. Project Status. UAV Challenge 2016 (Medical Express) Deliverable 1 Report UAV Challenge 2016 (Medical Express) Summary The CanberraUAV 1 design approach is to use up to two VTOL UAVs. The Retrieval UAV will fly along the designated corridor then take a high

More information

Complete User Guide Alpha Drone

Complete User Guide Alpha Drone 1 Complete User Guide Alpha Drone ALPHA DISCOVER: FREEDOM Contents Share your footage with us on social media #KBdiscover To view the entire Kaiser Baas product range visit: www.kaiserbaas.com Join the

More information

Daker DK kva. Parallel installation quick start. Part. LE08927AA-09/15-01 GF

Daker DK kva. Parallel installation quick start. Part. LE08927AA-09/15-01 GF Daker DK 4.5-10 kva Parallel installation quick start Part. LE08927AA-09/15-01 GF Daker DK 4.5-10 kva UK ENGLISH 3 2 Daker DK 4.5-10 kva Index Introduction 2 1 Important Safety Instructions 2 2 Parallel

More information

2% & (+ 2% PSI.

2% & (+ 2% PSI. Warning: If your vehicle has an engine that has spark plugs, be sure they are resistor type spark plugs or you may damage the memory chip of this unit. If the scale unit fails when the engine is running,

More information

Southwestern University. Quadcopter (DRONE) Rules for Use. Quadcopter/drone rules for use established: March 8, 2016.

Southwestern University. Quadcopter (DRONE) Rules for Use. Quadcopter/drone rules for use established: March 8, 2016. Southwestern University Quadcopter (DRONE) Rules for Use Quadcopter/drone rules for use established: March 8, 2016. All departmental drone operators must register quadcopter/drone with the FAA. Operators

More information

TF20 Tray Feeder. Instruction Manual. for JEDEC and IEC Standard Trays

TF20 Tray Feeder. Instruction Manual. for JEDEC and IEC Standard Trays for JEDEC and IEC Standard Trays Instruction Manual 096-0243-003 Data I/O assumes no liability for errors, or for any incidental, consequential, indirect, or special damages, including, without limitation,

More information

Rotary Air Force Marketing, Inc. Presents: THE RAF 2000 ROTOR STABILATOR PATENT PENDING

Rotary Air Force Marketing, Inc. Presents: THE RAF 2000 ROTOR STABILATOR PATENT PENDING Presents: THE RAF 2000 ROTOR STABILATOR PATENT PENDING Box 1236,1107-9 th St W Kindersley, Saskatchewan S0L 1S0 Canada Tel: 306-463-6030, Fax: 306-463-6032 Email: info@raf2000.com Web: http://www.raf2000.com

More information

Imperial Series. Model IMP-425/525/625/825/1000AP IMD-425/525/625/825/1000AP IMP-1025/1200/1500/2000AP IMD-1025/1200/1500/2000AP

Imperial Series. Model IMP-425/525/625/825/1000AP IMD-425/525/625/825/1000AP IMP-1025/1200/1500/2000AP IMD-1025/1200/1500/2000AP Service Manual Imperial Series Model IMP-425/525/625/825/1000AP IMD-425/525/625/825/1000AP IMP-1025/1200/1500/2000AP IMD-1025/1200/1500/2000AP Contents of Service Manual 1. Safety Precautions ------------------------------------------------------------------

More information

INDEX. 1 Introduction. 2 Software installation. 3 Open the program. 4 General parameters. 5 Tuning

INDEX. 1 Introduction. 2 Software installation. 3 Open the program. 4 General parameters. 5 Tuning SET UP MANUAL INDEX 1 Introduction 2 Software installation 3 Open the program 4 General parameters 5 Tuning 2 1 Introduction Here below the instruction to use the FLYJET software. 1.1 Software features

More information

Models TJ30K TJ15K TJ6K TJ3K. Resolution Ratio 1g 0.5g 0.2g 0.1g Calibration graduation 10d 10d 10d 10d

Models TJ30K TJ15K TJ6K TJ3K. Resolution Ratio 1g 0.5g 0.2g 0.1g Calibration graduation 10d 10d 10d 10d Operating Instruction Manual of TJ Series Electronic counting balance ( for following models: TJ3K,TJ6K,TJ15K,TJ30K,TJ3KA,TJ6KA,TJ15KA, TJ30KA) 1. Overview TJ series electronic counting weighing apparatus

More information

DeskDECT Feature Phone

DeskDECT Feature Phone DeskDECT Feature Phone Please read this manual carefully before using your DeskDECT. 1. 2. 2.1 2.2 INTRODUCTION -------------------------------------------------- GETTING STARTED ---------------------------------------------

More information

230Si Quadcopter Instruction Manual

230Si Quadcopter Instruction Manual 230Si Quadcopter Instruction Manual WARNING Please fully read and understand this manual and the operation and all safety aspects required of you for the safe operation of this product. Before use, if

More information

Quadcopter for Rescue Missions and Surveillance

Quadcopter for Rescue Missions and Surveillance IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727 PP 48-52 www.iosrjournals.org Quadcopter for Rescue Missions and Surveillance Pooja Srivastava 1, Tejaswi Ninawe 2, Chitral

More information