How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook

Size: px
Start display at page:

Download "How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook"

Transcription

1 Written Directions for EV3 Line Follow (Heaviside Algorithm) Description: Given a black line and the light sensor on the EV3 robot, we want to have the light sensor read values from the reflected light. When the values read dark, we will direct the robot to turn right. When the light values read light, we direct the robot to turn left. A graph representing this action would look like: Light > threshold: Turn Left Light < threshold: Turn Right These directions are written for a two motor robot with Left wheel assigned to C and Right wheel assigned to B. The light sensor should be mounted in front, pointing down and centered between the wheels. The robotsquare.com website has plans for the Educator Robot at This design would work with these directions.

2 Procedure: The Pseudo Code for the program is as follows: threshold = 40; while (true) { if (SensorValue[light] < threshold) { motor[left] = 30; motor[right] = 0; } else { motor[left] = 0; motor[right] = 30; } } 1. Start the EV3 software. (Double click the EV3 icon) 2. Select File-New Project

3 3. Save the Project as Line Follow Tutorial

4 4. Note the Program Tab this is where we will write the main method of our program. (EV3 Projects can have multiple tabs or program files.)

5 5. We need a while (true) statement. This is a loop that will continue forever (at least while the program and robot is on). Click on the Orange block tab and drag a loop block into the program area. Note the infinity icon in the block. This is the loop condition (infinity being forever). Any icon in a block can be clicked and changed to set the properties of the block. (Like count, sensor, logic... for loop condition). Play Block Orange Block Tab (Flow) Drag and connect loop block to Play bock.

6 6. We now need an if-else statement. In EV3 programming this is called a switch block. Stay in the orange tab area and drag a switch block inside the loop block.

7 7. The default switch block is for the touch sensor in port 1. Click the icon below the picture of the touch sensor and select Color Sensor Compare Ambient Light Intensity. Note that the icon changes to light sensor and the port changes to 3. Click here to select sensor

8 8. We need to set the threshold value for the light sensor switch block. Note the icons for the less than sign and the sensor value on the block: We can change the < sign or the threshold value by changing these parameters. For now, leave the block at < and change the sensor value to 40. Change to:

9 9. Recall the code we outlined in the beginning. We need to turn the left motor on and the right motor off when the light is less than 40. Click on the green Action block tab and drag two regular motor blocks to the top of the switch block. Note the checkmark this indicates the actions the block will take when the condition is met (light is less than 40). 10. Note that both these blocks are set to D port and the stopping condition is Rotations (Indicated by the icons). Go to the first block and set the parameters to: a. Port C (Left Motor)

10 b. On c. 30 Power 11. We need to set the second block to: a. Port B (Right Motor) b. Off

11 12. The program so far should look like this:

12 13. We will now do the blocks for the else part of the block (indicated by the x ). Drag two motor blocks into the else section. 14. Change the parameters on the blocks to: a. Port C (Left Motor) i. Off b. Port B(Right Motor) i. On ii. 30 Power

13 15. The entire program should look like this: 16. The program is complete! Download and test it with your robot. It should track the line (with a very jerky action).

14 17. To smooth up the action of the robot, we can change the stop blocks B in the top and C in the bottom to be a lower power. For Example: 18. This enables the robot to track the line smoother. But, it will not be able to negotiate the sharper turns.

15 19. Let us say we want to modify our program so that the robot will stop line tracking after a given rotation of one of the wheels (This will let us specify a distance). The pseudo code would look like this: threshold = 40; SensorValue[rotationB] = 0; // Reset while (SensorValue[rotationB] < 720) { if (SensorValue[light] < threshold) { motor[left] = 30; motor[right] = 0; } else { motor[left] = 0; motor[right] = 30; } } motor[left] = 0; // Motor left off motor[right] = 0; // Motor right off

16 20. First, click on the Yellow Tab for Sensor Value blocks and drag a motor rotation sensor in front of the loop: 21. Set the Port to C.

17 22. Set the action to Reset. 23. Now that the C Motor Rotation sensor is reset to 0, we can modify the loop condition to read the Rotation Sensor. Click on the Loop Condition Icon and change to Motor Rotation Degrees.

18 24. Loops in EV3 are Loop Until in structure. So to set the loop to continue while the rotation sensor is less than 720 degrees, we need to say rotate until Rotation C is > 720 degrees. a. Change the Port to C b. Keep the > and change the degrees to 720.

19 25. The entire program should look like this: 26. If you ran the program now, you would note that after the two rotations of the C motor, the robot would sort of drift and coast off the line. (Try this and note the result). To fix this, we must use stop commands to turn off the C and B motor and brake.

20 27. Go back to the Green Action Tab and Drag a Move Tank Motor Block (allows for controlling two motors in one block) after the loop. Set the Motors to B+C and the action to Off 28. Save and run the program. You will note that the robot should stop quickly after the two rotations. You can set a Loop exit condition for any sensor or logic. 29. Let us say that we want to re-use the light sensor if-else statement for line following. We can create a function or My Block that we can re-use in other programs or later in this program. To make a My-Block: a. Click on the Switch Block to select. b. Click on Tools -> My Block Builder

21 30. Name the Block Line_Follow and type a description:

22 31. You can select an Icon for you MyBlock. Then click Finish. Note that the MyBlock now replaces the Switch Block: 32. You can access your Line Follow block in the MyBlock Tab:

23 33. To edit the MyBlock you double click on the block. It then opens a new tab and you can edit the block. 34. Congratulations! You have written a MyBlock for basic Line Following!

North Texas FLL Coaches' Clinics. Beginning Programming October 2014. Patrick R. Michaud pmichaud@pobox.com republicofpi.org

North Texas FLL Coaches' Clinics. Beginning Programming October 2014. Patrick R. Michaud pmichaud@pobox.com republicofpi.org North Texas FLL Coaches' Clinics Beginning Programming October 2014 Patrick R. Michaud pmichaud@pobox.com republicofpi.org Goals Learn basics of Mindstorms programming Be able to accomplish some missions

More information

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer NXT Generation Robotics Introductory Worksheets School of Computing University of Kent Copyright c 2010 University of Kent NXT Generation Robotics These worksheets are intended to provide an introduction

More information

EV3 Programming. Overview for FLL Coaches. A very big high five to Tony Ayad

EV3 Programming. Overview for FLL Coaches. A very big high five to Tony Ayad EV3 Programming Overview for FLL Coaches A very big high five to Tony Ayad 2013 Nature s Fury Coach Call Basic programming of the Mindstorm EV3 Robot People Introductions Deborah Kerr & Faridodin Lajvardi

More information

2/26/2008. Sensors For Robotics. What is sensing? Why do robots need sensors? What is the angle of my arm? internal information

2/26/2008. Sensors For Robotics. What is sensing? Why do robots need sensors? What is the angle of my arm? internal information Sensors For Robotics What makes a machine a robot? Sensing Planning Acting information about the environment action on the environment where is the truck? What is sensing? Sensing is converting a quantity

More information

Lego Robot Tutorials Touch Sensors

Lego Robot Tutorials Touch Sensors Lego Robot Tutorials Touch Sensors Bumper Cars with a Touch Sensor With a touch sensor and some robot programming, you can make your robot search its way around the room. It can back up and turn around

More information

C.I. La chaîne d information LES CAPTEURS. Page 1 sur 5

C.I. La chaîne d information LES CAPTEURS. Page 1 sur 5 LES CAPTEURS C.I. La chaîne d information The Touch Sensor gives your robot a sense of touch. The Touch Sensor detects when it is being pressed by something and when it is released again. Suggestions for

More information

Tutorial for Programming the LEGO MINDSTORMS NXT

Tutorial for Programming the LEGO MINDSTORMS NXT Tutorial for Programming the LEGO MINDSTORMS NXT Table of contents 1 LEGO MINDSTORMS Overview 2 Hardware 2.1 The NXT Brick 2.2 The Servo Motors 2.3 The Sensors 3 Software 3.1 Starting a Program 3.2 The

More information

Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools

Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools www.lego.com/education/mindstorms LEGO, the LEGO logo and MINDSTORMS are trademarks of the LEGO Group. 2004 The LEGO

More information

Line Tracking Basic Lesson

Line Tracking Basic Lesson Line Tracking Basic Lesson Now that you re familiar with a few of the key NXT sensors, let s do something a little more interesting with them. This lesson will show you how to use the Light Sensor to track

More information

FLL Advanced Programming & Best Practices Workshop

FLL Advanced Programming & Best Practices Workshop FLL Advanced Programming & Best Practices Workshop Bill Aucoin Maryland State FLL Committee University of Maryland, Baltimore County (UMBC) October 5, 2013 Guidelines For Today Feel free to enter and leave

More information

KI6501 Data Manager. Software User Manual

KI6501 Data Manager. Software User Manual KI6501 Data Manager Software User Manual CONTENTS 1. Installation of USB Virtual COM Port driver software... 2 2. Installation of KI6501 Manager Software... 2 3. Connecting KI6501 to PC (Personal Computer)

More information

Introduction to programming moway

Introduction to programming moway moway Contents Contents... 1 Introduction... 2 Flowcharts... 2 Movement blocks... 5 Conditionals... 6 Loops... 7 AND/OR Operators... 8 Setting flowcharts in order... 10 www.moway-robot.com 1 Introduction

More information

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 Learning Goals: At the end of this lab, the student should have basic familiarity with the DataMan

More information

Watch Your Garden Grow

Watch Your Garden Grow Watch Your Garden Grow The Brinno GardenWatchCam is a low cost, light weight, weather resistant, battery operated time-lapse camera that captures the entire lifecycle of any garden season by taking photos

More information

Congratulations for making the decision to become one of the many proud KT-X robot owners.

Congratulations for making the decision to become one of the many proud KT-X robot owners. Congratulations for making the decision to become one of the many proud KT-X robot owners. The following quick start guide will enable to get your KT-X up and running in as little time as possible. Before

More information

Advanced Programming with LEGO NXT MindStorms

Advanced Programming with LEGO NXT MindStorms Advanced Programming with LEGO NXT MindStorms Presented by Tom Bickford Executive Director Maine Robotics Advanced topics in MindStorms Loops Switches Nested Loops and Switches Data Wires Program view

More information

White Noise Help Guide for iphone, ipad, and Mac

White Noise Help Guide for iphone, ipad, and Mac White Noise Help Guide for iphone, ipad, and Mac Created by TMSOFT - www.tmsoft.com - 12/08/2011 White Noise allows you to create the perfect ambient sound environment for relaxation or sleep. This guide

More information

EasyC. Programming Tips

EasyC. Programming Tips EasyC Programming Tips PART 1: EASYC PROGRAMMING ENVIRONMENT The EasyC package is an integrated development environment for creating C Programs and loading them to run on the Vex Control System. Its Opening

More information

understanding sensors

understanding sensors The LEGO MINDSTORMS NXT 2.0 robotics kit includes three types of sensors: Ultrasonic, Touch, and Color. You can use these sensors to build a robot that makes sounds when it sees you or to build a vehicle

More information

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION

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

More information

Can Traffic Accidents be eliminated by Robots?

Can Traffic Accidents be eliminated by Robots? Can Traffic Accidents be eliminated by Robots? Elementary Science and Technology Grade 7 Teaching- learning Module for Unit Light and Sound Abstract This modules leads to a decision making activity related

More information

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION

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

More information

Tutorial for Basic Editing in Adobe Premiere Pro CS5

Tutorial for Basic Editing in Adobe Premiere Pro CS5 Tutorial for Basic Editing in Adobe Premiere Pro CS5 Interface Overview Highlighting Key Tools - Project Files This is where all the files you import into Premiere are located. This includes movie files,

More information

SimplyMap Canada Tutorial

SimplyMap Canada Tutorial SimplyMap Canada Tutorial SimplyMap Canada is a web mapping application developed by Geographic Research Inc. The application enables users to create thematic maps and reports using demographic, business,

More information

OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher

OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher OPERATION MANUAL MV-410RGB Layout Editor Version 2.1- higher Table of Contents 1. Setup... 1 1-1. Overview... 1 1-2. System Requirements... 1 1-3. Operation Flow... 1 1-4. Installing MV-410RGB Layout

More information

esd Mobile Student User Guide v. 4.2.0

esd Mobile Student User Guide v. 4.2.0 esd Mobile Student User Guide v. 4.2.0 Copyright 2002-2014 eschooldata, LLC All rights reserved. TABLE OF CONTENTS Overview... 3 Logging In... 3 Navigating esd Mobile Student... 5 Home Tab... 7 Students

More information

Intermediate STEMSEL Project 6 Light Sensor Alarm

Intermediate STEMSEL Project 6 Light Sensor Alarm Intermediate STEMSEL Project 6 Light Sensor Alarm Problem What items are important for survival in an emergency situation? How can we secure our goods? We want to create an alarm that can work even in

More information

SpaceClaim Introduction Training Session. A SpaceClaim Support Document

SpaceClaim Introduction Training Session. A SpaceClaim Support Document SpaceClaim Introduction Training Session A SpaceClaim Support Document In this class we will walk through the basic tools used to create and modify models in SpaceClaim. Introduction We will focus on:

More information

etoureurope User Guide

etoureurope User Guide Registration etoureurope User Guide 1. Connect to the internet and open the application 2. You will be presented with a Loading screen. Please wait 3. If it is the first time you are opening the application,

More information

ibank Quick Start Guide

ibank Quick Start Guide ibank Quick Start Guide An introductory tutorial for ibank 3, a personal financial management application. 2008 IGG Software, LLC Overview This tutorial will cover these basic program concepts: 1 2 3 4

More information

Animations in Creo 3.0

Animations in Creo 3.0 Animations in Creo 3.0 ME170 Part I. Introduction & Outline Animations provide useful demonstrations and analyses of a mechanism's motion. This document will present two ways to create a motion animation

More information

How-To Change your Account Settings in Office Outlook 2010:

How-To Change your Account Settings in Office Outlook 2010: How-To Change your Account Settings in Office Outlook 2010: This document will how you step-by-step how to change your account settings in Microsoft Office Outlook 2010. This how-to only covers this version

More information

Programming LEGO NXT Robots using NXC

Programming LEGO NXT Robots using NXC Programming LEGO NXT Robots using NXC This text programming language derived from C language is bended together with IDE BricxCC on standard firmware LEGO Mindstorms. This can be very convenient for those,

More information

Installing Remote Desktop Connection

Installing Remote Desktop Connection SETTING UP YOUR REMOTE DESKTOP This section will assist you in setting you Remote Desktop Connection. This will allow you to create an icon for easy access to your virtual desktop. DISCLAIMER: All images

More information

Pocket Verifier Quick Start HTC Touch Diamond

Pocket Verifier Quick Start HTC Touch Diamond Pocket Verifier Quick Start HTC Touch Diamond Contents INTRODUCTION... 1 INSTALLING THE POCKET VERIFIER SOFTWARE... 2 SETTING UP THE POCKET SPECTRUM...3 SETTING UP YOU MERCHANT ACCOUNT... 7 HOW TO SWIPE

More information

Welcome to SMART Notebook TM 11 collaborative learning software

Welcome to SMART Notebook TM 11 collaborative learning software Welcome to SMART Notebook TM 11 collaborative learning software SMART Notebook Software Tutorial Review features and get started quickly To access this tutorial later, go to: 1 What s new in SMART Notebook

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012 2012 SAP Business Intelligence (BI) Reporting Training for MM General Navigation Rick Heckman PASSHE 1/31/2012 Page 1 Contents Types of MM BI Reports... 4 Portal Access... 5 Variable Entry Screen... 5

More information

Creating a Project with PSoC Designer

Creating a Project with PSoC Designer Creating a Project with PSoC Designer PSoC Designer is two tools in one. It combines a full featured integrated development environment (IDE) with a powerful visual programming interface. The two tools

More information

Introduction. Notice anything missing from this manual? Please contact support@palmerperformance.com and help us improve!

Introduction. Notice anything missing from this manual? Please contact support@palmerperformance.com and help us improve! Introduction DashCommand is an app that acts as an advanced in-car computer. It is currently available for Windows, ios (iphone/ipod Touch/iPad), and Android. At the time of this writing, the most recent

More information

Modern Robotics, Inc Core Device Discovery Utility. Modern Robotics Inc, 2015

Modern Robotics, Inc Core Device Discovery Utility. Modern Robotics Inc, 2015 Modern Robotics, Inc Core Device Discovery Utility Modern Robotics Inc, 2015 Version 1.0.1 October 27, 2015 Core Device Discovery Application Guide The Core Device Discovery utility allows you to retrieve

More information

Blender 2.49b How to generate 3D-images?

Blender 2.49b How to generate 3D-images? Blender 2.49b How to generate 3D-images? Table of Contents 1 Installation...1 2 Image and data preparation in Present...1 3 Blender Tutorial...2 3.1 Import of the STL-file...2 3.2 Creating a second window...3

More information

Appointments: Calendar Window

Appointments: Calendar Window Appointments Appointments: Calendar Window Purpose The Appointment Calendar window is the automated equivalent of a paper appointment book. You can make appointments, confirm appointments, and view appointments

More information

Getting Started in Tinkercad

Getting Started in Tinkercad Getting Started in Tinkercad By Bonnie Roskes, 3DVinci Tinkercad is a fun, easy to use, web-based 3D design application. You don t need any design experience - Tinkercad can be used by anyone. In fact,

More information

STEP 7 MICRO/WIN TUTORIAL. Step-1: How to open Step 7 Micro/WIN

STEP 7 MICRO/WIN TUTORIAL. Step-1: How to open Step 7 Micro/WIN STEP 7 MICRO/WIN TUTORIAL Step7 Micro/WIN makes programming of S7-200 easier. Programming of S7-200 by using Step 7 Micro/WIN will be introduced in a simple example. Inputs will be defined as IX.X, outputs

More information

1.0-Scratch Interface 1.1. Valuable Information

1.0-Scratch Interface 1.1. Valuable Information 1.0-Scratch Interface 1.1 Valuable Information The Scratch Interface is divided to three: 1. Stage 2. Sprite/background properties 3. Scratch Action Blocks Building the game by designing the sprites and

More information

Corsair Link v2.4 Manual. Initial Set-up. Placing devices within the chassis

Corsair Link v2.4 Manual. Initial Set-up. Placing devices within the chassis Corsair Link v2.4 Manual Initial Set-up Placing devices within the chassis When you first start up Corsair Link, there will be a list of auto-detected devices on the left column. You can drag and drop

More information

TETRIX Add-On Extensions. Encoder Programming Guide (ROBOTC )

TETRIX Add-On Extensions. Encoder Programming Guide (ROBOTC ) Introduction: In this extension, motor encoders will be added to the wheels of the Ranger Bot. The Ranger Bot with Encoders will be programmed to move forward until it detects an object, turn 90, and move

More information

Kinect Interface to Play Computer Games with Movement

Kinect Interface to Play Computer Games with Movement Kinect Interface to Play Computer Games with Movement Program Install and Hardware Setup Needed hardware and software to use the Kinect to play computer games. Hardware: Computer running Windows 7 or 8

More information

How to Build a Simple Pac-Man Game

How to Build a Simple Pac-Man Game How to Build a Simple Pac-Man Game For today's program, we are going to build a simple Pac-Man game. Pac-Man was one of the very first arcade games developed around 1980. For our version of Pac-Man we

More information

Make Voice Calls and Share Documents using Skype*

Make Voice Calls and Share Documents using Skype* Make Voice Calls and Share Documents using Skype* Intel Easy Steps 1 2012 Intel Corporation Using Skype for making Voice Calls and Sharing Documents In the previous activity Using Skype to Communicate

More information

10.3.1.9 Lab - Configure a Windows Vista Firewall

10.3.1.9 Lab - Configure a Windows Vista Firewall 5.0 10.3.1.9 Lab - Configure a Windows Vista Firewall Print and complete this lab. In this lab, you will explore the Windows Vista Firewall and configure some advanced settings. Recommended Equipment Step

More information

Multi-Touch Control Wheel Software Development Kit User s Guide

Multi-Touch Control Wheel Software Development Kit User s Guide Multi-Touch Control Wheel Software Development Kit User s Guide V3.0 Bulletin #1204 561 Hillgrove Avenue LaGrange, IL 60525 Phone: (708) 354-1040 Fax: (708) 354-2820 E-mail: instinct@grayhill.com www.grayhill.com/instinct

More information

CENTRICITY WEB VERSION 3.0. Updated 11/24/2009 Medical Imaging IT Technical Support please call the Help Desk 617-732-5927

CENTRICITY WEB VERSION 3.0. Updated 11/24/2009 Medical Imaging IT Technical Support please call the Help Desk 617-732-5927 TABLE OF CONTENTS PAGE 1 CENTRICITY QUICK REFERENCE GUIDE PAGE 2-3 ACCESSING CENTRICITY FROM LMR PAGES 4-5 ACCESSING CENTRICITY FROM CAS PAGES 6-7 3 1 2 9 1. Worklist Views Allows the user to view studies

More information

How to Install and Set up a Jabra Go 6400 and Pro9400 Series Headset with an Avaya 96x1 Series IP Phone

How to Install and Set up a Jabra Go 6400 and Pro9400 Series Headset with an Avaya 96x1 Series IP Phone How to Install and Set up a Jabra Go 6400 and Pro9400 Series Headset with an Avaya 96x1 Series IP Phone Note: The EHS (Electronic Hook Switch) link 14201-35 is used with all Jabra Headsets sold by CNS/NI&S.

More information

3D Viewer. user's manual 10017352_2

3D Viewer. user's manual 10017352_2 EN 3D Viewer user's manual 10017352_2 TABLE OF CONTENTS 1 SYSTEM REQUIREMENTS...1 2 STARTING PLANMECA 3D VIEWER...2 3 PLANMECA 3D VIEWER INTRODUCTION...3 3.1 Menu Toolbar... 4 4 EXPLORER...6 4.1 3D Volume

More information

Creating a New Search

Creating a New Search Getting Started The information search feature in AVImark allows the user to create and save queries to find specific information in the program. The Information Search in version 2010.4 and later now

More information

Call Center - Agent Application User Manual

Call Center - Agent Application User Manual Forum 700 Call Center Agent Application User Manual Legal notice: Belgacom and the Belgacom logo are trademarks of Belgacom. All other trademarks are the property of their respective owners. The information

More information

Table of Contents. 1. Overview... 3. 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3. 2. Installation Instructions..

Table of Contents. 1. Overview... 3. 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3. 2. Installation Instructions.. Table of Contents 1. Overview..... 3 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3 2. Installation Instructions.. 4 2.1 Installing the On Call Diabetes Management Software. 4 2.2

More information

REMOTE DESKTOP SETUP INSTRUCTIONS

REMOTE DESKTOP SETUP INSTRUCTIONS REMOTE DESKTOP SETUP INSTRUCTIONS 1. Setting up your work desktop to allow Remote Desktop connectivity Windows does not have this feature enabled by default, so we will go through the steps on how to enable

More information

C-more Remote Access, Data Log, FTP File Transfer, and Email Tutorial

C-more Remote Access, Data Log, FTP File Transfer, and Email Tutorial C-more Remote Access, Data Log, FTP File Transfer, and Email Tutorial P a g e 2 Introduction: This script will walk you through the basic process of setting up the remote access, data logging, FTP file

More information

The Sensor Readings Gadget for Window 7. Version 1.0.0.5

The Sensor Readings Gadget for Window 7. Version 1.0.0.5 The Sensor Readings Gadget for Window 7 Version 1.0.0.5 Before you start: 1. You need the Virtual Coordinator Version 1.05.3 or above ready in the same computer or the other computer in the same network.

More information

How a Teen can use "Budget" to manage their money

How a Teen can use Budget to manage their money How a Teen can use "Budget" to manage their money Parents, you can use "Budget" to teach your teen how to manage their allowance and/or part-time job income, and eventually to manage a checking account.

More information

Help Guide Invoicing

Help Guide Invoicing Help Guide Invoicing 2 Fergus Invoicing Guide Fergus Invoicing Guide Draft Version Published 18/04/15 INVOICING Table of contents 1 OVERVIEW 4 2 PROGRESS INVOICES 10 EXAMPLE A: INVOICING A CHARGE UP JOB

More information

Packet Tracer - Connecting a Wired and Wireless LAN Topology

Packet Tracer - Connecting a Wired and Wireless LAN Topology Topology 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 5 Addressing Table Objectives Cloud Cable Modem Router0 Router1 WirelessRouter Part 1: Connect to

More information

Creating Animated Apps

Creating Animated Apps Chapter 17 Creating Animated Apps This chapter discusses methods for creating apps with simple animations objects that move. You ll learn the basics of creating two-dimensional games with App Inventor

More information

Microsoft Outlook 2007 Calendar Features

Microsoft Outlook 2007 Calendar Features Microsoft Outlook 2007 Calendar Features Participant Guide HR Training and Development For technical assistance, please call 257-1300 Copyright 2007 Microsoft Outlook 2007 Calendar Objectives After completing

More information

How to operate the BD FACSCanto flow cytometer

How to operate the BD FACSCanto flow cytometer How to operate the BD FACSCanto flow cytometer Preface Dear colleague, the BD FACSCanto flow cytometer is use to operate, however, it is a delicate instrument for measuring fluorescence of single cells.

More information

Outlook Express and Express Archiver to Backup and Retrieve E-Mail at UW 1

Outlook Express and Express Archiver to Backup and Retrieve E-Mail at UW 1 Outlook Express and Express Archiver to Backup and Retrieve E-Mail at UW 1 Express Archiver can be used to read archived e-mail that has been organized by Outlook Express (OE). If properly set in Outlook

More information

How to Install Microsoft Windows Server 2008 R2 in VMware ESXi

How to Install Microsoft Windows Server 2008 R2 in VMware ESXi How to Install Microsoft Windows Server 2008 R2 in VMware ESXi I am not responsible for your actions or their outcomes, in any way, while reading and/or implementing this tutorial. I will not provide support

More information

Animated Lighting Software Overview

Animated Lighting Software Overview Animated Lighting Software Revision 1.0 August 29, 2003 Table of Contents SOFTWARE OVERVIEW 1) Dasher Pro and Animation Director overviews 2) Installing the software 3) Help 4) Configuring the software

More information

The following pages will help you to solve issues linked to the installation and first use of the Wintech Manager software and Wintech USB computer.

The following pages will help you to solve issues linked to the installation and first use of the Wintech Manager software and Wintech USB computer. WINTECH MANAGER FAQ The purpose of this document is not to replace the complete user guide delivered on the Wintech Manager s CD. Most of the common question you may have about the use of the Wintech Manager

More information

Generative Drafting. Page 1 1997 2001 DASSAULT SYSTEMES. IBM Product Lifecycle Management Solutions / Dassault Systemes

Generative Drafting. Page 1 1997 2001 DASSAULT SYSTEMES. IBM Product Lifecycle Management Solutions / Dassault Systemes Generative Drafting Page 1 Tutorial Objectives Description This Tutorial is an introduction to Generative Drafting. Message To show how CATIA V5 allows the user to automatically generate associative drafting

More information

VIRTUAL DESKTOP COMPANION SOFTWARE FOR MAC

VIRTUAL DESKTOP COMPANION SOFTWARE FOR MAC VIRTUAL DESKTOP COMPANION SOFTWARE FOR MAC USER MANUAL 25206A ABOUT THIS MANUAL Thank you for getting the Boogie Board Sync 9.7 LCD ewriter. This manual will help you with the Sync Virtual Desktop Companion

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

To Begin Customize Office

To Begin Customize Office To Begin Customize Office Each of us needs to set up a work environment that is comfortable and meets our individual needs. As you work with Office 2007, you may choose to modify the options that are available.

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

Brother ScanViewer Guide for ios/os X

Brother ScanViewer Guide for ios/os X Brother ScanViewer Guide for ios/os X Version 0 ENG Definitions of notes We use the following note style throughout this user s guide: NOTE Notes tell you how you should respond to a situation that may

More information

How to download your NI Press ebook for Nook Users

How to download your NI Press ebook for Nook Users How to download your NI Press ebook for Nook Users Downloading and Transferring Content via USB Nook 1 st Edition - NOOK HD: Nook1st Edition readers, please follow the steps for below to side-load a NOOK

More information

TECHNICAL NOTE TNOI32

TECHNICAL NOTE TNOI32 TECHNICAL NOTE TNOI32 Title: G3 to MC Modbus Communication Product(s): G3 and Modular Controller V2 (CSMSTRV2) ABSTRACT This document provides an introduction to connect a G3 HMI to a Modular Controller

More information

Information & Communication Technologies FTP and GroupWise Archives Wilfrid Laurier University

Information & Communication Technologies FTP and GroupWise Archives Wilfrid Laurier University Instructions for MAC users MAC users have not been joined to the Active Directory Domain. ICT is unable to capture GroupWise archives you may have on your computer automatically or confirm if you have

More information

Remote Access Enhancements

Remote Access Enhancements Remote Access Enhancements Citrix/Epic Set-up Instructions Provided By: Akron Children s IT Department Date: 7/11/2012 Version: v6 2012 Children s Hospital Medical Center of Akron Table of Contents 1.

More information

Instructions for Uploading a Payroll File using SchARP

Instructions for Uploading a Payroll File using SchARP Instructions for Uploading a Payroll File using SchARP This page is intended to provide a quick overview of the payroll process. The following pages will explain in more detail if necessary. If at any

More information

Essay 5 Tutorial for a Three-Dimensional Heat Conduction Problem Using ANSYS Workbench

Essay 5 Tutorial for a Three-Dimensional Heat Conduction Problem Using ANSYS Workbench Essay 5 Tutorial for a Three-Dimensional Heat Conduction Problem Using ANSYS Workbench 5.1 Introduction The problem selected to illustrate the use of ANSYS software for a three-dimensional steadystate

More information

Intro to 3D Animation Using Blender

Intro to 3D Animation Using Blender Intro to 3D Animation Using Blender Class Instructor: Anthony Weathersby Class Objectives A primer in the areas of 3D modeling and materials An introduction to Blender and Blender s toolset Course Introduction

More information

Designing a Graphical User Interface

Designing a Graphical User Interface Designing a Graphical User Interface 1 Designing a Graphical User Interface James Hunter Michigan State University ECE 480 Design Team 6 5 April 2013 Summary The purpose of this application note is to

More information

JVC Monitor Calibration 2 User's Guide

JVC Monitor Calibration 2 User's Guide JVC Monitor Calibration 2 User's Guide Table of Contents 1. What is JVC Monitor Calibration 2? 2. System Requirement 3. Installation (JVC Monitor Calibration 2) 4. Uninstall 5. Installation (EyeOne Display

More information

Guide to the... Nissan Leaf. Completely harmless fun with. City Car Club 100% electric

Guide to the... Nissan Leaf. Completely harmless fun with. City Car Club 100% electric Guide to the... Nissan Leaf Completely harmless fun with City Car Club 100% electric Contents 1. First arrival at the car 2. Starting the car 3. Basic controls 4. Getting the most from the battery 5. Finished

More information

oxigen system Slot.it oxigen timing RMS installation Dongle driver installation 1/ 11 Race Management Software

oxigen system Slot.it oxigen timing RMS installation Dongle driver installation 1/ 11 Race Management Software 1/ 11 Slot.it oxigen timing RMS installation To install the Slot.it oxigen timing-rms software, follow these steps: 1. download the O2_chrono_installer.zip file from Slot.it ftp site; 2. unzip the downloaded

More information

tattletale User Guide Consumer unit version 2.48 1 P a g e

tattletale User Guide Consumer unit version 2.48 1 P a g e tattletale User Guide Consumer unit version 2.48 1 P a g e Contents Basic 1... 4 Base Unit Features... 4 Initial Setup... 4 Arming... 5 Disarming... 5 Quiet Button... 5 Settings... 5 Settings 2... 6 Quick

More information

WINDOWS 7/8 instruction guide for your Printrbot printer and computer software

WINDOWS 7/8 instruction guide for your Printrbot printer and computer software Software To start printing with your Printrbot Simple 3d printer, you need to download 3 pieces of software and two digital models (STL files). 1. The teensy Serial Driver. This connects the printer to

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Maps: Knowledge Worth Sharing Map Annotation A map is a graphic representation of some part of the earth. In our industry, it may represent either the surface or sub surface;

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

St art. rp m. Km /h 1:4 2.6 4:0 7.5 3:5 5.0 4:0 5.0 4:1 2.5 3:5 7.5 4:0 0.0 4:1 5.0 4:1 7.5 4:2 0.0 4:0 2.5 4:1 0.0 3:5 2.5.

St art. rp m. Km /h 1:4 2.6 4:0 7.5 3:5 5.0 4:0 5.0 4:1 2.5 3:5 7.5 4:0 0.0 4:1 5.0 4:1 7.5 4:2 0.0 4:0 2.5 4:1 0.0 3:5 2.5. modified 29/1/15 t 3:5 2.5 3:5 5. 3:5 7.5 4:. 4: 2.5 4: 5. 4: 7.5 4:1. 4:1 2.5 4:1 5. 4:1 7.5 4:2. Km /h 25 5 75 1 125 15 175 2 225 rp m 25 5 75 1 125 1 2 3 1:4 2.6 St art Content 1 THE TIRE RACK SUPERVISE

More information

REFERENCE GUIDE 1. INTRODUCTION

REFERENCE GUIDE 1. INTRODUCTION 1. INTRODUCTION Scratch is a new programming language that makes it easy to create interactive stories, games, and animations and share your creations with others on the web. This Reference Guide provides

More information

NVMS-1200. User Manual

NVMS-1200. User Manual NVMS-1200 User Manual Contents 1 Software Introduction... 1 1.1 Summary... 1 1.2 Install and Uninstall... 1 1.2.1 Install the Software... 1 2 Login Software... 3 2.1 Login... 3 2.2 Control Panel Instruction...

More information

Document Manager 2.0. Corporate Administrator Guide

Document Manager 2.0. Corporate Administrator Guide Document Manager 2.0 Corporate Administrator Guide Introduction to the Corporate Administrator Guide Document Manager 2.0 is the Web to Print ordering application for OfficeMax ImPress. Many features and

More information

This guide will show you how to configure a Windows Mobile 6 PDA for Bluetooth connection to the KBM Systems OBDKey Bluetooth device.

This guide will show you how to configure a Windows Mobile 6 PDA for Bluetooth connection to the KBM Systems OBDKey Bluetooth device. This guide will show you how to configure a Windows Mobile 6 PDA for Bluetooth connection to the KBM Systems OBDKey Bluetooth device. You should first connect the OBDKey device to the vehicle and the vehicle

More information

CONTENTS. What is ROBOTC? Section I: The Basics

CONTENTS. What is ROBOTC? Section I: The Basics BEGINNERS CONTENTS What is ROBOTC? Section I: The Basics Getting started Configuring Motors Write Drive Code Download a Program to the Cortex Write an Autonomous Section II: Using Sensors Sensor Setup

More information