Mini Turty II Robot Getting Started V1.0

Size: px
Start display at page:

Download "Mini Turty II Robot Getting Started V1.0"

Transcription

1 Mini Turty II Robot Getting Started V1.0

2 Rhoeby Dynamics Mini Turty II Robot Getting Started Getting Started with Mini Turty II Robot Thank you for your purchase, and welcome to Rhoeby Dynamics products! This document provides a quick overview of the steps required to run ROS Navigation on the Mini Turty II platform.

3 Pre-requisites To proceed, you will need the following items: A ROS enabled PC (for robot setup, and running the ROS application RViz) An HDMI monitor and USB keyboard (for robot setup) Your ROS navigation-capable Mini Turty II robot! With the above to hand, proceed to the Quick-Start Instructions to get up and running now. Quick-Start Instructions 1. Plug in the following items to the robot: HDMI monitor (to Raspberry Pi 3) USB keyboard (to Raspberry Pi 3) 2. Switch on the Mini Turty II, using the switch on the side of the robot 3. Wait for Linux to boot and the login prompt to appear on the HDMI monitor 4. Login with the following: - user name: ubuntu - password: rhoeby Add your WiFi network credentials $ sudo vi /etc/network/interfaces Modify these lines to match your network: iface wlan0 inet dhcp wpa-ssid "Your Network SSID" wpa-psk "Your Password" Note: retain the quotes (""), eg if your WiFI network is called NETGEAR101, and your password is mypassword, the file entries would look like this: iface wlan0 inet dhcp wpa-ssid "NETGEAR101" wpa-psk "mypassword"

4 6. Reboot the robot $ sudo reboot 7. On the ROS-enabled PC, 'ssh' into the robot (default robot name is: ubuntu): $ ssh -l ubuntu ubuntu (Alternatively, in Windows, you could use PuTTY) 8. At the prompt, verify you can see the easy start scripts called: 'mini_turty_init.sh', 'min_turty_mapping.sh' and 'mini_turty_nav.sh' $ ls catkin_ws robot tmp mini_turty_init.sh mini_turty_mapping.sh mini_turty_nav.sh 9. Unplug HDMI, keyboard. Your robot is ready for action! Things You Can Do With Your Mini Turty II Robot There are many things you can do with your Mini-Turty II robot, including: Basic ROS Learning Teleop: robot remote control Map Building: make maps of your home or office for the robot to use Navigation: the robot moves autonomously around your home or office Frontier Exploration: the robot autonomously explores unknown terrain* Tele-Viewing: see what your robot sees, even from another room* Computer Vision: Mini Turty II recognizes objects in its environment* *Coming soon, to a robot near you! In the sections below, we explore each of these features in more detail.

5 Basic ROS Learning Learn the basics of ROS including things like running ROS nodes, working with topics, using rosrun and roslaunch, etc. See and interact with working examples of things like publisher and subscriber, record and playback of data (eg LiDAR data). Follow instructions for running ROS across multiple machines, and much more. Explore such topics as robot coordinate frames, like using the view_frames tool to graphically examine the robot tf frames. Graphical output helps simplify your view of the robot internal structure. Teleop Mini-Turty II supports tele-operation (remote control of the robot) via several methods, including: PC keyboard control (via SSH terminal, eg PuTTY*, or Linux minicom ) Phone-based control (install Play Store app Map Nav ) ROS control via cmd_vel topic * PuTTY is a simple terminal program you can run on any Windows PC, see All of the above methods control the robot via the built-in WiFi connection.

6 Using PuTTY for Teleop Using PuTTY is easy. Simply download the program from and follow the instructions for installation. Then enter the IP address of your robot and use SSH to connect to it. Log in using the Mini-Turty II username and password (default: ubuntu, pasword: rhoeby001), and begin using your robot!

7 Using Phone-Based Control You can remotely control Mini-Turty II using a phone-based application called Map Nav, which is available in the Play Store. Download and install the app, specify the IP address of the robot and begin driving your robot around using the virtual joystick control! With nothing more than the phone app itself (and a properly setup robot), you can be controlling your robot quickly. Using ROS Control Via the cmd_vel Topic Mini-Turty II subscribes to the ROS cmd_vel topic. As such you can remote control the robot by issuing commands using that topic. The following command tells the robot to move forward at 0.2 m/s: rostopic pub -1 /cmd_vel geometry_msgs/twist '[0.2, 0, 0]' '[0, 0, 0]' You can stop the robot by issuing this command: rostopic pub -1 /cmd_vel geometry_msgs/twist '[0, 0, 0]' '[0, 0, 0]' The first argument 0.2 is linear motion on the x-axis. The next two are the y-axis and z-axis respectively. The robot can only move in the x-axis because it is a differential drive robot. However, it does support angular motion in the z-axis! So you turn the robot by applying some z-axis angular motion, for example:

8 rostopic pub -1 /cmd_vel geometry_msgs/twist '[0, 0, 0]' '[0, 0, 0.1]' The above command will cause the robot to rotate on the spot! Of course you can combine motions to provide linear and angular motion at the same time, like this: rostopic pub -1 /cmd_vel geometry_msgs/twist '[0.1, 0, 0]' '[0, 0, 0.05]' The above command will cause the robot to move forward whilst simultaneously turning. Map Building The map building aspect is an exciting function of your new robot! It provides the means to make maps of your home or office for the robot to use. This can be both an interesting learning experience, and very useful to your robot in support of its more advanced features. Mapping: is the process of building maps based on data acquired from one or more sensors. A LiDAR sweep of the 360 degrees view and the taking of many range samples yields a crude map. But this map is usually far from complete. The second part of the process is to take many of these 360 degree scans and assemble them into a more complete map. As the robot begins to move around in it s environment, it is able to estimate where is it relative to the current and previously scanned data (the

9 process known as localization ), and then take new scans and add them into the map. The process of performing localization and mapping together is referred to as Simultaneous Localization And Mapping, or just simply SLAM! Using your robot, run mapping techniques such as: gmapping hector mapping karto mapping Save the map(s) for later use by the robot during navigation. Starting Mapping 1. At the ssh prompt, initialize the robot: $./mini_turty_init 2. Wait for initialization to complete, then initiate mapping $./mini_turty_mapping 3. On the ROS-enabled PC, setup your connection to the robot, by following these instructions: and Basically... Set hostname (default is: ubuntu) $ sudo vi /etc/hostname $ sudo vi /etc/hosts ubuntu Add remote machine (where RViz will run) $ sudo vi /etc/hosts (on the Mini Turty II robot) vm-ubuntu $ sudo vi /etc/hosts (on the remote PC machine) ubuntu

10 The above IP addresses and host names are just examples, replace these with your own addresses. 4. Set environment variable (on remote machine): $ export ROS_MASTER_URI= 5. Run RViz (on the remote machine) $ rosrun rviz rviz 6. In RViz display topic 'laser_data', you should now see the scanner output on screen (you may need to set the Fixed Frame appropriately) 7. In RViz display the topic '/map', you should now see a partial map being built 8. In the ssh session (where you ran./mini_turty_mapping.sh, tele-operate the robot using the keyboard arrow keys. 9. Observe the map being built up 10. When enough map has been created, save the map using the following command (in a new ssh session): $ rosrun map_server map_saver Voila! Your map is saved!

11 Navigation Autonomous navigation includes use of the generated map, path planning, obstacle detection and obstacle avoidance. Navigation is comprised of path planning to reach a goal within a map, along with detection of new obstacles that are not part of the map. This is where the preceding elements of LiDAR, scanning, and mapping are all brought together into a functioning system. During navigation, the software provides real-time updates to the proposed path to keep the robot within the mapped area, whilst avoiding any new obstacles. In the picture below, we see a navigation goal being set. The user clicks a location on the map where they would like to robot to go, and the navigation software displays a large green arrow to show this goal.

12 In addition to showing the goal, the picture above also shows: the mapped data: the black areas the scan data from the LiDAR: the white dots the robots current position: the red circle obstacle inflation: the turquoise/purple areas In deriving a path to the goal, the robot must allow a safe distance around all obstacles. To this end, the purpose of obstacle inflation is to make obstacles appear larger than they are, and with a safety margin, to help ensure the robot does not collide with them. So the turquoise areas are areas the robot should avoid: they are the danger spots where collision could occur. During path planning, the robot footprint (in red) should not be made to overlap significantly with those inflated areas. As the robot navigates towards a goal, it maintains an area around itself where it performs obstacle inflation, and seeks to keep its path outside of those areas.

13 Running navigation Running navigation is simple with your Mini-Turty II robot. 1. To run the navigation suite, first close any previous mapping session (press 'q', followed by Ctrl-C), then execute the following: $./mini_turty_nav.sh Note: you may need to modify the path to the new map, as specified in mini_turty_nav.sh, see the line: 'roslaunch scanner2d amcl_rd_demo.launch map_file:=/home/ubuntu/robot/maps/map.yaml' Just do vi mini_turty_nav.sh and make your changes, if necessary depending on where you have your saved map. Frontier Exploration Frontier Exploration is one of the newest and coolest features of our robots. This functionality is what enables the robot to autonomously enter previously unexplored areas, and without any human intervention travel around to fully explore its environment whilst building a map for later use. Set Mini-Turty II free to explore the great unknown! Tele-Viewing Tele-Viewing allows users to see what the robots sees, even from another room! Using the on-robot camera with teleop, users can remotely operate the robot and monitor what s in the robot field of view.

14 Computer Vision Using OpenCV, run the Find Cat app to enable Mini-Turty II to search the mapped area for the presence of a cat! With this function the robot searches the entire mapped area and when it finds a cat it moves towards it and highlights the cat face with a bright magenta circle on the tele-viewed video image! This is a super-fun application that provides many opportunities to learn about the exciting field of computer vision. The app could be adapted to detect dogs, people and even many household objects. For further assistance, visit or send to 'support@rhoeby.com'. Enjoy your new robot!

CONNECT TO BUFFALO ROUTER

CONNECT TO BUFFALO ROUTER 02/08/18 TurtleBot1 Cheat Sheet with Mapping I. ON TURTLEBOT 1. POWER TO NETBOOK 2. LOG ON NETBOOK PASS: TB 3. POWER ON BASE (Button to right of base) 4. CONNECT NETBOOK TO BASE (lower left of base) 5.

More information

CSCE 574 Robotics Fall 2018

CSCE 574 Robotics Fall 2018 CSCE 574 Robotics Fall 2018 Courtesy of Alberto Quattrini Li. Notes on the Turtlebot 2 This document contains some details on how to use the Turtlebot 2 robots. For any question, please email the instructors.

More information

Running the PR2. Chapter Getting set up Out of the box Batteries and power

Running the PR2. Chapter Getting set up Out of the box Batteries and power Chapter 5 Running the PR2 Running the PR2 requires a basic understanding of ROS (http://www.ros.org), the BSD-licensed Robot Operating System. A ROS system consists of multiple processes running on multiple

More information

ROS Tutorial. Me133a Joseph & Daniel 11/01/2017

ROS Tutorial. Me133a Joseph & Daniel 11/01/2017 ROS Tutorial Me133a Joseph & Daniel 11/01/2017 Introduction to ROS 2D Turtle Simulation 3D Turtlebot Simulation Real Turtlebot Demo What is ROS ROS is an open-source, meta-operating system for your robot

More information

@ The ULTIMATE Intellivision Manual

@ The ULTIMATE Intellivision Manual @ The ULTIMATE Intellivision Flashback @ Manual CONSOLE The Ultimate Flashback runs the excellent jzintv emulator on a Raspberry Pi 2. You will see some computer code with loading, but I ve tried to keep

More information

@ The ULTIMATE Manual

@ The ULTIMATE Manual @ The ULTIMATE Console @ Manual CONSOLE The Ultimate Console runs the jzintv emulator on a Raspberry Pi. You will see some computer code with loading, but I ve tried to keep this to a minimum. It takes

More information

STEP BY STEP GUIDE (RASPBERRY PI)

STEP BY STEP GUIDE (RASPBERRY PI) STEP BY STEP GUIDE (RASPBERRY PI) Raspberry Pi The Raspberry Pi is a credit-card-sized single-board computer developed in the UK by the Raspberry Pi Foundation with the intention of promoting the teaching

More information

UWYO VR SETUP INSTRUCTIONS

UWYO VR SETUP INSTRUCTIONS UWYO VR SETUP INSTRUCTIONS Step 1: Power on the computer by pressing the power button on the top right corner of the machine. Step 2: Connect the headset to the top of the link box (located on the front

More information

Release Notes v KINOVA Gen3 Ultra lightweight robot enabled by KINOVA KORTEX

Release Notes v KINOVA Gen3 Ultra lightweight robot enabled by KINOVA KORTEX Release Notes v1.1.4 KINOVA Gen3 Ultra lightweight robot enabled by KINOVA KORTEX Contents Overview 3 System Requirements 3 Release Notes 4 v1.1.4 4 Release date 4 Software / firmware components release

More information

Endurance R/C Wi-Fi Servo Controller 2 Instructions

Endurance R/C Wi-Fi Servo Controller 2 Instructions Endurance R/C Wi-Fi Servo Controller 2 Instructions The Endurance R/C Wi-Fi Servo Controller 2 allows you to control up to eight hobby servos, R/C relays, light controllers and more, across the internet

More information

Infoblox and Ansible Integration

Infoblox and Ansible Integration DEPLOYMENT GUIDE Infoblox and Ansible Integration Ansible 2.5 April 2018 2018 Infoblox Inc. All rights reserved. Ansible Deployment Guide April 2018 Page 1 of 12 Contents Overview... 3 Introduction...

More information

EITN90 Radar and Remote Sensing Lab 2

EITN90 Radar and Remote Sensing Lab 2 EITN90 Radar and Remote Sensing Lab 2 February 8, 2018 1 Learning outcomes This lab demonstrates the basic operation of a frequency modulated continuous wave (FMCW) radar, capable of range and velocity

More information

Downloading a ROBOTC Sample Program

Downloading a ROBOTC Sample Program Downloading a ROBOTC Sample Program This document is a guide for downloading and running programs on the VEX Cortex using ROBOTC for Cortex 2.3 BETA. It is broken into four sections: Prerequisites, Downloading

More information

Scan Sat Network S.L.

Scan Sat Network S.L. Scan Sat Network S.L. IPTV Issue Solver Guide No Signal on the screen with IPTV. My IPTV channels are stopping. My Radio is not working I don t get any sound on my channels No Signal on the screen with

More information

Say hello to BAXTER! A.P.R.I.L. Project - Residential Workshop Plymouth MSc. CNCR Gabriella Pizzuto & MSc. Eng. Ricardo de Azambuja

Say hello to BAXTER! A.P.R.I.L. Project - Residential Workshop Plymouth MSc. CNCR Gabriella Pizzuto & MSc. Eng. Ricardo de Azambuja Say hello to BAXTER! A.P.R.I.L. Project - Residential Workshop Plymouth 2016 MSc. CNCR Gabriella Pizzuto & MSc. Eng. Ricardo de Azambuja By the end of this workshop, you should be able to: Understand what

More information

TM5. Guide Book. Hardware Version: 2.00 Software Version: 1.62

TM5. Guide Book. Hardware Version: 2.00 Software Version: 1.62 TM5 Guide Book Hardware Version: 2.00 Software Version: 1.62 ii Release Date : 2017-07-10 The information contained herein is the property of Techman Robot Corporation (hereinafter referred to as the Corporation).

More information

Lab 8: Introduction to the e-puck Robot

Lab 8: Introduction to the e-puck Robot Lab 8: Introduction to the e-puck Robot This laboratory requires the following equipment: C development tools (gcc, make, etc.) C30 programming tools for the e-puck robot The development tree which is

More information

Other RTOS services Embedded Motion Control 2012

Other RTOS services Embedded Motion Control 2012 Other RTOS services Embedded Motion Control 2012 Group 7: Siddhi Imming Bart Moris Roger Pouls Patrick Vaes Eindhoven, May 29, 2012 Content Other RTOS services Connecting two nodes ROS debugging tools

More information

Setting up the Camera. AXIS Camera Manager Click on AXIS Camera Manager Icon:

Setting up the Camera. AXIS Camera Manager Click on AXIS Camera Manager Icon: Content Page 1... Setting up the camera Page 7... AVS Camera Overview Page 8... AVS Application (App) Page 10... AVS License Page 11... AVS Jogging Controls Page 11... AVS Navigator Page 12... AVS Slider

More information

ANSYS v14.5. Manager Installation Guide CAE Associates

ANSYS v14.5. Manager Installation Guide CAE Associates ANSYS v14.5 Remote Solve Manager Installation Guide 2013 CAE Associates What is the Remote Solve Manager? The Remote Solve Manager (RSM) is a job queuing system designed specifically for use with the ANSYS

More information

TurtleBot2&ROS - Learning TB2

TurtleBot2&ROS - Learning TB2 TurtleBot2&ROS - Learning TB2 Ing. Zdeněk Materna Department of Computer Graphics and Multimedia Fakulta informačních technologií VUT v Brně TurtleBot2&ROS - Learning TB2 1 / 22 Presentation outline Introduction

More information

XLR PRO Radio Frequency (RF) Modem. Getting Started Guide

XLR PRO Radio Frequency (RF) Modem. Getting Started Guide XLR PRO Radio Frequency (RF) Modem Getting Started Guide XLR PRO Radio Frequency (RF) Modem Getting Started Guide 90002203 Revision Date Description A September 2014 Initial release. B March 2014 Updated

More information

AES 7705i MultiNet Receiver System Initial Installation and Setup Guide

AES 7705i MultiNet Receiver System Initial Installation and Setup Guide AES 7705i MultiNet Receiver System Initial Installation and Setup Guide AES Corporation 285 Newbury Street. Peabody, Massachusetts 01960-1315 USA Tel: USA (978) 535-7310. Fax: USA (978) 535-7313 Copyright

More information

VoIP Paging Amplifier and Elastix Server

VoIP Paging Amplifier and Elastix Server VoIP Paging Amplifier and Elastix Server Setup Guide http://www.elastix.org 1.0 Setup Diagram Figure 1-1 is a setup diagram for a single VoIP Paging Amplifier configuration. In this configuration, the

More information

1 Lab + Hwk 4: Introduction to the e-puck Robot

1 Lab + Hwk 4: Introduction to the e-puck Robot 1 Lab + Hwk 4: Introduction to the e-puck Robot This laboratory requires the following: (The development tools are already installed on the DISAL virtual machine (Ubuntu Linux) in GR B0 01): C development

More information

Outernet L-band on Rasbian Documentation

Outernet L-band on Rasbian Documentation Outernet L-band on Rasbian Documentation Release 1.0a2 Outernet Inc May 22, 2017 Contents 1 Guide contents 3 i ii This guide shows how to deploy Outernet software on a Raspberry Pi

More information

Make sure you have these items handy

Make sure you have these items handy Quick Start Guide Make sure you have these items handy What we ve sent you: A. Fetch box B. Ethernet Cable (3m) (You ll receive 3 of these if you ve ordered a Power Line Adaptor 1 x 3m & 2 x 1.5m) G.

More information

PaperCut VCA Cash Acceptor Manual

PaperCut VCA Cash Acceptor Manual PaperCut VCA Cash Acceptor Manual Contents 1 Introduction... 2 2 How PaperCut interfaces with the VCA... 2 3 Setup Phase 1: Device/Hardware Setup... 3 3.1 Networking/Firewall Configuration... 3 3.2 IP

More information

FINAL REVIEW. Well done you are an MC Hacker. Welcome to Hacking Minecraft.

FINAL REVIEW. Well done you are an MC Hacker. Welcome to Hacking Minecraft. Let s Hack Welcome to Hacking Minecraft. This adventure will take you on a journey of discovery. You will learn how to set up Minecraft, play a multiplayer game, teleport around the world, walk on water,

More information

Zero Touch Provisioning of NIOS on Openstack using Ansible

Zero Touch Provisioning of NIOS on Openstack using Ansible DEPLOYMENT GUIDE Zero Touch Provisioning of NIOS on Openstack using Ansible NIOS version 8.3 Oct 2018 2018 Infoblox Inc. All rights reserved. Zero Touch Provisioning of NIOS on Openstack using Ansible

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 3.2.2 Red Hat, Inc. Mar 08, 2018 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 5 4 Examine the Tower Dashboard 7 5 The Settings

More information

Quick Start Guide. RSP-Z2 Dual Channel Analog-IP Interface

Quick Start Guide. RSP-Z2 Dual Channel Analog-IP Interface INTEROPERABILITY NOW Quick Start Guide RSP-Z2 Dual Channel Analog-IP Interface Designed and Manufactured by: JPS Interoperability Solutions 5800 Departure Drive Raleigh, NC 27616 919-790-1011 Email: sales@jpsinterop.com

More information

Emergency Stop Final Project

Emergency Stop Final Project Emergency Stop Final Project Jeremy Cook and Jessie Chen May 2017 1 Abstract Autonomous robots are not fully autonomous yet, and it should be expected that they could fail at any moment. Given the validity

More information

AirScope Spectrum Analyzer User s Manual

AirScope Spectrum Analyzer User s Manual AirScope Spectrum Analyzer Manual Revision 1.0 October 2017 ESTeem Industrial Wireless Solutions Author: Date: Name: Eric P. Marske Title: Product Manager Approved by: Date: Name: Michael Eller Title:

More information

Goal: Test WiFi MU-MIMO station Download, one 2x2 station, one 1x1.

Goal: Test WiFi MU-MIMO station Download, one 2x2 station, one 1x1. http://www.candelatech.com sales@candelatech.com +1 360 380 1618 [PST, GMT -8] Network Testing and Emulation Solutions Test WiFi MU-MIMO Download. Goal: Test WiFi MU-MIMO station Download, one 2x2 station,

More information

An Escape Room set in the world of Assassin s Creed Origins. Content

An Escape Room set in the world of Assassin s Creed Origins. Content An Escape Room set in the world of Assassin s Creed Origins Content Version Number 2496 How to install your Escape the Lost Pyramid Experience Goto Page 3 How to install the Sphinx Operator and Loader

More information

VIRTUAL MUSEUM BETA 1 INTRODUCTION MINIMUM REQUIREMENTS WHAT DOES BETA 1 MEAN? CASTLEFORD TIGERS HERITAGE PROJECT

VIRTUAL MUSEUM BETA 1 INTRODUCTION MINIMUM REQUIREMENTS WHAT DOES BETA 1 MEAN? CASTLEFORD TIGERS HERITAGE PROJECT CASTLEFORD TIGERS HERITAGE PROJECT VIRTUAL MUSEUM BETA 1 INTRODUCTION The Castleford Tigers Virtual Museum is an interactive 3D environment containing a celebratory showcase of material gathered throughout

More information

Figure 1 The Raith 150 TWO

Figure 1 The Raith 150 TWO RAITH 150 TWO SOP Figure 1 The Raith 150 TWO LOCATION: Raith 150 TWO room, Lithography area, NanoFab PRIMARY TRAINER: SECONDARY TRAINER: 1. OVERVIEW The Raith 150 TWO is an ultra high resolution, low voltage

More information

Vision Ques t. Vision Quest. Use the Vision Sensor to drive your robot in Vision Quest!

Vision Ques t. Vision Quest. Use the Vision Sensor to drive your robot in Vision Quest! Vision Ques t Vision Quest Use the Vision Sensor to drive your robot in Vision Quest! Seek Discover new hands-on builds and programming opportunities to further your understanding of a subject matter.

More information

OverDrive for Kindle, Kindle Paperwhite, Kindle Voyage, and Kindle Oasis (not Kindle Fire and Fire Tablet) Contents

OverDrive for Kindle, Kindle Paperwhite, Kindle Voyage, and Kindle Oasis (not Kindle Fire and Fire Tablet) Contents OverDrive for Kindle, Kindle Paperwhite, Kindle Voyage, and Kindle Oasis (not Kindle Fire and Fire Tablet) Contents Optimizing OverDrive for your Kindle Searching and Browsing Borrowing and Downloading

More information

Kaseya 2. User Guide. Version 7.0

Kaseya 2. User Guide. Version 7.0 Kaseya 2 vpro User Guide Version 7.0 May 30, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from time

More information

Super HUD- User Guide

Super HUD- User Guide - User Guide From Poker Pro Labs Version - 2 1. Introduction to Super HUD... 1 2. Installing Super HUD... 2 3. Getting Started... 7 3.1 Don t have an Account?... 8 3.2 Super HUD Membership(s)... 9 4. Super

More information

Autonomous Localization

Autonomous Localization Autonomous Localization Jennifer Zheng, Maya Kothare-Arora I. Abstract This paper presents an autonomous localization service for the Building-Wide Intelligence segbots at the University of Texas at Austin.

More information

Manual Web Portal pettracer GPS cat collar Version 1.0

Manual Web Portal pettracer GPS cat collar Version 1.0 Page 1 / 10 Table of Content System Overview... 3 How the pettracer system works... 3 Live Tracking Mode (Real Time)... 3 Passive Tracking Mode... 3 Web portal access via Smartphone and Web browser...

More information

Manual. ios App. Ver2.2. v Mall Drive, Commack, NY (P) (F)

Manual. ios App. Ver2.2. v Mall Drive, Commack, NY (P) (F) Manual Ver2.2 ios App v1.6 73 Mall Drive, Commack, NY 11725 631-864-1000 (P) 631-543-8900 (F) www.accu-scope.com info@accu-scope.com Contents CHAPTER 1: SYSTEM REQUIREMENT & SOFTWARE -------------------------------------

More information

PaperCut MF - Fuji Xerox ApeosPort V+ Embedded Manual

PaperCut MF - Fuji Xerox ApeosPort V+ Embedded Manual PaperCut MF - Fuji Xerox ApeosPort V+ Embedded Manual Contents 1 Version history... 5 2 Overview... 6 2.1 Consistency... 6 2.2 Integration... 6 2.3 Rate of development... 6 2.4 Vendor Neutral... 6 2.5

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 3.1.3 Red Hat, Inc. Feb 27, 2018 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 5 4 Examine the Tower Dashboard 7 5 The Settings

More information

Quick Start Guide.indd 1 05/11/15 10:07

Quick Start Guide.indd 1 05/11/15 10:07 015-10-19 Quick Start Guide.indd 1 05/11/15 10:07 1 WELCOME TO TRACKMAN Congratulations on the purchase of your TrackMan 4. This guide shows you what your TrackMan can do, helps you set it up, and gets

More information

9/2/2013 Excellent ID. Operational Manual eskan SADL handheld scanner

9/2/2013 Excellent ID. Operational Manual eskan SADL handheld scanner 9/2/2013 Excellent ID Operational Manual eskan SADL handheld scanner Thank You! We are grateful you chose Excellent ID for your SADL scanner needs. We believe this easy-to-use scanner will provide dependable

More information

things you should know first: Technology Tablets Download free app Puffin Acdemy. More info in the Resources page on your educator dashboard.

things you should know first: Technology Tablets Download free app Puffin Acdemy. More info in the Resources page on your educator dashboard. things you should know first: Technology Desktops & Laptops Access by internet browser at ssgrin.centervention.com nothing to download. Tablets Download free app Puffin Acdemy. More info in the Resources

More information

Implementation Of Vision-Based Landing Target Detection For VTOL UAV Using Raspberry Pi

Implementation Of Vision-Based Landing Target Detection For VTOL UAV Using Raspberry Pi Implementation Of Vision-Based Landing Target Detection For VTOL UAV Using Raspberry Pi Ei Ei Nyein, Hla Myo Tun, Zaw Min Naing, Win Khine Moe Abstract: This paper presents development and implementation

More information

Universal Camera Registration User Guide for ILS 9.75 & 12.75

Universal Camera Registration User Guide for ILS 9.75 & 12.75 User Guide for ILS 9.75 & 12.75 www.ulsinc.com Overview Camera Registration allows the laser system to automate the alignment of a vector path with the material for the purpose of tightening process control

More information

Cell Biology and Bioimaging Core

Cell Biology and Bioimaging Core Cell Biology and Bioimaging Core Leica TCS SP5 Operating Instructions Starting up the instrument 1. First, log in the log book located on the confocal desk. Include your name, your lab s PI, an account

More information

Chanalyzer 4. Chanalyzer 4 by MetaGeek USER GUIDE page 1

Chanalyzer 4. Chanalyzer 4 by MetaGeek USER GUIDE page 1 Chanalyzer 4 Chanalyzer 4 by MetaGeek USER GUIDE page 1 Chanalyzer 4 spectrum analysis software Table of Contents Introduction What is a Wi-Spy? What is Chanalyzer? Installation Choose a Wireless Network

More information

Introduction to CLI Automation with Ansible

Introduction to CLI Automation with Ansible Introduction to CLI Automation with Ansible Tim Nothnagel, Consulting Engineer Mike Leske, Technical Leader Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session

More information

TurboVUi Solo. User Guide. For Version 6 Software Document # S Please check the accompanying CD for a newer version of this document

TurboVUi Solo. User Guide. For Version 6 Software Document # S Please check the accompanying CD for a newer version of this document TurboVUi Solo For Version 6 Software Document # S2-61432-604 Please check the accompanying CD for a newer version of this document Remote Virtual User Interface For MOTOTRBO Professional Digital 2-Way

More information

3D Scanning Guide. 0. Login. I. Startup

3D Scanning Guide. 0. Login. I. Startup 3D Scanning Guide UTSOA has a Konica Minolta Vivid 910 3D non-contact digitizing system. This scanner is located in the digital fabrication section of the technology lab in Sutton Hall 1.102. It is free

More information

Vision Centric Challenge 2019 S-SLAM: Simple SLAM

Vision Centric Challenge 2019 S-SLAM: Simple SLAM Vision Centric Challenge 2019 S-SLAM: Simple SLAM (Simultaneous Localization and Mapping) A Robofest (www.robofest.net) Challenge for Pre-college and College Students Lawrence Technological University,

More information

Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis.

Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis. Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis. This user guide along with the videos included on the CD should have you on your way to perfect zero

More information

General Workflow Instructions for capturing 360 images using Theta V, editing in Photoshop, and publishing to Google StreetView

General Workflow Instructions for capturing 360 images using Theta V, editing in Photoshop, and publishing to Google StreetView General Workflow Instructions for capturing 360 images using Theta V, editing in Photoshop, and publishing to Google StreetView This document attempts to give step-by-step instructions for capturing and

More information

The ideal K-12 science microscope solution. User Guide. for use with the Nova5000

The ideal K-12 science microscope solution. User Guide. for use with the Nova5000 The ideal K-12 science microscope solution User Guide for use with the Nova5000 NovaScope User Guide Information in this document is subject to change without notice. 2009 Fourier Systems Ltd. All rights

More information

EOS 80D (W) Wireless Function Instruction Manual ENGLISH INSTRUCTION MANUAL

EOS 80D (W) Wireless Function Instruction Manual ENGLISH INSTRUCTION MANUAL EOS 80D (W) Wireless Function Instruction Manual ENGLISH INSTRUCTION MANUAL Introduction What You Can Do Using the Wireless Functions This camera s wireless functions let you perform a range of tasks wirelessly,

More information

DSI-600 EMI Test & Measurement Receiver

DSI-600 EMI Test & Measurement Receiver DSI-600 EMI Test & Measurement Receiver Product Brochure DSI-600 EMI TEST & Measurement Receiver Product Brochure December 2017 Dynamic Sciences International, Inc. DSI 600 Series EMI Test & Measurement

More information

Marine Robotics. Alfredo Martins. Unmanned Autonomous Vehicles in Air Land and Sea. Politecnico Milano June 2016

Marine Robotics. Alfredo Martins. Unmanned Autonomous Vehicles in Air Land and Sea. Politecnico Milano June 2016 Marine Robotics Unmanned Autonomous Vehicles in Air Land and Sea Politecnico Milano June 2016 INESC TEC / ISEP Portugal alfredo.martins@inesctec.pt Tools 2 MOOS Mission Oriented Operating Suite 3 MOOS

More information

I I. Technical Report. "Teaching Grasping Points Using Natural Movements" R R. Yalım Işleyici Guillem Alenyà

I I. Technical Report. Teaching Grasping Points Using Natural Movements R R. Yalım Işleyici Guillem Alenyà Technical Report IRI-DT 14-02 R R I I "Teaching Grasping Points Using Natural Movements" Yalım Işleyici Guillem Alenyà July, 2014 Institut de Robòtica i Informàtica Industrial Institut de Robòtica i Informàtica

More information

KM-4800w. Copy/Scan Operation Manual

KM-4800w. Copy/Scan Operation Manual KM-4800w Copy/Scan Operation Manual NOTE: This Operation Manual contains information that corresponds to using both the metric and inch versions of these machines. The metric versions of these machines

More information

Introduction to Pioneer Robots

Introduction to Pioneer Robots CSci-5552: Sensing and Estimation in Robotics Introduction to Pioneer Robots 3/3/2016 CSCI-5552: INTRODUCTION TO PIONEER ROBOTS 1 Organizational Matters Undergraduate Robotics Lab: KHKH 1-202 Need to get

More information

IOT Based Secure System For Monitoring And Control of Coal Mine Environment of Robotics.

IOT Based Secure System For Monitoring And Control of Coal Mine Environment of Robotics. IOT Based Secure System For Monitoring And Control of Coal Mine Environment of Robotics. 1 K.Jhansi Rani, 2 K.Niranjan Reddy 1 PG Student (M.Tech ES), Dept. of ECE, Mallareddy Engineering College for women,

More information

Installation guide. Activate. Install your TV. Uninstall. 1 min 10 mins. 30 mins

Installation guide. Activate. Install your TV. Uninstall. 1 min 10 mins. 30 mins Installation guide 1 Activate 2 Uninstall 3 Install your TV 1 min 10 mins 30 mins INT This guide contains step-by-step instructions on how to: 1 Activate Before we do anything else, reply GO to the text

More information

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Kinect2Scratch Workbook

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Kinect2Scratch Workbook Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl Workbook Scratch is a drag and drop programming environment created by MIT. It contains colour coordinated code blocks that allow a user to build up instructions

More information

EinScan-SE. Desktop 3D Scanner. User Manual

EinScan-SE. Desktop 3D Scanner. User Manual EinScan-SE Desktop 3D Scanner User Manual Catalog 1. 2. 3. 4. 5. 6. 7. 8. 1.1. 1.2. 1.3. 1.1. 1.2. 1.1. 1.2. 1.3. 1.1. 1.2. Device List and Specification... 2 Device List... 3 Specification Parameter...

More information

Install the App. Search the App/Play Store for SiOnyx Aurora. Tap Get/Install. (Screens will differ slightly between ios and Android devices.

Install the App. Search the App/Play Store for SiOnyx Aurora. Tap Get/Install. (Screens will differ slightly between ios and Android devices. SiOnyx Aurora ios/android Mobile App The mobile app will allow you to take remote control of your camera. This guide will assist you with installing and using the app. (Screens will differ slightly between

More information

Scripted Introduction

Scripted Introduction things you should know first: Technology Desktops & Laptops Access by internet browser at zoou.centervention.com nothing to download. Tablets Download free app Puffin Acdemy. More info in the Resources

More information

UCP-Config Program Version: 3.28 HG A

UCP-Config Program Version: 3.28 HG A Program Description HG 76342-A UCP-Config Program Version: 3.28 HG 76342-A English, Revision 01 Dev. by: C.M. Date: 28.01.2014 Author(s): RAD Götting KG, Celler Str. 5, D-31275 Lehrte - Röddensen (Germany),

More information

J, K, L. Each command, 31. Fully qualified domain name (FQDN), 116

J, K, L. Each command, 31. Fully qualified domain name (FQDN), 116 Index A AngularJS framework command execution, 22 $ git clone command, 22 host OS, 24 OSs, 23 songs-app-angularjs/directory, 22 songs for kids, 76 77 Ubuntu 14.04 guest OS, 24 VM, 24 web browser and HTTP

More information

MiR Robot Interface 2.0

MiR Robot Interface 2.0 MiR Robot Interface 2.0 Reference Guide 07/2018 v1.7 Copyright and disclaimer All rights reserved. No parts of this manual may be reproduced in any form without the express written permission of Mobile

More information

Note: Objective: Prelab: ME 5286 Robotics Labs Lab 1: Hello Cobot World Duration: 2 Weeks (1/22/2018 2/02/2018)

Note: Objective: Prelab: ME 5286 Robotics Labs Lab 1: Hello Cobot World Duration: 2 Weeks (1/22/2018 2/02/2018) ME 5286 Robotics Labs Lab 1: Hello Cobot World Duration: 2 Weeks (1/22/2018 2/02/2018) Note: At least two people must be present in the lab when operating the UR5 robot. Upload a selfie of you, your partner,

More information

A User s Guide to the Robot Virtual Worlds App RVW APP. ROBOTC Graphical Programming. Virtual Programming Challenges to Foster Computational Thinking

A User s Guide to the Robot Virtual Worlds App RVW APP. ROBOTC Graphical Programming. Virtual Programming Challenges to Foster Computational Thinking A User s Guide to the Robot Virtual Worlds App RVW APP ROBOTC Graphical Programming Virtual Programming Challenges to Foster Computational Thinking Table of Contents 2 Table of Contents 3 What is the RVW

More information

How to Present External Audio Stimuli from PC - Focusrite Soundcards using the Aurical Aud Audiometer

How to Present External Audio Stimuli from PC - Focusrite Soundcards using the Aurical Aud Audiometer How to Present External Audio Stimuli from PC - Focusrite Soundcards using the Aurical Aud Audiometer This page explains how to present audio stimuli from an Researcher PC with a focusrite soundcard to

More information

LC-10 Chipless TagReader v 2.0 August 2006

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

More information

Pointstreak. Electronic Gamesheet. Scorekeepers Manual

Pointstreak. Electronic Gamesheet. Scorekeepers Manual Pointstreak Electronic Gamesheet Scorekeepers Manual January 2005 Table of Contents Section 1 Introduction... 2 Section 2 Basic Operations... 3 Section 3 Logging In... 6 Section 4 Game Information Screen...

More information

Mobile Target Tracking Using Radio Sensor Network

Mobile Target Tracking Using Radio Sensor Network Mobile Target Tracking Using Radio Sensor Network Nic Auth Grant Hovey Advisor: Dr. Suruz Miah Department of Electrical and Computer Engineering Bradley University 1501 W. Bradley Avenue Peoria, IL, 61625,

More information

Overview... 3 Starting the Software... 3 Adding Your Profile... 3 Updating your Profile... 4

Overview... 3 Starting the Software... 3 Adding Your Profile... 3 Updating your Profile... 4 Page 1 Contents Overview... 3 Starting the Software... 3 Adding Your Profile... 3 Updating your Profile... 4 Tournament Overview... 5 Adding a Tournament... 5 Editing a Tournament... 6 Deleting a Tournament...

More information

QAM Snare Navigator Quick Set-up Guide- Wi-Fi version

QAM Snare Navigator Quick Set-up Guide- Wi-Fi version QAM Snare Navigator Quick Set-up Guide- Wi-Fi version v1.0 3/19/12 This document provides an overview of what a technician needs to do to set up and configure a QAM Snare Navigator Wi-Fi version for leakage

More information

Pointstreak. Electronic Gamesheet. Scorekeepers Manual

Pointstreak. Electronic Gamesheet. Scorekeepers Manual Pointstreak Electronic Gamesheet Scorekeepers Manual January 2005 Table of Contents Section 1 Introduction... 2 Section 2 Basic Operations... 3 Section 3 Logging In... 6 Section 4 Game Information Screen...

More information

TT-208. User s Manual. 300Mps 5.8 GHz. IP Camera Wireless Transmission Kit

TT-208. User s Manual. 300Mps 5.8 GHz. IP Camera Wireless Transmission Kit TT-208 300Mps 5.8 GHz IP Camera Wireless Transmission Kit User s Manual V1.0 02 / 2014 Welcome Thank you for purchasing the TT-208 Wireless Transmission Kit for IP Cameras. This user s manual is designed

More information

Collaborative Robotic Navigation Using EZ-Robots

Collaborative Robotic Navigation Using EZ-Robots , October 19-21, 2016, San Francisco, USA Collaborative Robotic Navigation Using EZ-Robots G. Huang, R. Childers, J. Hilton and Y. Sun Abstract - Robots and their applications are becoming more and more

More information

APNT#1166 Banner Engineering Driver v How To Guide

APNT#1166 Banner Engineering Driver v How To Guide Application Note #1166: Banner Engineering Driver v1.10.02 How To Guide Introduction This Application Note is intended to assist users in using the GP-Pro EX Version 2..X\2.10.X Banner Engineering Corp.

More information

Fetch Robotics. Release Indigo. Fetch Robotics Inc

Fetch Robotics. Release Indigo. Fetch Robotics Inc Fetch Robotics Release Indigo Fetch Robotics Inc December 19, 2017 CONTENTS 1 Introduction 3 1.1 Before you Start............................................. 3 2 Safety 5 2.1 Safety Overview.............................................

More information

INCLINED PLANE RIG LABORATORY USER GUIDE VERSION 1.3

INCLINED PLANE RIG LABORATORY USER GUIDE VERSION 1.3 INCLINED PLANE RIG LABORATORY USER GUIDE VERSION 1.3 Labshare 2011 Table of Contents 1 Introduction... 3 1.1 Remote Laboratories... 3 1.2 Inclined Plane - The Rig Apparatus... 3 1.2.1 Block Masses & Inclining

More information

Mars Rover: System Block Diagram. November 19, By: Dan Dunn Colin Shea Eric Spiller. Advisors: Dr. Huggins Dr. Malinowski Mr.

Mars Rover: System Block Diagram. November 19, By: Dan Dunn Colin Shea Eric Spiller. Advisors: Dr. Huggins Dr. Malinowski Mr. Mars Rover: System Block Diagram November 19, 2002 By: Dan Dunn Colin Shea Eric Spiller Advisors: Dr. Huggins Dr. Malinowski Mr. Gutschlag System Block Diagram An overall system block diagram, shown in

More information

Semi-Autonomous Parking for Enhanced Safety and Efficiency

Semi-Autonomous Parking for Enhanced Safety and Efficiency Technical Report 105 Semi-Autonomous Parking for Enhanced Safety and Efficiency Sriram Vishwanath WNCG June 2017 Data-Supported Transportation Operations & Planning Center (D-STOP) A Tier 1 USDOT University

More information

Accessing e-books with your e-reader

Accessing e-books with your e-reader e-reader 1 Accessing e-books with your e-reader What you need to know about library e-books is that each one is protected by Digital Rights Management (DRM). This means that access to e-books is restricted

More information

DocuSign for Sugar 7 v1.0. Overview. Quick Start Guide. Published December 5, 2013

DocuSign for Sugar 7 v1.0. Overview. Quick Start Guide. Published December 5, 2013 Quick Start Guide DocuSign for Sugar 7 v1.0 Published December 5, 2013 Overview This guide provides information on installing and signing documents with DocuSign for Sugar7. The Release Notes for DocuSign

More information

Inserting and Creating ImagesChapter1:

Inserting and Creating ImagesChapter1: Inserting and Creating ImagesChapter1: Chapter 1 In this chapter, you learn to work with raster images, including inserting and managing existing images and creating new ones. By scanning paper drawings

More information

Website Link

Website Link Employee Timesheet Guide Website Link Lumina System: https://secure.entertimeonline.com/ta/965.login Web Clock: https://secure.entertimeonline.com/ta/965.clock Contents Website Link... 1 Clocking In or

More information

COALESCE V2 CENTRAL COALESCE CENTRAL USER GUIDE WC-COA 24/7 TECHNICAL SUPPORT AT OR VISIT BLACKBOX.COM. Display Name.

COALESCE V2 CENTRAL COALESCE CENTRAL USER GUIDE WC-COA 24/7 TECHNICAL SUPPORT AT OR VISIT BLACKBOX.COM. Display Name. COALESCE CENTRAL USER GUIDE WC-COA COALESCE V2 CENTRAL 24/7 AT OR VISIT BLACKBOX.COM BY Import Displays Discover CSV File Manual Your Coalesce Instances Appearance and Usage Display Name Network Security

More information

AGENT PLATFORM FOR ROBOT CONTROL IN REAL-TIME DYNAMIC ENVIRONMENTS. Nuno Sousa Eugénio Oliveira

AGENT PLATFORM FOR ROBOT CONTROL IN REAL-TIME DYNAMIC ENVIRONMENTS. Nuno Sousa Eugénio Oliveira AGENT PLATFORM FOR ROBOT CONTROL IN REAL-TIME DYNAMIC ENVIRONMENTS Nuno Sousa Eugénio Oliveira Faculdade de Egenharia da Universidade do Porto, Portugal Abstract: This paper describes a platform that enables

More information

Installation guide. Activate. Install your Broadband. Install your Phone. Install your TV. 1 min. 30 mins

Installation guide. Activate. Install your Broadband. Install your Phone. Install your TV. 1 min. 30 mins Installation guide 1 Activate Install your Broadband Install your TV 4 Install your Phone 1 min 0 mins 0 mins 5 mins INT This guide contains step-by-step instructions on how to: 1 Activate Before we do

More information

Make: Sensors. Tero Karvinen, Kimmo Karvinen, and Ville Valtokari. (Hi MAKER MEDIA SEBASTOPOL. CA

Make: Sensors. Tero Karvinen, Kimmo Karvinen, and Ville Valtokari. (Hi MAKER MEDIA SEBASTOPOL. CA Make: Sensors Tero Karvinen, Kimmo Karvinen, and Ville Valtokari (Hi MAKER MEDIA SEBASTOPOL. CA Table of Contents Preface xi 1. Raspberry Pi 1 Raspberry Pi from Zero to First Boot 2 Extract NOOBS*.zip

More information