Controlling the Robotic Arm using the BBC micro:bit

Size: px
Start display at page:

Download "Controlling the Robotic Arm using the BBC micro:bit"

Transcription

1 Controlling the Robotic Arm using the BBC micro:bit You need to plug the BBC micro:bit into a computer using a USB cable or sync to it using Bluetooth after downloading the correct app from your app store. This guide assumes you have already done that!!! If you need help, get in contact support@cbiseducation.com If you want to use a fifth motor, you will have to connect it to pin 11 and pin 16, when connecting to pin 11, you cannot use Button B The guide below assumes you are using four motors and not five Once you have wired up the robotic arm, head over to the BBC micro:bit website: and click on the Let s Code button Find the JavaScript Blocks Editor (PXT) section and click on the Let s Code button

2 Click on projects new project Next you will need to rename the project so it is easier to locate later on in the activity Get rid of all the blocks on the page, this can be done by dragging them to the left, over the tabs

3 Click on the Basic tab, select the on start block and drag it onto the page Click on the Variables tab, select the set item to block and drag it in-between the on start block

4 Click on item and rename it to MotorNumber Again, click on the Variables tab, select the set item to block and drag it below the set MotorNumber block Rename the item variable to CurrentMotor Now we need to stop power going through to the pins when the robotic arm turns on. To do this, click on the Advanced tab, then the Pins tab, select the digital write pin block and place it underneath the set CurrentMotor block.

5 Now we need to add the other seven pins, to do this duplicate the digital write pin seven times and place them underneath each other Next we need to replace the P0 in each of the statements with the corresponding pins from the wiring diagram previously

6 Now we need to show the motor number, click on the Basic tab, select the show number block and place it underneath the digital write pin block

7 Now, click on the Variables tab, select the MotorNumber block and drag it over the 0 from the show number block Now we need to create a bit of code to select a motor number. Click on the Input tab, select the on button A pressed block and drag it onto a blank section of the page Now, we need to create an if statement so that each time button A is pressed it will count up to 6

8 Click on the Logic tab, select the if statement and drag it in-between the on button A pressed block Click on the Logic tab, select the 0=0 block and place it over the true block on the if statement

9 Next click on the Variables tab, select the MotorNumber block and drag it over the first 0 in the 0=0 block. Then change the second 0 to 5 this tells the micro:bit that when the variable MotorNumber reaches 5 it will run the statements below, in the then section Next, click on the Variables tab, select the set item to block and drag it into he then section of the if statement Change the item to MotorNumber, then duplicate and place in the else section

10 Now we need to set the counter. To do this, click on the Math tab, select the 0+0 block and drag it over the 0 on the second set MotorNumber to block Click on the Variables tab, select the MotorNumber block and drag it over the first 0 on the 0+0 block, then change the second 0 to 1 Click on the Basic tab, select the show number block and drag it underneath the if statement

11 Click on the Variables tab, select the MotorNumber block, drag and replace the 0 from the show number block Now we need to set button B so that when it is pressed it locks the number so you can move the motor chosen Click on the input tab, select the on button A pressed block and drag it onto the page

12 You will see that the block has now been greyed out, click on the A and change it to B Next, click on the Variables tab, select the set item to block an drag it in-between the on button B pressed block Click on item and rename to CurrentMotor

13 Next, click on the Variables tab, select the MotorNumber block, drag and replace the 0 from the set CurrentMotor to block We now have created code for button A and button B, next we need to create the code that goes on behind the scenes Click on the on the Basic tab, select the forever block and drag it onto the page Next, click on the Logic tab, select the if statement and drag it in-between the forever block

14 Click on the blue cog and drag an else if underneath the if statement to create another section Click on the Logic tab, select the 0 < 0 block and drag it over the true block Now we need to tell the micro:bit that if you tilt it left, the motor will turn left etc.

15 Click on the Input tab, select the acceleration block and drag it over the first 0 Now, change the 0 to -300 when you are using numbers on the X axis, minus - numbers are for when you want the micro:bit to tilt left and positive numbers are for when the micro:bit tilts right Now we need to tell the micro:bit to show a directional arrow but also control the motors. Click on the Basic tab, then More and select the show arrow block. 3. Drag the show arrow block into the then section of the if statement

16 Click on the north block and change it to west this changes the arrow so when you tilt the micro:bit left, the arrow will point left or west on a compass Click on the Logic tab, select the if statement and drag it underneath the show arrow block Click on the blue cog icon located on the if statement

17 Now drag the else if block underneath the if block on the right. Repeat two more times to have a total of 3 else if blocks Now we need to tell the micro:bit to move the robotic arm motors, to do this we define a variable for each motor. Click on the Logic tab, select the 0=0 block, drag and drop it to the right of the if statement, replacing the true block

18 Click on the Variables tab, select the CurrentMotor block and drag it over the first 0 on the 0=0 statement Change the second 0 to 1 this statement tells the micro:bit, that if the motor selected with button B is number 1 then run the code we are going to put in the then section

19 Next, click on the Advanced tab, then the Pins tab. Select the digital write pin block and drag it into the first then section of the if statement Duplicate the digital write block and place it underneath

20 Now we need to change the pin number and the value of the pins Change the 0 in the first digital write pin block to 1, then change the Pin on the second digital write block to P1 this will move the base motor left Now we need to create the second motor function Duplicate the CurrentMotor = 1 block, drag and snap into place on the right of the first else if section Change the 1 to 2

21 Next, click on the Advanced tab, then the Pins tab. Select the digital write pin block and drag it into the second then section Duplicate the digital write block and place it underneath Change the pin from P0 to P8 and 0 to 1 on the first digital write statement.

22 Next, change the pin from P0 to P12 on the second digital write statement this will create a section of code to control the second motor Duplicate the CurrentMotor = 2 block, drag and snap into place on the right of the second else if section Replace the 2 with 3

23 Next, click on the Advanced tab, then the Pins tab. Select the digital write pin block and drag it into the third then section Duplicate the digital write block and place it underneath Change the pin from P0 to P2 and 0 to 1 on the first digital write block, then change the pin to P13 on the second digital write block this creates the block of code to control the third motor

24 Duplicate the CurrentMotor = 3 block, drag and snap into place on the right of the third else if section Replace the 3 with 4 Next, click on the Advanced tab, then the Pins tab. Select the digital write pin block and drag it into the fourth then section

25 Duplicate the digital write block and place it underneath Change the pin from P0 to P14 and 0 to 1 on the first digital write block, then change the pin to P15 on the second digital write block this creates the block of code to control the fourth motor Now we need to create a block of code so when the micro:bit tilts right the motors turn anticlockwise

26 Click on the Logic tab, select the 0 < 0 block and drag it to the right of the else if on the first if statement Click on the Input tab, select the acceleration block and drag it over the first 0 on the 0 < 0 statement Next, change the < symbol to >, then 0 to 300 Duplicate the whole if statement located in the first then section and place it below the acceleration > 300 block

27 Next, we need to change the pin numbers so when the micro:bit tilts left, the motors turn the opposite direction. All that is needed here is to change the 1 s to 0 s and the 0 s to 1 s Now, most of the code is done, all that is left to do is to add code into the else section so when the micro:bit is not doing any of the previous code it will stop all motors Click on the Basic tab, select the show leds block and drag it into the else section

28 Now we need to create a plus sign in the show leds block, to do this, click on the individual boxes until you make a + shape Now we need to make sure the pins we use are turned off. Click on the Advanced tab, then the Pins tab. Select the digital write block and drag it below the previously placed show leds block

29 Repeat the above step, seven more times Now, change the pins on all eight digital write blocks to the micro:bit pins used to control the motors (see image below)

30 You now will have all the code to control the Robotic Arm using a micro:bit You can now download the code to the micro:bit or use the Downloading code to the BBC micro:bit guide on the next page if you are unsure Downloading code to the BBC micro:bit

31 On the bottom left of the PXT editor is a button that says 'Download' - shown below in a red box, click on it to save the code file Click on the downloaded file at the bottom of the browser - select 'Show in Folder' This will open the folder containing all your downloaded files - this will include a file called something like 'microbit-micro-bit-robotic-arm.hex'

32 Right click on the file and choose to copy it (this is ready for the next step), now you need to plug the micro:bit, into your computer Right click on a blank space within the micro:bit folder and choose 'Paste' - it will display a window a bit like the below as it copies the file to the micro:bit. The code has now downloaded, have fun playing with the micro:bit Robotic Arm!!

Don t Steal My BBC micro:bit Alarm!

Don t Steal My BBC micro:bit Alarm! Description This is a simple tutorial demonstrating how to use the output pins on the BBC micro:bit and use the built in accelerometer to control a buzzer when the BBC micro:bit is moved. Learn how to:

More information

micro:bit Lesson 1. Using the Built-in Sensors

micro:bit Lesson 1. Using the Built-in Sensors micro:bit Lesson 1. Using the Built-in Sensors Created by Simon Monk Last updated on 2018-03-02 05:46:13 PM UTC Guide Contents Guide Contents Overview Magnetometer Magnet Detector High-strength 'rare earth'

More information

BBC micro:bit Cool Colours!

BBC micro:bit Cool Colours! Description This is a simple tutorial demonstrating how to use an analogue input with the BBC micro:bit. The BBC micro:bit is able to read analogue voltages from sensors like Light Dependent Resistors

More information

Piano for Micro:bit User Manual

Piano for Micro:bit User Manual Piano for Micro:bit User Manual INTRODUCTION Micro: bit is an ARM-based embedded system designed by the BBC of England, which is equipped with Bluetooth, accelerometer, electronic compass, three buttons,

More information

Internet Explorer 11 QUICK START GUIDE ADDRESS BAR SEARCH ACCESSING FMS

Internet Explorer 11 QUICK START GUIDE ADDRESS BAR SEARCH ACCESSING FMS QUICK START GUIDE While Internet Explorer 11 does not look that much different to what you are used to, there are a few useful features that have been added/enhanced that may make your life easier. ADDRESS

More information

You are going to code your micro:bit to read the future! Simply ask the micro:bit a quesition, and press a button to find out the answer!

You are going to code your micro:bit to read the future! Simply ask the micro:bit a quesition, and press a button to find out the answer! Fortune Teller Introduction You are going to code your micro:bit to read the future! Simply ask the micro:bit a quesition, and press a button to find out the answer! Step 1: Scrolling text Let s start

More information

Module 2, Add on lesson Introduction to the NXT and Mindstorms software. Teacher. 45 minutes

Module 2, Add on lesson Introduction to the NXT and Mindstorms software. Teacher. 45 minutes Module 2, Add on lesson Introduction to the NXT and Mindstorms software Teacher 45 minutes Purpose of this lesson Write a basic program using LEGO Mindstorms Download and run programs on the NXT Materials

More information

Module 2, Add on lesson Introduction to the NXT and Mindstorms software. Student. 45 minutes

Module 2, Add on lesson Introduction to the NXT and Mindstorms software. Student. 45 minutes Module 2, Add on lesson Introduction to the NXT and Mindstorms software Student 45 minutes Purpose of this lesson Write a basic program using LEGO Mindstorms Download and run programs on the NXT Materials

More information

BBC Micro:Bit. Year 7. Teacher Guide and Planning

BBC Micro:Bit. Year 7. Teacher Guide and Planning BBC Micro:Bit Year 7 Teacher Guide and Planning Micro:Bit Block Editor Planning Support - Teacher help to complete the steps required for the Micro:Bit to run successfully - 1:1 peer help and partner working.

More information

Click Freegal Music from the surreylibraries.ca (hover over the blue Research and Downloads tab and select Downloads.

Click Freegal Music from the surreylibraries.ca (hover over the blue Research and Downloads tab and select Downloads. Freegal Quick Facts Freegal gives Surrey residents with a valid Surrey Libraries card 3 free songs per week. Residents can download and KEEP the songs. You simply log into Freegal with your library card

More information

Introduction to Computers By Jennifer King, YA and Marketing Librarian, Great Bend Public Library

Introduction to Computers By Jennifer King, YA and Marketing Librarian, Great Bend Public Library Introduction to Computers By Jennifer King, YA and Marketing Librarian, Great Bend Public Library Welcome and Introduction To better understand how to use computers, this course will teach you some basic

More information

Micro:bit - an Educational & Creative Tool for Kids

Micro:bit - an Educational & Creative Tool for Kids Micro:bit - an Educational & Creative Tool for Kids SKU:DFR0497 INTRODUCTION micro:bit is a pocket-sized microcontroller designed for kids and beginners learning how to program, letting them easily bring

More information

micro:bit Lesson 2. Controlling LEDs on Breadboard

micro:bit Lesson 2. Controlling LEDs on Breadboard micro:bit Lesson 2. Controlling LEDs on Breadboard Created by Simon Monk Last updated on 2018-03-09 02:39:14 PM UTC Guide Contents Guide Contents Overview Parts BBC micro:bit Half-size breadboard Small

More information

Getting Started Manual for CODIBOT

Getting Started Manual for CODIBOT a Getting Started Manual for CODIBOT Step 1: Open the Box. Step 2: Inside the box you will find the Pre-Assembled body of CODIBOT along with the Add-On packs, Connecting Wires, Nuts & Bolts. Take out the

More information

Train the Trainer Resources Hex Files Here - https://goo.gl/mqovrv

Train the Trainer Resources Hex Files Here - https://goo.gl/mqovrv Finding you way around a micro:bit Topic 1 Hello World These resources can be found at https://faradaysecondary.theiet.org/umbraco/surface/download/downloadfile/3910 and /assets/documents/microbitcommunityposter.pdf

More information

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer Learning Targets: Students will be introduced to industry recognized game development software Students will learn how to navigate within the software Students will learn the basics on how to use Construct

More information

INTRODUCING THE CODEBIT!

INTRODUCING THE CODEBIT! GETTING STARTED Downloading the littlebits Code Kit app STEP 1 Download and open the littlebits Code Kit app at littlebits.com/code-kit-app STEP 2 Click the pink open blank canvas button to start writing

More information

FUN TECH TIPS 101 SUMMER CLOVIS UNIFIED SCHOOL DISTRICT INFORMATION TECHNOLOGY SERVICES Prepared by Tanie McKinzie, TSS III

FUN TECH TIPS 101 SUMMER CLOVIS UNIFIED SCHOOL DISTRICT INFORMATION TECHNOLOGY SERVICES Prepared by Tanie McKinzie, TSS III FUN TECH TIPS 101 SUMMER 2016 CLOVIS UNIFIED SCHOOL DISTRICT INFORMATION TECHNOLOGY SERVICES Prepared by Tanie McKinzie, TSS III PUBLISHER BASICS... 3 Creating a text box... 3 Adding a picture... 4 Manipulating

More information

RCX Tutorial. Commands Sensor Watchers Stack Controllers My Commands

RCX Tutorial. Commands Sensor Watchers Stack Controllers My Commands RCX Tutorial Commands Sensor Watchers Stack Controllers My Commands The following is a list of commands available to you for programming the robot (See advanced below) On Turns motors (connected to ports

More information

Tutorial 3: Using the Waveform Viewer Introduces the basics of using the waveform viewer. Read Tutorial SIMPLIS Tutorials SIMPLIS provide a range of t

Tutorial 3: Using the Waveform Viewer Introduces the basics of using the waveform viewer. Read Tutorial SIMPLIS Tutorials SIMPLIS provide a range of t Tutorials Introductory Tutorials These tutorials are designed to give new users a basic understanding of how to use SIMetrix and SIMetrix/SIMPLIS. Tutorial 1: Getting Started Guides you through getting

More information

BBC micro:bit Emoji Bag

BBC micro:bit Emoji Bag Description In this tutorial you will make your own bag from a template from scratch. Then following step by step instructions you will connect additional LEDs to the BBC micro:bit via conductive thread

More information

INTRODUCTION HARDWARE

INTRODUCTION HARDWARE Project Kit Table of Contents INTRODUCTION... 3 HARDWARE... 3 Hardware built-in micro:bit:... 3 Hardware included in this kit:... 4 CODE... 5 Pseudo Code:... 5 Coding Tools:... 5 Running Programs:... 8

More information

IMPORTING A STUDENT LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST

IMPORTING A STUDENT  LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST IMPORTING A STUDENT EMAIL LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST In Synergy create a report for each class. 1. Log in to Synergy. 2. Open the list of available reports; select the Reports icon from

More information

Rocket Countdown Pencil Case

Rocket Countdown Pencil Case Description In this tutorial students will make their own pencil case from a template from scratch. Then following step by step instructions they will connect additional LEDs to the BBC micro:bit via conductive

More information

Organist Palette Guide

Organist Palette Guide Organist Palette Guide Initial Release May 2015 North American Office: 5600 General Washington Drive Suite B211, Alexandria, VA 22312 USA Toll Free: (800) 272-4775 T: (703) 933-0024 F: (703) 933-0025 European

More information

Setting up the PC ready for BESA 11

Setting up the PC ready for BESA 11 Setting up the PC ready for BESA 11 1 - Installing Driver. Important Note: Before you start to install the driver, please do not plug BESA 11 into the computer s USB port or else the installation will

More information

Creating Page Layouts 25 min

Creating Page Layouts 25 min 1 of 10 09/11/2011 19:08 Home > Design Tips > Creating Page Layouts Creating Page Layouts 25 min Effective document design depends on a clear visual structure that conveys and complements the main message.

More information

The University of Nottingham Second Life Building Tutorial

The University of Nottingham Second Life Building Tutorial s Web Campus Sandbox is open to the public for anyone to practise their building and scripting skills. A personal building tutorial is available in the sandbox (simply click the crate beneath the sign

More information

UDK Basics Textures and Material Setup

UDK Basics Textures and Material Setup UDK Basics Textures and Material Setup By Sarah Taylor http://sarahtaylor3d.weebly.com In UDK materials are comprised of nodes, some of which you may be familiar with, such as Diffuse, normal, specular

More information

IMPORTING A STUDENT LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST

IMPORTING A STUDENT  LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST IMPORTING A STUDENT EMAIL LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST In Synergy create a report for each class. 1. Log in to Synergy. 2. Open the list of available reports; select the Reports icon from

More information

Double Click in in this space to open the the Calculator/Formula

Double Click in in this space to open the the Calculator/Formula TASK #2 Math II - FATHOM 10 coin Flips (How many coins would you predict land on heads?) Open a new Fathom Workspace. Drag a collection,, from the shelf into the workspace. Open the collection by positioning

More information

Huddle ipad App Guide Using the ipad app as an alternative to the Huddle web application

Huddle ipad App Guide Using the ipad app as an alternative to the Huddle web application Huddle ipad App Guide Using the ipad app as an alternative to the Huddle web application This guide provides information on the functionality that is available on the Huddle ipad app and how to use it.

More information

TUTORIAL. Ve r s i on 1. 0

TUTORIAL. Ve r s i on 1. 0 TUTORIAL Ve r s i on 1. 0 C O N T E N T S CHAPTER 1 1 Introduction 3 ABOUT THIS GUIDE... 4 THIS TUTORIAL...5 PROJECT OUTLINE...5 WHAT'S COVERED...5 SOURCE FILES...6 CHAPTER 2 2 The Tutorial 7 THE ENVIRONMENT...

More information

1. Open Outlook by clicking on the Outlook icon. 2. Select Next in the following two boxes. 3. Type your name, , and password in the appropriate

1. Open Outlook by clicking on the Outlook icon. 2. Select Next in the following two boxes. 3. Type your name,  , and password in the appropriate 1 4 9 11 12 1 1. Open Outlook by clicking on the Outlook icon. 2. Select Next in the following two boxes. 3. Type your name, email, and password in the appropriate blanks and click next. 4. Choose Allow

More information

To start Kidspiration on a Macintosh: Open the Kidspiration 3 folder and double-click the Kidspiration icon.

To start Kidspiration on a Macintosh: Open the Kidspiration 3 folder and double-click the Kidspiration icon. Tutorial Six: Using steps to show progression of work The Step Workspace allows students to show and explain each step as they progress through a math project. Because their work is preserved and duplicated

More information

Let s begin by naming the first folder you create Pictures.

Let s begin by naming the first folder you create Pictures. 1 Creating a Folder on Your Desktop Saving A Picture to Your Folder Creating Desktop Wallpaper from Pictures on the Internet Changing Your Home Page Creating a Shortcut to a Web Page on Your Desktop One

More information

Microsoft Windows 10. Quick Reference. Watsonia Publishing 47 Greenaway Street Bulleen VIC 3105 Australia

Microsoft Windows 10. Quick Reference. Watsonia Publishing 47 Greenaway Street Bulleen VIC 3105 Australia Watsonia Publishing 47 Greenaway Street Bulleen VIC 3105 Australia www.watsoniapublishing.com info@watsoniapublishing.com Quick Reference Course Code: INF1440 Table of Contents Chapter 1: Starting With

More information

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES Eric Peasley, Department of Engineering Science, University of Oxford version 4.6, 2018 MATLAB Application Exercises In these exercises you will

More information

Huddle ipad App Guide Using the ipad app as an alternative to the Huddle web application

Huddle ipad App Guide Using the ipad app as an alternative to the Huddle web application Huddle ipad App Guide Using the ipad app as an alternative to the Huddle web application This guide provides information on the functionality that is available on the Huddle ipad app and how to use it.

More information

Contents. How to use Magic Ink... p Creating Magic Revealers (with Magic Ink)... p Basic Containers... p. 7-11

Contents. How to use Magic Ink... p Creating Magic Revealers (with Magic Ink)... p Basic Containers... p. 7-11 Rachel Heroth 2014 Contents Magic Ink: How to use Magic Ink... p. 1-2 Creating Magic Revealers (with Magic Ink)... p. 3-6 Containers: Basic Containers... p. 7-11 Troubleshooting Containers...... p. 12

More information

In the first class, you'll learn how to create a simple single-view app, following a 3-step process:

In the first class, you'll learn how to create a simple single-view app, following a 3-step process: Class 1 In the first class, you'll learn how to create a simple single-view app, following a 3-step process: 1. Design the app's user interface (UI) in Xcode's storyboard. 2. Open the assistant editor,

More information

Tutorial for loading music files into an Ipad

Tutorial for loading music files into an Ipad Tutorial for loading music files into an Ipad 1. For this example we ll use Adobe Acrobat Reader as the application (app) that we ll use to file and store our music on our Ipad. There are other music applications

More information

ICS 61 Game Systems and Design Introduction to Scratch

ICS 61 Game Systems and Design Introduction to Scratch ICS 61, Winter, 2015 Introduction to Scratch p. 1 ICS 61 Game Systems and Design Introduction to Scratch 1. Make sure your computer has a browser open at the address http://scratch.mit.edu/projects/editor/.

More information

AsteraApp with AsteraBox

AsteraApp with AsteraBox AsteraApp with AsteraBox Quick Start Guide Welcome to the AsteraApp. This Quick Start Guide tells you how to set up the AsteraApp with your AsteraBox and how to start controlling Astera lights. Download

More information

S3 Scratch Programming

S3 Scratch Programming LOREM ST LOUIS IPSUM DOLOR ST LOUIS SCHOOL S3 Computer Literacy S3 Scratch Programming Dominic Kwok CHAPTER 1 Scratch After studying this chapter, you will be able to create a simple Scratch program upload

More information

Tableau Tutorial Using Canadian Arms Sales Data

Tableau Tutorial Using Canadian Arms Sales Data Tableau Tutorial Using Canadian Arms Sales Data 1) Your data comes from Industry Canada s Trade site. 2) If you don t want to download the data yourself, use this file. You can also download it from the

More information

Electrical Starter Pack User Guide

Electrical Starter Pack User Guide Electrical Starter Pack User Guide UPDATED ON 11/21/2018 PlanSwift Authored by: Dave Hansen 1 Table of Contents Overview... 3 Purchasing and Installation... 4 Purchasing Plugins... 4 Installation and Uninstallation...

More information

Step 1 Turn on the device and log in with the password, PIN, or other passcode, if necessary.

Step 1 Turn on the device and log in with the password, PIN, or other passcode, if necessary. Working with Android Introduction In this lab, you will place apps and widgets on the home screen and move them between different home screens. You will also create folders to which apps will be added

More information

1 Overview Sequencer PS2 Control...26 C O N T E N T S INTRODUCTION...5 USER INTERFACE...6 CONNECTING...7 SIMULATOR...

1 Overview Sequencer PS2 Control...26 C O N T E N T S INTRODUCTION...5 USER INTERFACE...6 CONNECTING...7 SIMULATOR... AL5 ARM GUIDE C O N T E N T S CHAPTER 1 1 Overview...4 INTRODUCTION...5 USER INTERFACE...6 CONNECTING...7 CONNECTING VIA USB (FOR SSC-32U, RB-LYN-850)...7 CONNECTING VIA SERIAL CABLE (FOR DISCONTINUED

More information

Plotting Points. By Francine Wolfe Professor Susan Rodger Duke University June 2010

Plotting Points. By Francine Wolfe Professor Susan Rodger Duke University June 2010 Plotting Points By Francine Wolfe Professor Susan Rodger Duke University June 2010 Description This tutorial will show you how to create a game where the player has to plot points on a graph. The method

More information

File Management Tutorial

File Management Tutorial Just a reminder... Files: any individual item on your computer that contains data. E.g. document, photo, spreadsheet, email, PowerPoint, etc. File Management Tutorial Folders: containers for your files

More information

Scene 2, Flash. STEP THREE: Same with the mouths, if you have it touching the ears or something, move it so there is clearance.

Scene 2, Flash. STEP THREE: Same with the mouths, if you have it touching the ears or something, move it so there is clearance. 1 Scene 2, Flash Export art from Illustrator to Flash. Animate scene 2 in Flash, frames 1 through 24 Spend a little time studying the wolf.fla file. Scrub the timeline on scene 2 and think about which

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

Updating DAPLink Firmware and Using REPL with Tera Term

Updating DAPLink Firmware and Using REPL with Tera Term APPENDIX A Updating DAPLink Firmware and Using REPL with Tera Term This appendix explains how to update the DAPLink firmware on the micro:bit by using maintenance mode. It also shows you how to use REPL

More information

The Official E-Portfolio Tutorial Guide

The Official E-Portfolio Tutorial Guide School of Education Last Updated: January 2009 The Official E-Portfolio Tutorial Guide Includes Instructions For: -Setting Up Dreamweaver -Editing Images Using Photoshop -Creating & Inserting Evidence

More information

Stick 2 (STICK-GU2) Sunlite Touch-Sensitive Intelligent Control Keypad Getting Started Guide

Stick 2 (STICK-GU2) Sunlite Touch-Sensitive Intelligent Control Keypad Getting Started Guide 11235 West Bernardo Court, Suite 102 San Diego, CA 92127 888-880-1880 Fax: 707-281-0567 EnvironmentalLights.com Kit STICK-GU2 Stick 2 (STICK-GU2) Sunlite Touch-Sensitive Intelligent Control Keypad Getting

More information

Get comfortable using computers

Get comfortable using computers Mouse A computer mouse lets us click buttons, pick options, highlight sections, access files and folders, move around your computer, and more. Think of it as your digital hand for operating a computer.

More information

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 1. Open Microsoft Word 2007. Word will start up as a blank document. 2. Change the margins by clicking the Page Layout tab and clicking

More information

4. The editing tool bar will appear across the top of the map.

4. The editing tool bar will appear across the top of the map. Click on the tab. There will be a list of your member dispatch codes on the left. Click on the to the right of the dispatch code that you want to view to zoom to your service area. You can then use the

More information

Key Stage 3. Introduction to the. BBC micro:bit

Key Stage 3. Introduction to the. BBC micro:bit Key Stage 3 Introduction to the BBC micro:bit KS3 Introduction In 2016, every Year 8 pupil in the UK received a free micro:bit. The BBC micro:bit is a small, programmable computer. This project aims to

More information

You are going to learn how to make a timer, so that you can use it to challenge your friends!

You are going to learn how to make a timer, so that you can use it to challenge your friends! Against the Clock Introduction You are going to learn how to make a timer, so that you can use it to challenge your friends! Instructions: If you re reading this online, press A+B on the micro:bit below

More information

Lesson 18 Automatic door

Lesson 18 Automatic door Lesson 18 Automatic door 1 What you will need CloudProfessor (CPF) PIR (Motion) sensor Servo Arduino Leonardo Arduino Shield USB cable Overview In this lesson, students explore automated systems such as

More information

IntelliTools Classroom Suite on Tech-Mod Computers

IntelliTools Classroom Suite on Tech-Mod Computers IntelliTools Classroom Suite on Tech-Mod Computers For MCPS Teachers and Staff How-to Guide C. Hunter, InterACT Special Education Teacher, September 2007 About IntelliTools Classroom Suite Classroom Suite

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information

C - Colour Mixing. Let's use the Sparkle module and some switches to make a colour mixer! 2018 courses.techcamp.org.

C - Colour Mixing. Let's use the Sparkle module and some switches to make a colour mixer! 2018 courses.techcamp.org. C - Colour Mixing Let's use the Sparkle module and some switches to make a colour mixer! 2018 courses.techcamp.org.uk/ Page 1 of 7 INTRODUCTION Let's use the Sparkle module and some switches to make a

More information

Emote 1.0 Users Manual

Emote 1.0 Users Manual Emote 1.0 Users Manual Part No: 141318 Rev A 2018 Eventide Inc., One Alsan Way, Little Ferry, NJ, 07643 USA 1 Table of Contents Introduction... 3 Downloading the Installer... 3 Making Sure Your H9000 Hardware

More information

Creating Dynamic Chyron Templates. (a guide)

Creating Dynamic Chyron Templates. (a guide) Creating Dynamic Chyron Templates (a guide) Contents Standard Lower Third Design.......................... 2 Populating a Lower Third... 6 Creating a Dynamic Box. 8 Populating a Graphic. 12 Adding Assets

More information

Tips & Tricks on Ipad

Tips & Tricks on Ipad Tips & Tricks on Ipad PAGE 1 Page 1 Copying & Pasting Page 2 Splitting the Keyboard Page 3 Capitalizing & Zooming Page 4 App Searching Page 5 Organizing Apps Page 6 Screen Shot & Finger Functions 1.) How

More information

Train the Trainer Resources Hex Files Here - https://goo.gl/mqovrv

Train the Trainer Resources Hex Files Here - https://goo.gl/mqovrv In this topic you will explore the range of methods of input that the micro:bit has, and the commands used to code these inputs. Topic 3 Need Input and Output Write a list of inputs that a micro:bit has.

More information

DMX-RGBW-128C. Overview

DMX-RGBW-128C. Overview Page 1 of 10 RGW128C Overview Mode Current scene (1 8) Next scene On / Off Previous scene SPECIFICATIONS OS REQUIREMENTS SOFTWARE OUTPUT PROTOCOL CHANNELS 128 APPEARANCE CONNECTIONS INPUT POWER CERTIFICATIONS

More information

MyNIC Team Site - Document Sharing

MyNIC Team Site - Document Sharing Table of Contents Create a Document...2 Upload a Document...3 Rename Document...4 Edit a Document...6 Check-out a Document...6 Edit a Document...7 Check-in a Document...9 Check-in Someone Else s Document...

More information

In order to update you will have to uninstall the current version and install the newer version using the same procedure.

In order to update you will have to uninstall the current version and install the newer version using the same procedure. Installing the 3M Cloud Library app on your Kindle Fire DISCLAIMER These instructions are to be used as a reference only. Please note that by downloading the 3M Cloud Library app you assume all risk of

More information

ENGR 1000, Introduction to Engineering Design

ENGR 1000, Introduction to Engineering Design ENGR 1000, Introduction to Engineering Design Unit 2: Data Acquisition and Control Technology Lesson 2.2: Programming Line Inputs with Boolean Values Hardware: 12 VDC power supply Several lengths of wire

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

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

Awesome Airliners. Objectives:

Awesome Airliners. Objectives: Awesome Airliners Objectives: Use the SMART Notebook software to create a lesson Import graphics and gallery objects Link documents and websites Name, Reorder and Clone pages Save and Export a Notebook

More information

SenCom Jan. 11, 2013 Demonstration on Windows 7 Desktop, Windows Explorer & File Mgmt., and using Thumb/Flash Drives These topics by Mike Smith

SenCom Jan. 11, 2013 Demonstration on Windows 7 Desktop, Windows Explorer & File Mgmt., and using Thumb/Flash Drives These topics by Mike Smith SenCom Jan. 11, 2013 Demonstration on Windows 7 Desktop, Windows Explorer & File Mgmt., and using Thumb/Flash Drives These topics by Mike Smith Note: SenCom s 3 hour workshops, Files and Folders and Beginners

More information

Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA

Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA AB110-3 If you have created AutoCAD Architecture (formerly ADT) object styles and want to know how to easily share

More information

Robotics II. Module 4: Bluetooth Communication

Robotics II. Module 4: Bluetooth Communication Robotics II PREPARED BY Academic Services Unit December 2011 Applied Technology High Schools, 2011 Module Objectives Upon successful completion of this module, students should be able to: Set up a Bluetooth

More information

Setting up A Basic Scene in Unity

Setting up A Basic Scene in Unity Setting up A Basic Scene in Unity So begins the first of this series of tutorials aimed at helping you gain the basic understanding of skills needed in Unity to develop a 3D game. As this is a programming

More information

The WoBLR, World's Best Level for RVs RVIQ WoBLR App: Instructions

The WoBLR, World's Best Level for RVs RVIQ WoBLR App: Instructions The WoBLR, World's Best Level for RVs RVIQ WoBLR App: Instructions Thank you for choosing the WoBLR Remote RV Level from RV Intelligence. The RVIQ WoBLR App is designed to operate from both Android and

More information

Atlantic Capital Exchange ACE Secure Browser MAC Quick Start Guide

Atlantic Capital Exchange ACE Secure Browser MAC Quick Start Guide Atlantic Capital Exchange ACE Secure Browser MAC Quick Start Guide ACE Secure Browser is a user friendly, secure application that protects your company while accessing bank information and services. Early

More information

12.0 Setting up the PC ready for BESA 11

12.0 Setting up the PC ready for BESA 11 12.0 Setting up the PC ready for BESA 11 12.1 - Installing Driver. Important Note: Before you start to install the driver, please do not plug BESA 11 into the computer s USB port or else the installation

More information

CICT UniMAP USER MANUAL JOOMLA 2.5

CICT UniMAP USER MANUAL JOOMLA 2.5 CICT UniMAP USER MANUAL JOOMLA 2.5 User Manual For Beginner : How To Use Joomla 2.5 1.0 How to Access Joomla Login Screen a) First, in order to build your web site you will have to log into the administrator

More information

Full Search Map Tab. This map is the result of selecting the Map tab within Full Search.

Full Search Map Tab. This map is the result of selecting the Map tab within Full Search. Full Search Map Tab This map is the result of selecting the Map tab within Full Search. This map can be used when defining your parameters starting from a Full Search. Once you have entered your desired

More information

What Is a Program? Pre-Quiz

What Is a Program? Pre-Quiz What Is a Program? What Is a Program? Pre-Quiz 1. What is a program? 2. What is an algorithm? Give an example. 2 What Is a Program? Pre-Quiz Answers 1. What is a program? A program is a sequence of instructions

More information

Lab - Working with ios

Lab - Working with ios Lab - Working with ios Introduction In this lab, you will place apps on the home screen and move them between different home screens. You will also create folders. Finally, you will install on the ios

More information

Templates & Segments. Adobe Analytics - Basic Training

Templates & Segments. Adobe Analytics - Basic Training Templates & Segments Adobe Analytics - Basic Training Adobe Analytics: Basic Training 301: Navigating 304: Templates & Segments 303: Intro to Workspace 300: Onboarding 302: Intro to Reports 305: Activity

More information

Easy Stand Alone (U8) Getting Started Guide

Easy Stand Alone (U8) Getting Started Guide 11235 West Bernardo Court, Suite 102 San Diego, CA 92127 888-880-1880 Fax: 707-281-0567 EnvironmentalLights.com Kit Front Back (U8) Getting Started Guide Install " 2" software with the controller. Do not

More information

Contents. Emma User Guide

Contents. Emma User Guide Emma User Guide Emma User Guide i Contents Getting Started with Emma... 2 Prerequisites... 2 Installation... 4 Installing Emma... 4 Uninstalling Emma... 4 Start and registration... 4 Starting Emma... 4

More information

Introduction to Moodle: Creating & Sharing Content

Introduction to Moodle: Creating & Sharing Content Introduction to Moodle: Creating & Sharing Content Aim This guide will help to get you started and develop your understanding of how to add, edit and create courses using Moodle. This guide is for Moodle

More information

Getting Started Manual. SmartList To Go

Getting Started Manual. SmartList To Go Getting Started Manual SmartList To Go Table of contents Installing SmartList To Go 3 Launching SmartList To Go on the handheld 4 SmartList To Go toolbar 4 Creating a SmartList 5 The Field Editor Screen

More information

NetComm NTC-40W Asset Gateway Step-by-Step Guide

NetComm NTC-40W Asset Gateway Step-by-Step Guide NetComm NTC-40W Asset Gateway Step-by-Step Guide This is Step-by-Step guide that will walk you through installing and setting up a NetComm NTC-40W Asset Gateway with devicewise Asset Gateway software.

More information

To check for updates and new device support please see

To check for updates and new device support please see S2Bot App QuickStart Introduction S2Bot is available in two variants App or Native Executable. To check for updates and new device support please see http://www.picaxe.com/s2bot Robots currently supported

More information

Microsoft Office 365 includes the entire Office Suite (Word, Excel, PowerPoint, Access, Publisher, Lync, Outlook, etc ) and an OneDrive account.

Microsoft Office 365 includes the entire Office Suite (Word, Excel, PowerPoint, Access, Publisher, Lync, Outlook, etc ) and an OneDrive account. Microsoft Office 365 Contents What is Office 365?... 2 What is OneDrive?... 2 What if you already have a Microsoft Account?... 2 Download Office for FREE... 3 How to Access OneDrive... 4 Office Online...

More information

Introduction to Personal Computers Using Windows 10 and Microsoft Office 2016

Introduction to Personal Computers Using Windows 10 and Microsoft Office 2016 Watsonia Publishing 47 Greenaway Street Bulleen VIC 3105 Australia www.watsoniapublishing.com info@watsoniapublishing.com Introduction to Personal Computers Using Windows 10 and Microsoft Office 2016 Quick

More information

Option CloudGate Asset Gateway Step-by-Step Guide

Option CloudGate Asset Gateway Step-by-Step Guide Option CloudGate Asset Gateway Step-by-Step Guide This is Step-by-Step guide that will walk you through installing and setting up an Option CloudGate Asset Gateway with devicewise Asset Gateway software.

More information

Getting started with New Proquest RefWorks

Getting started with New Proquest RefWorks Skills@cumbria Getting started with New Proquest RefWorks Create a Refworks account Page 2 Import your sources Page 3 Save to Refworks Page 4 Citation view Page 4 Edit your references Page 5 Add links

More information

SLESA-UE7 Quick Start Guide

SLESA-UE7 Quick Start Guide SLESA-UE7 Quick Start Guide 11235 West Bernardo Court, Suite 102 San Diego, CA 92127 888-880-1880 Fax: 707-281-0567 EnvironmentalLights.com You will need to install Easy Stand Alone Pro (ESA Pro) or Easy

More information

Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive. English

Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive. English Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive English ABOUT Use this guide to write papers, create spreadsheets, give presentations, manage your time, and save your files

More information