Microduino Cube Car USER GUIDE

Size: px
Start display at page:

Download "Microduino Cube Car USER GUIDE"

Transcription

1 Microduino Cube Car USER GUIDE

2 Content Outline... 2 Principle... 2 Document... 2 Debugging... 3 Cube Car Installation... 4 Car Installation...4 Joypad Buildup...7 Joypad Buildup & Debugging...9 Attention Program Description

3 Outline Principle Project: Open source motor driving Cube Robot car. Objective: Using Microduino-Joypad to control the Cube Robot car. Difficulty: High Time-consuming: 3-hour Maker: Microduino Studio-YLB There are many robot cars such as tracking, obstacle and Bluetooth remote controlling car or computer mouse, which shares the same control mode, namely, moving in four directions. Off course, they are different in structure and function. Here we're talking about two-wheel-driving mode. By controlling the rotation direction of two wheels, it can realize moving forward or backward, spinning and other functions, which combines with a universal wheel to keep balance. This Cube Robot car has a simple structure, including wheels, body frame and control system. 1) The wheels adopt two reducer motors with large torque and PWN speed adjustment, making them easy to control. 2) The body structure adopts wooden board with a size of 8cm*8cm*8cm. 3) the whole control system contains four parts: Power supply system o Since the Cube Robot car is small, here we adopt the lithium battery. CPU o The CPU of the car adopts Microduino-Core. Wireless communication o The car adopts Microduino-nRF24 wireless communication, which owns quick response and about 100m control range in the open area. Motor control o It adopts Microduino-Robot DC motor driving motor--a module that can drive two motor and can connect the CPU and the DC motor modules together. Document GitHub Download Joypad Code: Joypad_RC Cube Robot Code: Robot_Microduino 2

4 Debugging Please stack the Microduino-Core and Microduino-USBTTL together, and upload the program from the Microduino-USBTTL to Microduino-Core with a USB cable. Note: Please upload the program before stacking all modules together. Open the Arduino IDE. (If you don't have the IDE, you can refer to the appendix to install it by click [Files] [Open].) Browse to the program address, click Robot_Microduino.ino and open. 3

5 Click " " on the top and compile, click Tools, select the Micrdouino-Core 5V) and the COMX as the port, click " " and download the program to the developing board. Cube Car Installation Car Installation Step1: Use the bracket and the screws to fixate the motor and the wheels on A1. 4

6 Step2: Insert A2 into the slot of A1, and B1 into the top of A1, A3 into the bottom of A1, and then use A4 to fixate. Step3: Connect B2 and C1 to the two sides of B1 respectively. 5

7 Step4: Connect antenna to the bottom of the nrf24 module, stack them with Microduino-Core, then connect them to the battery onto the base board of the Robot; fixate that structure on B1 with screws. Step5: Fixate C2 onto the corresponding position of A2. 6

8 Step6: Connect D1 to the interface of B2 and C1, then connect D2 to the front slot of B2 and C1. Congratulations! You just finished the installation. Tear off the stick of the antenna and affix it to the car. Joypad Buildup Step 1: Put the Microduino-TFT into the panel of Microduino-Joypad and fixate them with nylon screws. Step 2: Plug the sensor cable into the interface of Microduino-TFT. 7

9 Note: For different battery connection, please dial the switch in the middle as the picture shows. You need to adjust the switch firstly and then connect batteries. Step 3: Put the two Joypad keys, batteries and four white keys into the right place and then connect the nrf24 module (with antenna) and the Core module on the base board of the Joypad. Step 4: Connect one side of the Microduino-TFT sensor cable to the corresponding position of the base board. 8

10 Step 5: Fixate the Joypad shell and the panel. Step 6: Tear off the stick of the antenna and affix it to the Joypad panel. Joypad Buildup & Debugging Key Setting Press Key1 in 4s after opening the Joypad, it'll enter the Config mode. 9

11 Enter the setting mode Key 1- Key 4 from the left to right as the picture shows below. Note: You have to enter the setting mode before the OS interface. (4s) if not, please restart. Joystick calibration Press Key3 and Key4 to move the cursor. Be noted of the Key1 points to "Return" and the Key2 refers to "Confirm". Select Joystick Config to enter the setting mode. And choose Joystick Correct to enter the calibration mode. After that, it'll appear the interface shown in the third picture with an initializing state of two crosses. At this time, you can move the joystick around. Then, you can see circles in four directions and biggest circle means the Joystick has been turned to the limit position. Press Key2 to confirm after the calibration and return to the last page. 10

12 Select the control mode Press Key1 to return to the main page and select Protocol Config to enter mode selection. Select the first Mode, then choose nrf24 (namely, Robot control mode), press Key2 to confirm and return. Set communication channel Return to the secondary list, select nrf24 Channel and press Key2 to confirm. Select 70, which corresponds to the function setting of the nrf24 in Robot_Microduino.ino. 11

13 By this step, you have completed the Microduino Cube Robot car and the Joypad installation. Attention Please make sure you only stack the Core (Core+) and the USBTTL modules when downloading the program. Although the nrf24 will not cause conflict, other communication modules may lead to serial conflict. Make sure the right cathode connection of the lithium battery, or it'll burn the circuit. After the debugging, please don't adopt USB power supply when running the program and use battery instead, or it may cause undervoltage. Program Description About Joypad In def.h, it defines: 1. uint8_t nrf_channal = 70; //0~125 nrf_channal is the NRF communication channel, which is included in the code of both the Joypad and the Cube Robot car. When the channel is consistent, the Joypad and the Cube Robot car will be connected successfully. In the car code, it'll show program sections as follows: //nrf============================== 2. SPI.begin(); //Initialize SPI 3. radio.begin(); 4. network.begin(/*channel*/ 70, /*node address*/ this_node);

14 In the file data.h: 1. outbuf[0] = Joy1_x; 2. outbuf[1] = Joy1_y; 3. outbuf[2] = Joy_x; 4. outbuf[3] = Joy_y; 5. outbuf[4] = map(aux[0], 0, 1, Joy_MID - Joy_maximum, Joy_MID + Joy_maximum ); 6. outbuf[5] = map(aux[1], 0, 1, Joy_MID - Joy_maximum, Joy_MID + Joy_maximum ); 7. outbuf[6] = map(aux[2], 0, 1, Joy_MID - Joy_maximum, Joy_MID + Joy_maximum ); 8. outbuf[7] = map(aux[3], 0, 1, Joy_MID - Joy_maximum, Joy_MID + Joy_maximum ); The 8-bit array "outbuf" represents 8 data sent from the Joypad. 0: left and right control of the right rod. 1: up and down control of the right rod. 2: left and right control of the left rod. 3: up and down control of the left rod. Bit 4~7 corresponds to AUX0~4. In nrf.h 1. struct send_a //Send 2. { 3. uint32_t ms; 4. uint16_t rf_ch0; 5. uint16_t rf_ch1; 6. uint16_t rf_ch2; 7. uint16_t rf_ch3; 8. uint16_t rf_ch4; 9. uint16_t rf_ch5; 10. uint16_t rf_ch6; 11. uint16_t rf_ch7; 12. }; Here "send_a" correponds to the data sent from the 0 bit. About the car Below is the definition about controlling the left and right wheel movement of the reducer motor. 1. #define motor_pin0a 5 //PWM left 2. #define motor_pin0b 7 3. #define motor_pin1a 6 //PWM 4. #define motor_pin1b 8 Here "receive_a" corresponds to "send_a" in the Joypad program struct receive_a //Receive 2. { 3. uint32_t ms; 4. uint16_t rf_ch0; 5. uint16_t rf_ch1; 6. uint16_t rf_ch2; 7. uint16_t rf_ch3; 8. uint16_t rf_ch4; 9. uint16_t rf_ch5; 10. uint16_t rf_ch6;

15 11. uint16_t rf_ch7; 12. }; Select CH3 as the left rod to control the Cube Robot fore and aft, and the CH0 as the right rod to control left and right. 1. _i[0] = map(rec.rf_ch3, 1000, 2000, -MAX_THROTTLE, MAX_THROTTLE); 2. _i = _turn; 3. _i[0] = map(rec.rf_ch0, 1000, 2000, -MAX_STEERING, MAX_STEERING); 14

Robotics Jumpstart Training II. EasyC: Software & Firmware Updates

Robotics Jumpstart Training II. EasyC: Software & Firmware Updates Robotics Jumpstart Training II EasyC: Software & Firmware Updates Objectives: Learn how to update EasyC Current Version: 4.2.1.9 Learn how to update Firmware VEX Joystick (Controller) VEX Microcontroller

More information

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT I Contents Overview TA0139... 1 Getting started: Arduino 2 Wheel Drive Wireless Bluetooth Robot Kit using Arduino UNO... 1 2.1. What

More information

Experiment 4.A. Speed and Position Control. ECEN 2270 Electronics Design Laboratory 1

Experiment 4.A. Speed and Position Control. ECEN 2270 Electronics Design Laboratory 1 .A Speed and Position Control Electronics Design Laboratory 1 Procedures 4.A.0 4.A.1 4.A.2 4.A.3 4.A.4 Turn in your Pre-Lab before doing anything else Speed controller for second wheel Test Arduino Connect

More information

AlphaBot2 robot building kit for Arduino

AlphaBot2 robot building kit for Arduino AlphaBot2 robot building kit for Arduino SKU 110060864 Description This AlphaBot2 robot kit is designed to use with an Arduino compatible board UNO PLUS. It features rich common robot functions including

More information

Parts List Pictures for reference only

Parts List Pictures for reference only Ultimate Robot Kit MAKER WORKS TECHNOLOGY INC No. 426, F/4, Gonglehuating Business Building, Xinhu Road, Xixiang Sub-district, Bao an District, Shenzhen, 518102 China. Please contact with us if you need

More information

Table of Contents. Introduction 1. Software installation 2. Remote control and video transmission 3. Navigation 4. FAQ 5.

Table of Contents. Introduction 1. Software installation 2. Remote control and video transmission 3. Navigation 4. FAQ 5. Table of Contents Introduction 1. Software installation 2. Remote control and video transmission 3. Navigation 4. FAQ 5. Maintenance 1.1 1.2 1.3 1.4 1.5 1.6 2 Introduction Introduction Introduction The

More information

Quick Guide WARNING: CHOKING HAZARD - Small parts. Not for children under 3 years old. mbot is an educational robot kit for beginners to get hands-on

Quick Guide WARNING: CHOKING HAZARD - Small parts. Not for children under 3 years old. mbot is an educational robot kit for beginners to get hands-on MAKER WORKS TECHNOLOGY INC Technical support: support@makeblock.cc www.makeblock.cc Great tool for beginners to learn graphical programming, electronics and robotics. :@Makeblock : @Makeblock : +Makeblock

More information

mbot v1.1 - Blue (Bluetooth Version)

mbot v1.1 - Blue (Bluetooth Version) mbot v1.1 - Blue (Bluetooth Version) SKU 110090103 What is mbot? mbot is an all-in-one solution to enjoy the hands-on experience of programming, electronics, and robotics. What is mbot? mbot is an all-in-one

More information

Dr Robot C# Advance Sentinel 2. Demo Program. Version: June Copyright 2008, Dr Robot Inc. All Rights Reserved.

Dr Robot C# Advance Sentinel 2. Demo Program. Version: June Copyright 2008, Dr Robot Inc. All Rights Reserved. 25 Valleywood Drive, Unit 20 Markham, Ontario, L3R 5L9, Canada Tel: (905) 943-9572 Fax: (905) 943-9197 Support@DrRobot.com Dr Robot C# Advance Sentinel 2 Demo Program Version: 1.0.0 June 2008-1 - Copyright

More information

THE COMPLETE ALL IN ONE ROBOT 360 NANO BOT

THE COMPLETE ALL IN ONE ROBOT 360 NANO BOT THE COMPLETE ALL IN ONE ROBOT 360 NANO BOT LINE FOLLOWER FIVE LINE SENSORS FOR SCANNING WHITE OR BLACK LINE OBSTACLE AVOIDER TWO OBSTACLE SENSORS CAN DETECT OBSTACLES AND MEASURE DISTANCE BLUETOOTH CONTROL

More information

16-311: Getting Started with ROBOTC and the. LEGO Mindstorms NXT. Aurora Qian, Billy Zhu

16-311: Getting Started with ROBOTC and the. LEGO Mindstorms NXT. Aurora Qian, Billy Zhu 16-311: Getting Started with ROBOTC and the LEGO Mindstorms NXT Aurora Qian, Billy Zhu May, 2016 Table of Contents 1. Download and Install 2. License Activation 3. Wireless Connection 4. Running Programs

More information

Final Report. EEL 5666 Intelligent Machines Design Laboratory

Final Report. EEL 5666 Intelligent Machines Design Laboratory Final Report EEL 5666 Intelligent Machines Design Laboratory TAs: Mike Pridgen & Thomas Vermeer Instructors: Dr. A. Antonio Arroyo & Dr. Eric M. Schwartz Hao (Hardy) He Dec 08 th, 2009 Table of Contents

More information

How-To #3: Make and Use a Motor Controller Shield

How-To #3: Make and Use a Motor Controller Shield How-To #3: Make and Use a Motor Controller Shield The Arduino single-board computer can be used to control servos and motors. But sometimes more current is required than the Arduino can provide, either

More information

Line Tracer. Assembly Instructions

Line Tracer. Assembly Instructions Assembly Instructions is a registered trademark of Artec Co., Ltd. in multiple countries including Japan, South Korea, Canada, and the USA. Studuino Unit Components Battery Box USB Cable DC Motor Sensor

More information

SATCOM-On-The-Move User Manual

SATCOM-On-The-Move User Manual For the SOTM RIT Project Page 1 of 6 Table of Contents Introduction... 3 Required Programs... 3 Required Documents... 3 Required Equipment... 3 Powering Up and Calibration... 3 Choosing a Point... 4 Calibrate

More information

VEX ARM Cortex -based Microcontroller and VEXnet Joystick User Guide

VEX ARM Cortex -based Microcontroller and VEXnet Joystick User Guide 1. VEX ARM Cortex -based Microcontroller and VEXnet Joystick Pairing Procedure: a. The Joystick must first be paired to the VEX ARM Cortex -based Microcontroller before they will work using VEXnet Keys.

More information

Overview. Connect the Flight Control Board and Receiver

Overview. Connect the Flight Control Board and Receiver Overview This article only describes the methods for connecting the receiver and ESC to the flight control board. You may need to refer to other materials for installation of other devices. If conditions

More information

2009 FRC Control System. Published by Team 103

2009 FRC Control System. Published by Team 103 2009 FRC Control System Published by Team 103 Section 1 Overview of Components crio DSC (Digital Side Car) Power Distribution Board Wireless Gaming Adapter Wireless Router Driver Station Speed Controllers

More information

1.0. Presents. techathon 3.0

1.0. Presents. techathon 3.0 1.0 Presents techathon 3.0 Course Content - techathon techathon 3.0 is a Robotics and Embedded systems Workshop designed by team Robo-Minions. It is a 2 days workshop with each day divided into two sessions

More information

Studuino Block Programming Environment Guide

Studuino Block Programming Environment Guide Studuino Block Programming Environment Guide [DC Motors and Servomotors] This is a tutorial for the Studuino Block programming environment. As the Studuino programming environment develops, these instructions

More information

User`s Manual. xiaomi-mi.com

User`s Manual. xiaomi-mi.com User`s Manual Description of the multimedia projector (Main unit) components and connectors 1 - Lens 2 - Webcam 3 - Power button USB 3.0 USB 2.0 HDMI 4 - Power connector AUX 3.5mm Wireless charging of

More information

ASUS P527 Service Manual (L1&L2)

ASUS P527 Service Manual (L1&L2) ASUS P527 Service Manual (L1&L2) 1 1 EQUIPMENT NEED... 3 2 INTRODUCTION... 4 2.1 ABOUT THIS SERVICE MANUAL... 4 2.2 OVERVIEW... 4 2.3 PRODUCT SPECIFICATION... 5 3 DISASSEMBLY / ASSEMBLY PROCEDURE... 6

More information

MegaPi Born to Motion Control

MegaPi Born to Motion Control MegaPi Born to Motion Control SKU: 10050 Weight: 130.00 Gram 1. Overview MegaPi is a main control board specially designed for makers and also an ideal option for being applied to education field and all

More information

Bluetooth 4.0 Development Board (B-DB001 Base Board with B-001 core module)

Bluetooth 4.0 Development Board (B-DB001 Base Board with B-001 core module) Bluetooth 4.0 Development Board ( Base Board with B-001 core module) H-2 Technik UG (haftungsbescgränkt) www.h-2technik.com Version Information Version Date Modified By Introduction 1.1 01.2018 Guo Release

More information

Go-Baby-Go Senior Capstone Project

Go-Baby-Go Senior Capstone Project Go-Baby-Go Senior Capstone Project Assembly Manual Team 22C Alwaleed Alhamra Asrar Alkhabbaz Fawaz Almutairi Sultan Almutairi Eric Trieu Project Sponsor: W.L. Gore & Associates Faculty Advisor: Dr. David

More information

Advance Robotics with Embedded System Design (ARESD)

Advance Robotics with Embedded System Design (ARESD) Advance Robotics with Embedded System Design (ARESD) LEARN HOW TO: Use Arduino hardware &Arduino programming for microcontroller based hobby project development Use WinAVRcross compiler formicrocontroller

More information

Robotics Adventure Book Scouter manual STEM 1

Robotics Adventure Book Scouter manual STEM 1 Robotics Robotics Adventure Book Scouter Manual Robotics Adventure Book Scouter manual STEM 1 A word with our Scouters: This activity is designed around a space exploration theme. Your Scouts will learn

More information

The fi rst programmable robot kit for everyone

The fi rst programmable robot kit for everyone The fi rst programmable robot kit for everyone Fun with learning the programmable ab robotic kit. Includes building the robot platform and learning the programming min by Logo language with iconic and

More information

ACKNOWLEDGEMENT. Sagar Agrawal Parikshit jha Apar Sinha Gaurav Chauhan

ACKNOWLEDGEMENT. Sagar Agrawal Parikshit jha Apar Sinha Gaurav Chauhan ACKNOWLEDGEMENT Sagar Agrawal- 9913103669 Parikshit jha- 913103540 Apar Sinha- 9913103567 Gaurav Chauhan- 9913103672 Tables of content Topics Pages Abstract 4,5 Introduction 6 Components Description 7-10

More information

Introduction to Robotics using Lego Mindstorms EV3

Introduction to Robotics using Lego Mindstorms EV3 Introduction to Robotics using Lego Mindstorms EV3 Facebook.com/roboticsgateway @roboticsgateway Robotics using EV3 Are we ready to go Roboticists? Does each group have at least one laptop? Do you have

More information

Troubleshooting ROBOTC with Cortex

Troubleshooting ROBOTC with Cortex This guide is to designed to be used by a student or teacher as a reference for help troubleshooting ROBOTC software issues. Troubleshooting Topics Computer will not Recognize the VEX Cortex Not able to

More information

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

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

More information

BESANTEK USB Data Logger Instructional Manual (BST-DL10, BST-DL13, BST-DL14)

BESANTEK USB Data Logger Instructional Manual (BST-DL10, BST-DL13, BST-DL14) BESANTEK USB Data Logger Instructional Manual (BST-DL10, BST-DL13, BST-DL14) BESANTEK USB Data Logger Instructional Manual (BST-DL10, BST-DL13, BST-DL14) CONTENTS Chapter 1. USB Data Logger Hardware...1

More information

Scout. Quick Start Guide. WiFi Mobile Robot Development Platform with Multi-DOF Gripping Arms

Scout. Quick Start Guide. WiFi Mobile Robot Development Platform with Multi-DOF Gripping Arms WiFi Mobile Robot Development Platform with Multi-DOF Gripping Arms Scout Quick Start Guide Copyright 2001-2010, WARNINGS Do NOT power on the robot before reading and fully understanding the operation

More information

AndyMark Arduino Tutorial

AndyMark Arduino Tutorial AndyMark Arduino Tutorial Tank Drive June 2014 Required: Required Software List: - Kit Arduino IDE - Robot Power Cable Kit (am-0975) RobotOpen Arduino Shield Software - Battery Base Package (am-0477) RobotOpen

More information

Welcome to Apollo. For more information, please visit the website and select Apollo. Default Code

Welcome to Apollo. For more information, please visit the website and select Apollo.  Default Code Welcome to Apollo For more information, please visit the website and select Apollo Arduino Pins Default Code D49 LED Digital Pins digitalwrite digitalread pinmode Analog Pins analogread digitalread D33

More information

Free Flight Controller User Manual

Free Flight Controller User Manual Free Flight Controller User Manual 1. Computer Setting The FF(Free Flight Controller, Below same)board default setting is "X mode"+ Start from static,10.8v below voltage alarm enable, if you need change

More information

International Journal of Artificial Intelligence and Applications (IJAIA), Vol.9, No.3, May Bashir Ahmad

International Journal of Artificial Intelligence and Applications (IJAIA), Vol.9, No.3, May Bashir Ahmad OUTDOOR MOBILE ROBOTIC ASSISTANT MICRO-CONTROLLER MODULE (ARDUINO), FIRMWARE AND INFRARED SENSOR CIRCUIT DESIGN AND IMPLEMENTATION, OPERATING PRINCIPLE AND USAGE OF PIRMOTION SENSOR Bashir Ahmad Faculty

More information

This is an inspection failure, not meeting the requirement of >10k Ohm between either PD battery post and chassis.

This is an inspection failure, not meeting the requirement of >10k Ohm between either PD battery post and chassis. Troubleshooting This is a document put together by CSA Laura Rhodes that contains a lot of information about troubleshooting steps for a lot of common control system problems encountered at events. No

More information

Electronics Workshop. Jessie Liu

Electronics Workshop. Jessie Liu Electronics Workshop Jessie Liu 1 Return Kit Servos Servo Extensions Controller Analog USB/Tether Serial WiFi key (2) (2) Digital i/o Servo Power Adaptor AAA Battery Charger motors/ servos (4) Servo Mounting

More information

Abstraction. Terasic Inc. Bluetooth_Remote_Control

Abstraction. Terasic Inc. Bluetooth_Remote_Control Abstraction This application note provides details on how to achieve human-computer interaction (HCI) with Android device and Terasic A-Cute Car via Bluetooth using a module, Terasic BTS-TMD. The following

More information

Itty Bitty City Code Companion Scratch Microduino Inc. - All Rights Reserved 1

Itty Bitty City Code Companion Scratch Microduino Inc. - All Rights Reserved 1 Itty Bitty City Code Companion Scratch 3.0 2018. Microduino Inc. - All Rights Reserved 1 WELCOME! What the Itty Bitty City Code Companion brings to you! The Itty Bitty City Code Companion gives even more

More information

TA0136 USER MANUAL ARDUINO 2 WHEEL DRIVE ULTRASONIC ROBOT KIT

TA0136 USER MANUAL ARDUINO 2 WHEEL DRIVE ULTRASONIC ROBOT KIT TA0136 USER MANUAL ARDUINO 2 WHEEL DRIVE ULTRASONIC ROBOT KIT I Contents Overview TA0136... 1 Getting started: the 2 Wheel Drive Ultrasonic Robot Kit using Arduino UNO... 1 2.1. What is Arduino?... 1 2.2.

More information

BEST Generic Kit Notes GMKR00002 Revision 7; August 2011

BEST Generic Kit Notes GMKR00002 Revision 7; August 2011 GMKR00002 Revision 7; August 2011 1.0 Introduction This document is for information only. Although it is consistent with the rules, please see the Generic Game Rules document for the official rules. All

More information

BEST Control System. Dave Wilkerson. September 12, 2015

BEST Control System. Dave Wilkerson. September 12, 2015 BEST Control System BEST Robotics, Inc. Dave Wilkerson September 12, 2015 Copyright 2012 BEST Robotics, Inc. All rights reserved. 1 Servos Joystick Return Kit AAA Battery Charger Analog WiFi key USB/Tether

More information

TG VR Gimbal User Manual V Accsoon. All Rights Reserved.

TG VR Gimbal User Manual V Accsoon. All Rights Reserved. TG20 360 VR Gimbal User Manual V1.0 20161209 www.accsoon.com E-mail: salse@accsoon.com 0 Disclaimers and Warnings Congratulations on purchasing you new VR Gimbal. Please read this manual and disclaimer

More information

ww.battery-adapter.com

ww.battery-adapter.com Removing and replacing an FRU Lenovo G470/G475/G570/G575 This section presents exploded figures with the instructions to indicate how to remove and replace the FRU. Make sure to observe the following general

More information

A Toolkit to Learn Algorithmic Thinking using mbot Robot

A Toolkit to Learn Algorithmic Thinking using mbot Robot A Toolkit to Learn Algorithmic Thinking using mbot Robot Irnayanti Dwi Kusuma 1 Fitri Utaminingrum 2 Tetsuro Kakeshita 3 Abstract: We propose a new toolkit to help children at elementary or secondary school

More information

WIRELESS VEHICLE WITH ANIMATRONIC ROBOTIC ARM

WIRELESS VEHICLE WITH ANIMATRONIC ROBOTIC ARM WIRELESS VEHICLE WITH ANIMATRONIC ROBOTIC ARM PROJECT REFERENCE NO. : 37S0918 COLLEGE : P A COLLEGE OF ENGINEERING, MANGALORE BRANCH : ELECTRONICS & COMMUNICATION GUIDE : MOHAMMAD RAFEEQ STUDENTS : CHARANENDRA

More information

ROBOT LINE TRACKING MOUSE KIT C-9801

ROBOT LINE TRACKING MOUSE KIT C-9801 ROBOT LINE TRACKING MOUSE KIT TOOLS you'll need Alimentation 4 batteries 1,5 V AA (not included) The mouse is a line follower robot that follows a black line (or any other color) on a white background

More information

BEST Generic Kit Usage Guide GMKR00002 Revision 13; August 2017

BEST Generic Kit Usage Guide GMKR00002 Revision 13; August 2017 GMKR00002 Revision 13; 1.0 Introduction This document is for information only. Although it is consistent with the rules, please see the Generic Game Rules document for the official rules. All Returnable

More information

Use of ISP1880 Accelero-Magnetometer, Temperature and Barometer Sensor

Use of ISP1880 Accelero-Magnetometer, Temperature and Barometer Sensor Use of Accelero-Magnetometer, Temperature and Barometer Sensor Application Note AN181105 Introduction Scope This application note describes how to set up a Sensor demonstration with Sensors Board that

More information

Smart Interact Navigation Entertainment System user manual

Smart Interact Navigation Entertainment System user manual Smart Interact Navigation Entertainment System user manual Contents 1. Attentions.2 2. Features...2 3. Installation...3 4. Panel and Key...... 3 5. Power on operation. 4 6. Radio operation...6 7. CD/DVD/USB/SD

More information

Android Spybot. ECE Capstone Project

Android Spybot. ECE Capstone Project Android Spybot ECE Capstone Project Erik Bruckner - bajisci@eden.rutgers.edu Jason Kelch - jkelch@eden.rutgers.edu Sam Chang - schang2@eden.rutgers.edu 5/6/2014 1 Table of Contents Introduction...3 Objective...3

More information

Robot Design Workshop: VEX Hardware & Robot Building Basics

Robot Design Workshop: VEX Hardware & Robot Building Basics Robot Design Workshop: VEX Hardware & Robot Building Basics Nik Kukert Bison BEST Robotics 1 Basics Only use parts supplied in the consumable and returnable kits (or approved optional items) Robots containing

More information

Key Expansion Modules

Key Expansion Modules Cisco IP Phone Key Expansion Module Setup Overview, page 1 Set up the Key Expansion Module in Cisco Unified Communications Manager, page 4 Column Mode for the Cisco IP Phone 8800 Key Expansion Module,

More information

Contents Using the 4SK909 Twister

Contents Using the 4SK909 Twister Contents About this manual... 1 Notices for use... 1 Know the product... 2 Using the 4SK909 Twister... 3 Charging... 3 Inserting the TF memory card... 4 Powering ON/OFF the Dash Cam... 4 Installing in-vehicle

More information

ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580] Page 1

ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580]   Page 1 ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580] http://www.robokitsworld.com Page 1 1. Introduction: The Arduino UNO R3 based 20A robot control board is a versatile motor controller for driving

More information

Discover Robotics & Programming CURRICULUM SAMPLE

Discover Robotics & Programming CURRICULUM SAMPLE OOUTLINE 5 POINTS FOR EDP Yellow Level Overview Robotics incorporates mechanical engineering, electrical engineering and computer science - all of which deal with the design, construction, operation and

More information

TMA Robot mobility module Author: Rein Velt Version: 6 Datum: 14. Dec. 2009

TMA Robot mobility module Author: Rein Velt Version: 6 Datum: 14. Dec. 2009 TMA Robot mobility module Author: Rein Velt Version: 6 Datum: 14. Dec. 2009 TMA robot mobility module by Rein Velt Copyright 2009 by Rein Velt. Some rights reserved. Published by Theo's Mechanic Ape http://mechanicape.com

More information

TA0297 WEMOS D1 R2 WIFI ARDUINO DEVELOPMENT BOARD ESP8266

TA0297 WEMOS D1 R2 WIFI ARDUINO DEVELOPMENT BOARD ESP8266 TA0297 WEMOS D1 R2 WIFI ARDUINO DEVELOPMENT BOARD ESP8266 Contents 1. Overview TA0297... 3 2. Getting started:... 3 2.1. What is WeMos D1 R2 Wifi Arduino Development Board?... 3 2.2. What is IDUINO UNO?...

More information

PDL & PDL-HT PD Movie Remote Live & PD Remote Live High Torque

PDL & PDL-HT PD Movie Remote Live & PD Remote Live High Torque PDL & PDL-HT PD Movie Remote Live & PD Remote Live High Torque QUICKSTART GUIDE What s Included 1 x Multi-control Handgrip 1 x Follow Focus Motor (Check One) 1 x Motor Drive Cable 1 x Adjustable Pan Handle

More information

VEX Robot Remote Control Set-Up

VEX Robot Remote Control Set-Up VEX Robot Remote Control Set-Up Note: Before proceeding with the VEXnet joystick setup on the following pages, complete these steps: 1) Open the RobotC program 2) Select File > Open Sample Program 3) Select

More information

StenBOT Robot Kit. Stensat Group LLC, Copyright 2018

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

More information

Group 13 Monitor and Control of an Excavator Robot

Group 13 Monitor and Control of an Excavator Robot ELEC 490 PROJECT BLUEPRINT DOCUMENT Group 13 Monitor and Control of an Excavator Robot Submitted December 21st, 2005 FOR Dr. Michael Greenspan Dr. Kevyan Hashtrudi-Zaad Executive Summary In the first two

More information

Lesson 2: Input, Output, and Processing

Lesson 2: Input, Output, and Processing Lesson 2: Input, Output, and Processing TRUE/FALSE 1. After data is processed, it is presented to the user through an input device. ANS: F REF: Mod1-28 2. A laser virtual keyboard is packaged in a case

More information

Wireless Networked Autonomous Mobile Robot with Dual High Resolution Pan-Tilt-Zoom Camera. Sputnik 2

Wireless Networked Autonomous Mobile Robot with Dual High Resolution Pan-Tilt-Zoom Camera. Sputnik 2 Wireless Networked Autonomous Mobile Robot with Dual High Resolution Pan-Tilt-Zoom Camera Sputnik 2 Quick Start Guide WARNINGS Do NOT power on the robot before reading and fully understanding the operation

More information

Advice for How To Create a Film Project in Windows MovieMaker

Advice for How To Create a Film Project in Windows MovieMaker Advice for How To Create a Film Project in Windows MovieMaker This document was compiled to provide initial assistance to teachers and/or students to create a movie project using the Windows MovieMaker

More information

Me Stepper Driver. Overview

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

More information

WINCE 6.0 Car Navigation Box CS9320 User Manual

WINCE 6.0 Car Navigation Box CS9320 User Manual WINCE 6.0 Car Navigation Box CS9320 User Manual CS9320 is Wonde Proud's new era for GPS+GLONASS dual mode navigation. Following past model's stability and universal compatibility, we developed CS9320 as

More information

EV3 Programming Workshop for FLL Coaches

EV3 Programming Workshop for FLL Coaches EV3 Programming Workshop for FLL Coaches Tony Ayad 2017 Outline This workshop is intended for FLL coaches who are interested in learning about Mindstorms EV3 programming language. Programming EV3 Controller

More information

Robotics II. Module 1: Introduction to Data & Advanced Programming Blocks

Robotics II. Module 1: Introduction to Data & Advanced Programming Blocks Robotics II Module 1: Introduction to Data & Advanced Programming Blocks PREPARED BY Academic Services Unit December 2011 Applied Technology High Schools, 2011 Module 1: Introduction to Data & Advanced

More information

logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7

logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7 logic table of contents: squarebot logic subsystem 7.1 parts & assembly concepts to understand 7 subsystems interfaces 7 logic subsystem inventory 7 7 1 The Vex Micro Controller coordinates the flow of

More information

Flycam Buddy Mini Gimbal Camera Stabilizer (FLCM-BDY-MINI) 2

Flycam Buddy Mini Gimbal Camera Stabilizer (FLCM-BDY-MINI) 2 Flycam Buddy Mini Gimbal Camera Stabilizer (FLCM-BDY-MINI) 2 At FLYCAM, our goal is to ensure 100% Customer satisfaction in all that we do. We back our sales with a 6-months warranty from the date of purchase

More information

Use of ISP1507-AL Evaluation Boards

Use of ISP1507-AL Evaluation Boards Use of ISP1507-AL Evaluation Boards Application Note AN181103 Introduction Scope This document gives details on hardware and software for using and testing Insight SiP Bluetooth Low Energy module ISP1507-AL,

More information

User Manual. Daffodil. 2.4GHz Wireless Mouse Souris Sans Fil 2.4GHz 2.4GHz Wireless Maus Mouse senza fili da 2.4 GHz Ratón Inalámbrica 2.

User Manual. Daffodil. 2.4GHz Wireless Mouse Souris Sans Fil 2.4GHz 2.4GHz Wireless Maus Mouse senza fili da 2.4 GHz Ratón Inalámbrica 2. Daffodil User Manual 2.4GHz Wireless Mouse Souris Sans Fil 2.4GHz 2.4GHz Wireless Maus Mouse senza fili da 2.4 GHz Ratón Inalámbrica 2.4GHz Model No. : UT-M3 User Manual Please follow the instructions

More information

PS2 Wireless Owners Manual. By Robosoft Systems

PS2 Wireless Owners Manual. By Robosoft Systems PS2 Wireless Owners Manual By Robosoft Systems Know your Board Symbol Device U1 P89V51RD2 Microcontroller U2 L298 Motor Driver 1 U3 L298 Motor Driver 2 U4 74HCT2400 Inverting buffer PS2 PS2 connector BATTRY

More information

RPLIDAR A2. Development Kit User Manual. Low Cost 360 Degree Laser Range Scanner. Model: A2M4. Shanghai Slamtec.Co.,Ltd rev.1.

RPLIDAR A2. Development Kit User Manual. Low Cost 360 Degree Laser Range Scanner. Model: A2M4. Shanghai Slamtec.Co.,Ltd rev.1. 2016-10-28 rev.1.1 RPLIDAR A2 Low Cost 360 Degree Laser Range Scanner Development Kit User Manual Model: A2M4 www.slamtec.com Shanghai Slamtec.Co.,Ltd Contents CONTENTS... 1 OVERVIEW... 3 ITEMS IN THE

More information

Micro:Maqueen Robot Car(V2.0)

Micro:Maqueen Robot Car(V2.0) Micro:Maqueen Robot Car(V2.0) SKU: ROB0148 I am Maqueen Hello, my name is Maqueen, is a graphical programming robot for STEM education, which inherits playability and simple operation of micro:bit. The

More information

Anatomage, Inc. 111 N. Market St. Suite 500 San Jose, CA USA Page 1 of 16 - TS001 Rev A. 9. Apr.

Anatomage, Inc. 111 N. Market St. Suite 500 San Jose, CA USA Page 1 of 16 - TS001 Rev A. 9. Apr. Anatomage, Inc. 111 N. Market St. Suite 500 San Jose, CA 95113 USA 408-885-1474 info@anatomage.com - Page 1 of 16 - Warranty Statement There are no warranties, express or implied, with respect to the contents

More information

I/O System for the PSYONIC Advanced Bionic Hand. Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017

I/O System for the PSYONIC Advanced Bionic Hand. Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017 I/O System for the PSYONIC Advanced Bionic Hand Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017 Background PSYONIC is a startup at the University of Illinois working on bringing low-cost

More information

Homework 13: User Manual

Homework 13: User Manual Homework 13: User Manual Team Code Name: Infrarat Group No. 14 User Manual Outline: Brief (marketing-style) product description Product illustration annotated with callouts for each control/display Product

More information

Arduino Programming and Interfacing

Arduino Programming and Interfacing Arduino Programming and Interfacing Stensat Group LLC, Copyright 2017 1 Robotic Arm Experimenters Kit 2 Legal Stuff Stensat Group LLC assumes no responsibility and/or liability for the use of the kit and

More information

LV8548MCSLDGEVB. Brush DC Motor Driver Module Solution Kit Quick Start Guide

LV8548MCSLDGEVB. Brush DC Motor Driver Module Solution Kit Quick Start Guide LV8548MCSLDGEVB Brush DC Motor Driver Module Solution Kit Quick Start Guide Overview The LV8548MCSLDGEVB is an ON Semiconductor motor driver module featuring the LV8548MC. This module is capable of easily

More information

Microduino USBHOST USER GUIDE.

Microduino USBHOST USER GUIDE. Microduino USBHOST USER GUIDE https://eckstein-shop.de/ Content Features... 2 Specification... 2 Document... 3 Development... 4 Application... 5 Prepare work...5 Debug...5 1 https://eckstein-shop.de/ Microduino

More information

LifeBook P7120D Assembly

LifeBook P7120D Assembly LifeBook P7120D Assembly ESD Precautions are required when working on this LifeBook computer. 1. Connect the left microphone cable to the microphone PCB. 2. Insert them both into the rear cover of the

More information

Technical Specification for Educational Robots

Technical Specification for Educational Robots Technical Specification for Educational Robots 1. Introduction The e-yantra project, sponsored by MHRD, aims to start a robotic revolution in the country through the deployment of low-cost educational

More information

CORTEX Microcontroller and Joystick User Guide

CORTEX Microcontroller and Joystick User Guide This is a User Guide for using the VEX CORTEX Microcontroller and VEX Joystick. Refer to the VEX Wiki (http://www.vexforum.com/wiki/index.php/vex_cortex_microcontroller) for updates to this document. 1.

More information

SECTION 2 (Part B) Types And Components Of Computer Systems. Sophia Pratzioti

SECTION 2 (Part B) Types And Components Of Computer Systems. Sophia Pratzioti SECTION 2 (Part B) Types And Components Of Computer Systems 2 Hardware & Software Hardware: is the physical parts of the computer system the part that you can touch and see. Hardware can be either external

More information

Introduction Congratulations on your purchase of this digital video camera. Before using the camera, please read this user manual carefully.

Introduction Congratulations on your purchase of this digital video camera. Before using the camera, please read this user manual carefully. EVC1700 User Guide 2 Introduction Congratulations on your purchase of this digital video camera. Before using the camera, please read this user manual carefully. The main purpose is to shoot videos. It

More information

Warning : If user does not follow the instructions in this book properly, a serious injury, harm,

Warning : If user does not follow the instructions in this book properly, a serious injury, harm, Safety Instructions Warning : If user does not follow the instructions in this book properly, a serious injury, harm, or death may occur to user. Caution : If user does not follow the instructions in this

More information

Moving to the Mac A GUIDE FOR NEW USERS OF MAC OS X. [Type here]

Moving to the Mac A GUIDE FOR NEW USERS OF MAC OS X. [Type here] [Type here] Moving to the Mac A GUIDE FOR NEW USERS OF MAC OS X This guide is aimed at those who are new to using Mac s. It assumes that you have prior knowledge of using a computer, probably a PC. The

More information

ARDUINO PRIMO. Code: A000135

ARDUINO PRIMO. Code: A000135 ARDUINO PRIMO Code: A000135 Primo combines the processing power from the Nordic nrf52 processor, an Espressif ESP8266 for WiFi, as well as several onboard sensors and a battery charger. The nrf52 includes

More information

PD1 & PD1-HT QUICKSTART GUIDE. Remote Air Follow Focus System / High Torque System. What s Included

PD1 & PD1-HT QUICKSTART GUIDE. Remote Air Follow Focus System / High Torque System. What s Included PD & PD-HT Remote Air Follow Focus System / High Torque System QUICKSTART GUIDE What s Included x Wireless Remote x Receiver/Motor Controller x Follow Focus Motor x P-Tap Power cord x USB Charging Cable

More information

Click Install View Touch. Installation starts. Click Next. Click Finish.

Click Install View Touch. Installation starts. Click Next. Click Finish. 1. Please read the instructions carefully. Improper installation may cause permanent damages, which may not be covered by the warranty. 2. Check all the parts in the package against the following parts

More information

MASTER GUIDE (MAC) Gaming on the go is now possible.

MASTER GUIDE (MAC) Gaming on the go is now possible. MASTER GUIDE (MAC) CONTENTS 1. System & Hardware Requirements 2. Package Contents 3. Key Features 4. Installation / Registration / Technical Support 5. Configuring Your Razer Orochi 6. Copyright and Intellectual

More information

Studuino Programming Environment Manual

Studuino Programming Environment Manual Studuino Programming Environment Manual Created 04//0 Revised 07/0/3 Version History Date Content 04//0 First version 07/0/6 Updated for new Studuino website 07/03/8 Revised with added features for Windows

More information

DOWNLOADING THE APP FOR APPLE PHONES: DOWNLOADING THE APP FOR ANDROID PHONES: For Android Phones go to Google Play or the Android Store.

DOWNLOADING THE APP FOR APPLE PHONES: DOWNLOADING THE APP FOR ANDROID PHONES: For Android Phones go to Google Play or the Android Store. DOWNLOADING THE APP FOR APPLE PHONES: DOWNLOADING THE APP FOR ANDROID PHONES: For Android Phones go to Google Play or the Android Store. For Apple Phones go to the app store and click GET. Make sure your

More information

Microduino Bluetooth (BLE) USER GUIDE.

Microduino Bluetooth (BLE) USER GUIDE. Microduino Bluetooth (BLE) USER GUIDE https://eckstein-shop.de/ Content Features... 2 Specification... 2 Document... 3 Main Components...3 Andriod APP...3 Development... 3 Serial Port Communication Requirements...3

More information

E-Blocks Easy Zigbee Bundle

E-Blocks Easy Zigbee Bundle Page 1 Bundle Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with

More information