Perform in the spotlight

Size: px
Start display at page:

Download "Perform in the spotlight"

Transcription

1 Student sheet 1 Perform in the spotlight Let s get the Edison robot to play music or dance when it detects light, just like a performer in the spotlight! To do this, there are a few things we need to learn: What is a robot? How does the Edison robot work? How do you make a program for Edison using the EdBlocks coding language? How do you download a program from EdBlocks to Edison? What do Edison s light sensors do? What is an infinite loop? How can you use the sensors to make the robot react? What is a robot? A robot is a machine that can be made to do a task on its own. There are many types of robots. Different robots can do different things. What do you think of when you imagine a robot? This is Edison. Edison is a programmable robot, which means that Edison can be programmed. Programmed means that we can tell Edison what to do. We can program Edison different ways. One way to program Edison is by using a programming device, like a computer, with a programming language called EdBlocks.

2 Student sheet 2 How does the Edison robot work? Edison has different parts that let the robot do different things. The motors and wheels let the robot move. The speaker makes noise. And the sensors let the robot react to different things. In the pictures below, you can see all of Edison s different parts. Can you find all of these parts on your Edison robot? Record button Stop button Play button This is the top of Edison. Speaker/sound sensor Left red LED Left infrared LED Left light sensor Right light sensor Right infrared LED Right red LED This is the bottom of Edison. Power switch Line tracking sensor EdComm cable EdComm cable connection holes

3 Student sheet 3 How do you make a program for Edison using the EdBlocks coding language? EdBlocks is a robot programming language we can use to program Edison to do different things. You can attach different blocks in EdBlocks together to make a program for Edison. Block 1 Block 2 Block 3 Block 4 Block 5 An EdBlocks program tells Edison what to do, step-by-step. This is called sequence. Imagine you are baking a cake. How would you know what to do? When you read a cookbook, you follow each step one-by-one. Edison also uses sequence and follows steps one-by-one. The EdBlocks program gives Edison each step to do and the order to do each one. Edison reads EdBlocks from left to right, starting at block one. Edison then moves along the EdBlocks program, one block at a time. Just like a person, Edison can also follow instructions in order, but the robot needs the instructions in blocks of code, not words.

4 Student sheet 4 How do you download a program from EdBlocks to Edison? You can make different programs for Edison in EdBlocks which tell Edison what to do. Once you write a program for Edison, you need to download it from your computer to your Edison robot. On your computer, go online to: First, let s load a program that has already been made and download it to Edison. Step 1: Check the computer Make sure the volume is turned up all the way on the computer. Step 2: Open the EdBlocks app This is the app at Step 3: Select Menu After opening the app, look in the top left corner. Click on the Menu button. Menu Step 4: Select Load Demos Scroll down and find Load Demos in the list. Click on Load Demos. Load Demos Step 5: Select Follow torch/flashlight Find and click on the program called Follow torch/flashlight. A program will open in the main screen. It looks like this:

5 Student sheet 5 Step 6: Plug Edison in Connect Edison to the computer with the EdComm cable. Step 7: Get Edison ready Push the record button (round button) on Edison one time. Step 8: Program Edison Look in the top right corner of the app. See where it says Program Edison? Click on Program Edison. Program Edison A new pop-up message box will open. Program Edison Program Edison Edison cannot understand the blocks in EdBlocks the way they look on your computer screen. The blocks need to be changed into a format that Edison can understand before the program can be downloaded. This can take a bit of time. Once the program is ready, the bottom of the pop-up box will have a button that says Program Edison. Click on this button. You will hear the program being downloaded to Edison. Once it is done downloading, Edison will beep. Don t unplug Edison until you hear the beep! Once you hear the beep, unplug Edison. Grab a torch (called a flashlight in American English) and get ready to run the program in Edison.

6 Student sheet 6 Put Edison on the floor or table. Get your light ready. Press the play button (triangle button) one time. Now shine the light at Edison. Edison will follow the brightest light it detects around. Stop Edison by pushing the stop button (square button). What do Edison s light sensors do? Edison has two light sensors, one on the left and one on the right side of the robot. These light sensors let Edison detect and measure visible light. (Visible light is the portion of the light spectrum that people can see.) When the sensors detect light, they measure that light to see how bright it is. The measurement gets a number value. That value is then stored as a light reading in the robot s memory. The more light that is detected, the higher the light reading. Look at the demo program called Follow torch/flashlight again. When you ran this program in Edison, you saw that this program makes Edison follow the brightest light it can detect. If the brightest light is on the left, the robot moves left. But if the brightest light is on the right, the robot moves right instead. Edison will keep moving, following the brightest light forever. This is because the program uses an infinite loop.

7 Student sheet 7 What is an infinite loop? A loop is a special type of code. Loops make any code blocks inside the loop repeat. How many times will the code blocks repeat? That depends on the loop! Some loops tell code to repeat a certain number of times. Other loops tell the code to repeat until a specific event happens. The type of loop in the Follow torch/flashlight program is called an infinite loop. This loop makes the code blocks repeat forever! Try making your own program for Edison using the infinite loop block and four other blocks in the EdBlocks app. (Hint: try using blue drive blocks!) Download the program to Edison and run it in the robot. Write down your program here. What does your loop program do? What happened when you ran the program in Edison? Describe what happened. Don t forget to stop Edison by pushing the stop button (square button) one time!

8 Student sheet 8 How can you use the sensors to make the robot react? You can write programs for Edison that tell the robot to wait, then react, once the sensors detect something. Let s make a program that gets Edison to play music or dance when a light is detected, like a performer in a spotlight! Get performance-ready For this program, we only want Edison to detect light from one side. You need to cover the opposite side of Edison with dark tape or cardboard. This will help the robot measure the light on one side better. Using something like cardboard or tape, block out one of Edison s light sensors on one side of Edison. Be careful not to cover the buttons, the speaker or the wheels! We want the robot to perform whenever it detects light. We don t want the robot to start too early, however. That s why the first block in your program should be a block that tells the robot to wait a few seconds. You can use that time to sneak Edison into the shadows, waiting for the right time to shine! You will need somewhere dark for Edison to sit while waiting, like a desk drawer. Where is another dark place you can put Edison? Maybe you can try a backpack or a lunch box? Choose some places to try out when you are ready to run your program. But first, you need to write your program!

9 Student sheet 9 Write a program Using the EdBlocks app, arrange blocks into a program like the program below. Your program first needs to tell Edison to wait for five seconds. (You will use this time to move Edison somewhere dark.) Then, it should use an infinite loop. The first block inside the loop should tell Edison to wait until it detects light. The rest of the program is up to you! What should Edison do when it detects the light? What music should Edison play? Should it move? Add some blocks to get Edison to play a tune, move or do both! Make sure all of your music and drive blocks are after the wait for light block and all are inside the loop. Which side should Edison use to detect the light? You can choose! If Edison is looking for light on the left side, the right side of your Edison robot needs to be covered. If Edison is looking for light on the right side, the left side of your Edison robot needs to be covered. When you are ready, downloaded your program to Edison. Press the play (triangle) button one time, then put Edison in the drawer or another dark spot. When you open the drawer, Edison will detect the light and perform!

10 Student sheet 10 Optional: costume time! Let s dress up Edison for the robot s performance in the spotlight! What do you want to dress up Edison to look like? Use craft supplies and make your own character costume for Edison. Remember that your costume needs to cover one side of Edison, but leave the buttons, speaker and wheels uncovered. What did you make? What did your program look like? What was your costume? Write about your program and your costume, then draw your costume on the outline of Edison.

Meet Edison. This is Edison, the programmable robot. What is a robot? A robot is a machine that can be made to do a task on its own.

Meet Edison. This is Edison, the programmable robot. What is a robot? A robot is a machine that can be made to do a task on its own. Edison and EdBlocks Activity 1 Programmer s Name Meet Edison This is Edison, the programmable robot. What is a robot? A robot is a machine that can be made to do a task on its own. There are many types

More information

Your EdVenture into Robotics You re a Controller

Your EdVenture into Robotics You re a Controller Your EdVenture into Robotics You re a Controller Barcode - Clap controlled driving meetedison.com Contents Introduction... 3 Getting started... 4 EdVenture 1 Clap controlled driving... 6 EdVenture 2 Avoid

More information

Your EdVenture into Robotics You re a Programmer

Your EdVenture into Robotics You re a Programmer Your EdVenture into Robotics You re a Programmer meetedison.com Contents Introduction... 3 Getting started... 4 Meet EdWare... 8 EdWare icons... 9 EdVenture 1- Flash a LED... 10 EdVenture 2 Beep!! Beep!!...

More information

Lego Robotics Module Guide

Lego Robotics Module Guide Lego Robotics Module Guide The RCX is a programmable, microcontroller-based brick that can simultaneously operate motors, sensors, an infrared serial communications interface, a display and speaker. Get

More information

CHEMISTRY SEMESTER ONE

CHEMISTRY SEMESTER ONE APPENDIX A USING THE SPECTROMETER FOR AN EMISSION SPECTROSCOPY NANSLO REMOTE WEB-BASED SCIENCE LAB ACTIVITY The following provides information how to use the spectrometer controls for the Emission Spectroscopy

More information

Finding Multiples and Prime Numbers 1

Finding Multiples and Prime Numbers 1 1 Finding multiples to 100: Print and hand out the hundred boards worksheets attached to students. Have the students cross out multiples on their worksheet as you highlight them on-screen on the Scrolling

More information

(Skip to step 11 if you are already familiar with connecting to the Tribot)

(Skip to step 11 if you are already familiar with connecting to the Tribot) LEGO MINDSTORMS NXT Lab 5 Remember back in Lab 2 when the Tribot was commanded to drive in a specific pattern that had the shape of a bow tie? Specific commands were passed to the motors to command how

More information

The Playful Invention Company. PicoCricket Troubleshooting. Version 1.2a

The Playful Invention Company. PicoCricket Troubleshooting. Version 1.2a The Playful Invention Company PicoCricket Troubleshooting Version 1.2a PicoCricket Troubleshooting For the latest troubleshooting hints, see www.picocricket.com/troubleshooting Can t find the Beamer Solutions

More information

Binary s UFO Inventors Manual

Binary s UFO Inventors Manual Binary s UFO Inventors Manual - Parents please read the instructions carefully with your children prior to first use. - Please keep this instruction manual as it contains important safety information -

More information

technology T05.2 teach with space MEET THE SENSE HAT Displaying text and images on the Sense HAT LED matrix

technology T05.2 teach with space MEET THE SENSE HAT Displaying text and images on the Sense HAT LED matrix technology T05.2 teach with space MEET THE SENSE HAT Displaying text and images on the Sense HAT LED matrix Activity 1 Assemble the Sense HAT page 4 Activity 2 Hello, this is Earth! page 5 Activity 3 How

More information

C - Smoother Line Following

C - Smoother Line Following C - Smoother Line Following Learn about analogue inputs to make an even more sophisticated line following robot, that will smoothly follow any path. 2017 courses.techcamp.org.uk/ Page 1 of 6 INTRODUCTION

More information

Activity P32: Variation of Light Intensity (Light Sensor)

Activity P32: Variation of Light Intensity (Light Sensor) Activity P32: Variation of Light Intensity (Light Sensor) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) Illuminance P32 Vary Light.DS P54 Light Bulb Intensity P54_BULB.SWS Equipment Needed

More information

LEGO MINDSTORMS PROGRAMMING CAMP. Robotics Programming 101 Camp Curriculum

LEGO MINDSTORMS PROGRAMMING CAMP. Robotics Programming 101 Camp Curriculum LEGO MINDSTORMS PROGRAMMING CAMP Robotics Programming 101 Camp Curriculum 2 Instructor Notes Every day of camp, we started with a short video showing FLL robots, real robots or something relevant to the

More information

Activity P27: Speed of Sound in Air (Sound Sensor)

Activity P27: Speed of Sound in Air (Sound Sensor) Activity P27: Speed of Sound in Air (Sound Sensor) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) Speed of sound P27 Speed of Sound 1.DS (See end of activity) (See end of activity) Equipment

More information

Writing Programs INTRODUCING THE BASIC STAMP EDITOR 2 SCRIBBLER HARDWARE PROGRAMMING CONNECTIONS 8 BLINKING THE LIGHTS WITH PROGRAM LOOPS 9

Writing Programs INTRODUCING THE BASIC STAMP EDITOR 2 SCRIBBLER HARDWARE PROGRAMMING CONNECTIONS 8 BLINKING THE LIGHTS WITH PROGRAM LOOPS 9 Writing Programs 1 Writing Programs Inside the Scribbler Robot is a small computer called a BASIC Stamp microcontroller. It performs a list of instructions that make the Scribbler operate. With the BASIC

More information

R.E.A.D.S. INSTRUCTIONS FOR KINDLE ereaders

R.E.A.D.S. INSTRUCTIONS FOR KINDLE ereaders If you have a Kindle Fire, you will need to download the Overdrive Media Console App to your device. Overdrive App instructions are available at the Williamson County Public Library Reference Desk or on

More information

USING MEDIACAST FOR LIVE EVENTS THERE ARE THREE SEPARATE KEYS NEEDED TO ACCESS THE FRONT AND BACK OF THE VIDEO CART.

USING MEDIACAST FOR LIVE EVENTS THERE ARE THREE SEPARATE KEYS NEEDED TO ACCESS THE FRONT AND BACK OF THE VIDEO CART. USING MEDIACAST FOR LIVE EVENTS THERE ARE THREE SEPARATE KEYS NEEDED TO ACCESS THE FRONT AND BACK OF THE VIDEO CART. 1). Plug in the cart to a power source and a network plug-in drop that is in the sam

More information

JAMAR TRAX RD Detector Package Power Requirements Installation Setting Up The Unit

JAMAR TRAX RD Detector Package Power Requirements Installation Setting Up The Unit JAMAR TRAX RD The TRAX RD is an automatic traffic recorder designed and built by JAMAR Technologies, Inc. Since the unit is a Raw Data unit, it records a time stamp of every sensor hit that occurs during

More information

First, connect the LED and the resistor, by twisting the wires together.

First, connect the LED and the resistor, by twisting the wires together. Optics Activities LED Circuit: Making Light with Electronics Components: LED (Light Emitting Diode) Resistor Wires Battery We will now make a solid state light Such a light could be used to send flashing

More information

Introduction 1. Green status LED, controlled by output signal ST. Sounder, controlled by output signal Q6. Push switch on input D6

Introduction 1. Green status LED, controlled by output signal ST. Sounder, controlled by output signal Q6. Push switch on input D6 Introduction 1 Welcome to the GENIE microcontroller system! The activity kit allows you to experiment with a wide variety of inputs and outputs... so why not try reading sensors, controlling lights or

More information

CM-T10-PRO and PRO-E. Wireless Control for ColorMaker Series LED Fixtures with ColorRoll Technology User s Manual

CM-T10-PRO and PRO-E. Wireless Control for ColorMaker Series LED Fixtures with ColorRoll Technology User s Manual CM-T10-PRO and PRO-E Wireless Control for ColorMaker Series LED Fixtures with ColorRoll Technology User s Manual Introduction CM-T10-PRO and CM-T10-PRO-E (Enhanced) This manual covers both the CM-T10-PRO

More information

Contacts: English Department Office 238 Moreland Media Services 109 Kidder

Contacts: English Department Office 238 Moreland Media Services 109 Kidder Contacts: English Department Office 238 Moreland 7-3244 Media Services 109 Kidder September 2006 Welcome...3 Starting Out...5 Unlocking the Station...5 Touch Panel Operation...5 Projector...6 Selecting

More information

Using Technology to Promote Pleasure Reading Cynthia Norberg, Librarian and Linda Petty, Tech Specialist Jack London Middle School, Wheeling IL

Using Technology to Promote Pleasure Reading Cynthia Norberg, Librarian and Linda Petty, Tech Specialist Jack London Middle School, Wheeling IL Using Technology to Promote Pleasure Reading Cynthia Norberg, Librarian and Linda Petty, Tech Specialist Jack London Middle School, Wheeling IL Creating Screen Savers on a Mac 1. Select books to highlight.

More information

Ultra 4K Tool Box. Version Release Note

Ultra 4K Tool Box. Version Release Note Ultra 4K Tool Box Version 2.1.43.0 Release Note This document summarises the enhancements introduced in Version 2.1 of the software for the Omnitek Ultra 4K Tool Box and related products. It also details

More information

C-net WIND. User s Guide

C-net WIND. User s Guide C-net WIND User s Guide EMC Directive 89/336/EEC This product has been designed to be compliant with the above EMC Directive. Maximum performance and compliance with the EMC Directive can only be ensured

More information

LS 6.0R SERVICE MANUAL

LS 6.0R SERVICE MANUAL LS 6.0R SERVICE MANUAL 1 TABLE OF CONTENTS CHAPTER 1: SERIAL NUMBER LOCATION CHAPTER 2: CONSOLE OVERLAY AND WORKOUT DESCRIPTION 2.1 Console Description 2.2 Display Windows Description 2.3 Getting Started

More information

SATELLITE CAN/BOTTLE VENDOR

SATELLITE CAN/BOTTLE VENDOR SATELLITE CAN/BOTTLE VENDOR BV-IV USD MODEL 3131 SERVICE MANUAL ADDENDUM January 1998 P/N 4209404 The BV IV Satellite Vendor (Model 3131) can be connected to a host that will run a Universal Satellite

More information

Troubleshooting Guide for E-Poll Book

Troubleshooting Guide for E-Poll Book Troubleshooting Guide for E-Poll Book CHANGING USERS ON THE E-POLL BOOK Changing Users on the E-poll Book 1. Tap Return to Main button on the voter search screen. 2. Tap on the Manage Polls tab in the

More information

Subject : Using the TV meter for a terrestrial installation NASE786X-04-03

Subject : Using the TV meter for a terrestrial installation NASE786X-04-03 Subject : Using the TV meter for a terrestrial installation NASE786X-04-03 SEFRAM 7861 7862 7861HD 7862HD field strength meters enable the configuration of a terrestrial or satellite TV reception system.

More information

Wall Ball Setup / Calibration

Wall Ball Setup / Calibration Wall Ball Setup / Calibration Wall projection game 1 Table of contents Wall Projection Ceiling Mounted Calibration Select sensor and display Masking the projection area Adjusting the sliders What s happening?

More information

Lab experience 1: Introduction to LabView

Lab experience 1: Introduction to LabView Lab experience 1: Introduction to LabView LabView is software for the real-time acquisition, processing and visualization of measured data. A LabView program is called a Virtual Instrument (VI) because

More information

Elite Screens Frequently Asked Questions. Screens FAQs

Elite Screens Frequently Asked Questions. Screens FAQs Elite Screens Frequently Asked Questions Screens FAQs Q1: How can I extend my RJ-45 accessory such as my 3-way wall switch, 5-12v trigger, and IR "eye" sensor? A: You can extend the length of your accessory

More information

AXE101 PICAXE-08M2 Cyberpet Kit

AXE101 PICAXE-08M2 Cyberpet Kit AXE101 PICAXE-08M2 Cyberpet Kit The Cyberpet project uses a PICAXE-08M2 microcontroller with two LEDs as the pets eyes and a piezo sounder as a voice for the pet. The project also uses a switch so that

More information

Graphing Your Motion

Graphing Your Motion Name Date Graphing Your Motion Experiment 33 Graphs made using a Motion Detector can be used to study motion. In this experiment, you will use a Motion Detector to make graphs of your own motion. OBJECTIVES

More information

Project: Mayhem. Team Members: Group Manager - Eli White Documentation - Meaghan Kjelland Design - Jabili Kaza & Jen Smith Testing - Kyle Zemek

Project: Mayhem. Team Members: Group Manager - Eli White Documentation - Meaghan Kjelland Design - Jabili Kaza & Jen Smith Testing - Kyle Zemek Project: Mayhem Team Members: Group Manager - Eli White Documentation - Meaghan Kjelland Design - Jabili Kaza & Jen Smith Testing - Kyle Zemek Overview Developers see a task they want their computer to

More information

E X P E R I M E N T 1

E X P E R I M E N T 1 E X P E R I M E N T 1 Getting to Know Data Studio Produced by the Physics Staff at Collin College Copyright Collin College Physics Department. All Rights Reserved. University Physics, Exp 1: Getting to

More information

HOW TO USE THE POLYCOM REMOTE CONTROL... 2 MAKING A CALL FROM THE ADDRESS BOOK... 3 ANSWERING A CALL... 4 HANGING UP A CALL... 4 REDIALING A CALL...

HOW TO USE THE POLYCOM REMOTE CONTROL... 2 MAKING A CALL FROM THE ADDRESS BOOK... 3 ANSWERING A CALL... 4 HANGING UP A CALL... 4 REDIALING A CALL... HOW TO USE THE POLYCOM REMOTE CONTROL... 2 MAKING A CALL FROM THE ADDRESS BOOK... 3 ANSWERING A CALL... 4 HANGING UP A CALL... 4 REDIALING A CALL... 4 CAMERA CONTROLS... 5 AUDIO CONTROLS... 5 VIDEO INPUT...

More information

Please feel free to download the Demo application software from analogarts.com to help you follow this seminar.

Please feel free to download the Demo application software from analogarts.com to help you follow this seminar. Hello, welcome to Analog Arts spectrum analyzer tutorial. Please feel free to download the Demo application software from analogarts.com to help you follow this seminar. For this presentation, we use a

More information

Getting started with Spike Recorder on PC/Mac/Linux

Getting started with Spike Recorder on PC/Mac/Linux Getting started with Spike Recorder on PC/Mac/Linux You can connect your SpikerBox to your computer using either the blue laptop cable, or the green smartphone cable. How do I connect SpikerBox to computer

More information

The NXT Big Thing #14

The NXT Big Thing #14 The NXT Big Thing #14 The Sound Of... Robots? By Greg Intermaggio LDLDLDLDLDLLDDLLDLD! (Wookie for hello everyone!) In the last edition of The NXT Big Thing, we completed our gyro controlled robots. This

More information

Smart Lighting Demos

Smart Lighting Demos Smart Lighting Demos The following are demos and hands-on activities to provide additional background for smart lighting. Cypress CapSense EZ Color CY 3263N Starter Demo Kit Cypress Semiconductor's CY3269N

More information

New DSP Family Traffic Control Plus Feature

New DSP Family Traffic Control Plus Feature Introduction Application Note The purpose of this document is to provide instruction on the initial configuration and proper use of the Traffic Control Plus feature, included on the 1G DSP, and optional

More information

Follow the Light Pre-Quiz

Follow the Light Pre-Quiz Follow the Light Follow the Light Pre-Quiz 1. Provide a stimulus-sensor-coordinatoreffector-response framework using human eyes as the color sensor. 2. Provide the logic for a program for a LEGO robot

More information

Informatics Enlightened Station 1 Sunflower

Informatics Enlightened Station 1 Sunflower Efficient Sunbathing For a sunflower, it is essential for survival to gather as much sunlight as possible. That is the reason why sunflowers slowly turn towards the brightest spot in the sky. Fig. 1: Sunflowers

More information

MRF-250 INSTALLATION MANUAL

MRF-250 INSTALLATION MANUAL MRF-250 INSTALLATION MANUAL Multi-Room No-Pointing RF Control of Audio/Video Components MRF-250 Installation Manual 2004 Universal Remote Control, Inc. The information in this manual is copyright protected.

More information

lighting NL

lighting NL lighting 2019 20 LightCube Original The light bulb reinvented LED light Connection type: Plug A/C/G/I (ungrounded) Rated AC: 110-250V~; 50/60Hz; 5W Light output: 450Lm Dimmable range: low 50Lm high 450Lm

More information

Autopilot II Quick Setup

Autopilot II Quick Setup ! Autopilot II Quick Setup Background 3 How Autopilot Works 3 Autopilot Terms and Definitions 3 DMX512 Channel Assignments 4 Hardware Installation 5 Receiver Installation 5 Spotlight Installation 5 Autopilot

More information

The Customizable Robot Face Module

The Customizable Robot Face Module The Customizable Robot Face Module Fig. 1 The Customizable Robot Face The Customizable Robot Face module allows users to personalize their robot with adjustable faces, colors, backgrounds, and voices.

More information

Operation Procedure for Phillips XL30 ESEM

Operation Procedure for Phillips XL30 ESEM Operation Procedure for Phillips XL30 ESEM The ESEM will be left in the ON state when not in use. The chamber will be at high vacuum, filament on, stage at home position, VAC and HT buttons lit, and monitor

More information

Activate and install your Sony SVR Complete Guided Setup. Use the TiVo service it's easy!

Activate and install your Sony SVR Complete Guided Setup. Use the TiVo service it's easy! Activate and install your Sony SVR-3000 Complete Guided Setup Use the TiVo service it's easy! STEP 1 Activate and install Let s get started! This guide describes the basics for setting up your new Sony

More information

WaveLinx Mobile. WaveLinx Mobile Quick Start Guide. Programming Steps

WaveLinx Mobile. WaveLinx Mobile Quick Start Guide. Programming Steps WaveLinx Mobile WaveLinx Mobile Quick Start Guide General information WaveLinx Mobile is a unique mobile application to programming and use of the WaveLinx Wireless Connected Lighting system. WaveLinx

More information

A Guide to the Collaboration Studio Room 218D

A Guide to the Collaboration Studio Room 218D A Guide to the Collaboration Studio Room 218D I. Tables and Chairs All of the tables in the Collaboration Studio can be moved around, folded up, and reconfigured for optimal use of the space. Folding the

More information

Experiment 9A: Magnetism/The Oscilloscope

Experiment 9A: Magnetism/The Oscilloscope Experiment 9A: Magnetism/The Oscilloscope (This lab s "write up" is integrated into the answer sheet. You don't need to attach a separate one.) Part I: Magnetism and Coils A. Obtain a neodymium magnet

More information

Let s build the EdCrane Difficulty:

Let s build the EdCrane Difficulty: EdBuild Let s build the EdCrane Difficulty: The EdCrane EdBuild by Microbric Education is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. EdBuild the EdCrane The EdCrane

More information

Defining and Labeling Circuits and Electrical Phasing in PLS-CADD

Defining and Labeling Circuits and Electrical Phasing in PLS-CADD 610 N. Whitney Way, Suite 160 Madison, WI 53705 Phone: 608.238.2171 Fax: 608.238.9241 Email:info@powline.com URL: http://www.powline.com Defining and Labeling Circuits and Electrical Phasing in PLS-CADD

More information

Make Music Cards. Choose instruments, add sounds, and press keys to play music. scratch.mit.edu. Set of 9 cards

Make Music Cards. Choose instruments, add sounds, and press keys to play music. scratch.mit.edu. Set of 9 cards Make Music Cards Choose instruments, add sounds, and press keys to play music. Set of 9 cards Make Music Cards Try these cards in any order: Play a Drum Make a Rhythm Animate a Drum Make a Melody Play

More information

imso-104 Manual Revised August 5, 2011

imso-104 Manual Revised August 5, 2011 imso-104 Manual Revised August 5, 2011 Section 1 Getting Started SAFETY 1.10 Quickstart Guide 1.20 SAFETY 1.30 Compatibility 1.31 Hardware 1.32 Software Section 2 How it works 2.10 Menus 2.20 Analog Channel

More information

Airborne series CONTENTS. General important information This short section must be read for proper operation

Airborne series CONTENTS. General important information This short section must be read for proper operation Airborne series By Rafael Lozano-Hemmer CONTENTS General important information This short section must be read for proper operation Description Operation Cleaning Placement Instructions Wiring diagrams

More information

KRAMER ELECTRONICS LTD. USER MANUAL

KRAMER ELECTRONICS LTD. USER MANUAL KRAMER ELECTRONICS LTD. USER MANUAL MODEL: Projection Curved Screen Blend Guide How to blend projection images on a curved screen using the Warp Generator version K-1.4 Introduction The guide describes

More information

A Motor can be in many groups, by assigning additional channel# on it.

A Motor can be in many groups, by assigning additional channel# on it. Timer Remote Control Instruction How to use the channel numbers - There are 32 channels on the Remote Control Timer you can assign to Curtain Motor(s). To operate the Motors individually by itself only,

More information

3.22 Finalize exact specifications of 3D printed parts.

3.22 Finalize exact specifications of 3D printed parts. 3.22 Finalize exact specifications of 3D printed parts. This is the part that connect between the main tube and the phone holder, it needs to be able to - Fit into the main tube perfectly - This part need

More information

LS 5.0R SERVICE MANUAL

LS 5.0R SERVICE MANUAL LS 5.0R SERVICE MANUAL 1 TABLE OF CONTENTS CHAPTER 1: SERIAL NUMBER LOCATION CHAPTER 2: CONSOLE OVERLAY AND WORKOUT DESCRIPTION 2.1 Console Description 2.2 Display Windows Description 2.3 Getting Started

More information

Linkage 3.6. User s Guide

Linkage 3.6. User s Guide Linkage 3.6 User s Guide David Rector Friday, December 01, 2017 Table of Contents Table of Contents... 2 Release Notes (Recently New and Changed Stuff)... 3 Installation... 3 Running the Linkage Program...

More information

TerraSen Soil moisture station

TerraSen Soil moisture station TerraSen Soil moisture station P.O. Box 4, 6987 ZG Giesbeek Nijverheidsstraat 30, 6987 EM Giesbeek, The Netherlands T +31 313 880 200 E info@eijkelkamp.com I www.eijkelkamp.com Installation guide ENG Or

More information

Edge Connector Light Level Detector

Edge Connector Light Level Detector Description This is a simple tutorial demonstrating how to use a Kitronik edge connector breakout with the BBC micro:bit. The tutorial will cover measuring ambient light levels with an LDR and dimming

More information

Remote Control. degraded, causing unreliable operation. The recommended effective distance for remote operation is about 16 feet (5 meters).

Remote Control. degraded, causing unreliable operation. The recommended effective distance for remote operation is about 16 feet (5 meters). Media Streaming Sound Bar RTS736W User Manual Remote Control using the remote control Point the remote control at the REMOTE SENSOR located on the unit (see Front Panel illustration for precise location).

More information

Operations of ewelink APP

Operations of ewelink APP Operations of ewelink APP Add WiFi-RF Bridge to APP: 1. In a place where there is a wireless WIFI signal, turn on the WLAN function of the phone, select a wireless network and connect it. 2. After powering

More information

A6 OPERATING INSTRUCTIONS

A6 OPERATING INSTRUCTIONS Amerec s A6 control for the AX steamer is a touch screen control intended to be mounted on a wall, generally in or near the steam bath. It may be mounted directly on the wall surface or, using an optional

More information

Instruction Manual for Electronic Blowers and Flashboards

Instruction Manual for Electronic Blowers and Flashboards Instruction Manual for Electronic Blowers and Flashboards These instructions cover both the table model 17212 table top Electronic Bingo Blower (Fig 1) and the 17213 floor model Electronic Bingo Blower

More information

Classroom. Chapter 6: Lesson 33

Classroom. Chapter 6: Lesson 33 Classroom Chapter 6: Lesson 33 Adventus Incorporated, 2001 Chapter 6: Leger Lines Outside the Bass Staff Lesson 33 This lesson plan was written for use with Piano Suite Premier software, and is intended

More information

Chapter 17: Online Scanning

Chapter 17: Online Scanning Chapter 17: Online Scanning Online scanning allows the authorized user to scan the registration card and signature for an individual voter either during the time of adding/editing a voter record or afterwards

More information

ipads in Music Education Session 2

ipads in Music Education Session 2 Online 2012 ipads in Music Education Session 2 Katie Wardrobe Midnight Music MadPad HD how-to 3 What is MadPad HD? 3 Opening and playing a sound set 3 Accessing menu options 4 Creating your own sound set

More information

Software Manual Control Panel for Professional Single Booster Units Models: MM3 BW3

Software Manual Control Panel for Professional Single Booster Units Models: MM3 BW3 Software Manual Control Panel for Professional Single Booster Units Models: MM3 BW3 EN Software Manual.. 1-14 1 1. DESCRIPTION 3 2. DISPLAY LAYOUT 4 3. MODES 5 3.1 Power On 5 3.2 Standby 5 3.3 Power off

More information

Let s build the EdRoboClaw Difficulty:

Let s build the EdRoboClaw Difficulty: EdBuild Let s build the EdRoboClaw Difficulty: The EdRoboClaw EdBuild by Microbric Education is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. EdBuild the EdRoboClaw

More information

Aroma diffuser NERTA USER GUIDE

Aroma diffuser NERTA USER GUIDE Aroma diffuser NERTA USER GUIDE 2 WELCOME! This guide includes all the information to make the most out of your Smart SPC Nerta aroma diffuser. EN GET AN SPC ACCOUNT Free advantages just one click away.

More information

1. Logging into My Media Mall

1. Logging into My Media Mall 1 For Kindle Keyboard, Touch, Paperwhite Instructions for Borrowing Kindle E-books from My Media Mall *Please note that you will need your barcode and PIN number from your library account, an email address,

More information

TASKI Service Tool Edition: V5.10/2014

TASKI Service Tool Edition: V5.10/2014 Edition: V5.10/2014 Index 1 General 1.1 General information 1 1.1.1 Part reference 1 1.1.2 Consumable supplies 1 1.1.3 Direction description 1 1.1.4 Power source 1 1.2 Required material 2 1.2.1 Tools 2

More information

C-net MULTI Operating Instructions MULTI. User s Guide

C-net MULTI Operating Instructions MULTI. User s Guide MULTI User s Guide -1- Introduction. Thank you for buying this C-net product. We wish you to enjoy your boating and intend that all C-net instruments enhance your pleasure. The instruments are designed

More information

OBS Studio Installation / Settings

OBS Studio Installation / Settings OBS Studio Installation / Settings To setup live streaming of your event requires a video camera, a video capture card or external device such as the recommended Blackmagic Design Intensity Shuttle which

More information

The computer speakers can be loud. So, you may want to adjust the volume. For example, on the Mac keyboard you can use the F11 and F12 keys.

The computer speakers can be loud. So, you may want to adjust the volume. For example, on the Mac keyboard you can use the F11 and F12 keys. 1 CS 105 Lab #12 Making music in Python To begin, please create a new folder on your USB drive or account, and call it lab12. Save all of today s work there. The class handout showing you the musical scale

More information

Scanning and Joystick Selection

Scanning and Joystick Selection CHAPTER_.A 4/8/00 9:4 PM Page 1 Chapter Six Scanning and Joystick Selection CHAPTER_.A 4/8/00 9:4 PM Page 2 Scanning and Joystick Selection Introduction If you do not intend to use the DigiCom in Scanning

More information

Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display.

Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display. Configuring the Stack ST8961 VS Module when used in conjunction with a Stack ST81xx series display. Your Stack ST8961 VS module allows you to synchronize, overlay, and record data available on your Stack

More information

cs281: Introduction to Computer Systems Lab07 - Sequential Circuits II: Ant Brain

cs281: Introduction to Computer Systems Lab07 - Sequential Circuits II: Ant Brain cs281: Introduction to Computer Systems Lab07 - Sequential Circuits II: Ant Brain 1 Problem Statement Obtain the file ant.tar from the class webpage. After you untar this file in an empty directory, you

More information

Optiflex Interactive Video System

Optiflex Interactive Video System Optiflex Interactive Video System Optiflex Interactive Video System 1 Before You Start...............2 On-site Video Surveillance.......6 Touchscreen Interface Viewing...10 Secure Remote Look-in........16

More information

PYROPTIX TM IMAGE PROCESSING SOFTWARE

PYROPTIX TM IMAGE PROCESSING SOFTWARE Innovative Technologies for Maximum Efficiency PYROPTIX TM IMAGE PROCESSING SOFTWARE V1.0 SOFTWARE GUIDE 2017 Enertechnix Inc. PyrOptix Image Processing Software v1.0 Section Index 1. Software Overview...

More information

VNS2210 Amplifier & Controller Installation Guide

VNS2210 Amplifier & Controller Installation Guide VNS2210 Amplifier & Controller Installation Guide VNS2210 Amplifier & Controller Installation 1. Determine the installation location for the VNS2210 device. Consider the following when determining the

More information

APPLICATION NOTE 4312 Getting Started with DeepCover Secure Microcontroller (MAXQ1850) EV KIT and the CrossWorks Compiler for the MAXQ30

APPLICATION NOTE 4312 Getting Started with DeepCover Secure Microcontroller (MAXQ1850) EV KIT and the CrossWorks Compiler for the MAXQ30 Maxim > Design Support > Technical Documents > Application Notes > Microcontrollers > APP 4312 Keywords: MAXQ1850, MAXQ1103, DS5250, DS5002, microcontroller, secure microcontroller, uc, DES, 3DES, RSA,

More information

Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5

Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5 Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5 Lecture Capture Setup... 6 Pause and Resume... 6 Considerations... 6 Video Conferencing Setup... 7 Camera Control... 8 Preview

More information

Register your product and get support at www.philips.com/welcome SWW1890 User manual Contents 1 Important 4 Safety 4 English 2 Your Philips Wireless HD Net Connect 5 What is in the box 5 3 Overview 6

More information

ipads in Music Education Session 2

ipads in Music Education Session 2 Online 2012 ipads in Music Education Session 2 Katie Wardrobe Midnight Music MadPad HD how-to 4 What is MadPad HD? 4 Opening and playing a sound set 4 Accessing menu options 5 Creating your own sound set

More information

INSTALLATION INSTRUCTIONS WIRED REMOTE CONTROL USING TWISTED PAIR AND COAX CABLE U-WRC-U-x

INSTALLATION INSTRUCTIONS WIRED REMOTE CONTROL USING TWISTED PAIR AND COAX CABLE U-WRC-U-x Tel-Quip PH: 713-728-0625; FAX: 713-456-2512 800-317-0847 (Toll Free) www.telquipstore.com INSTALLATION INSTRUCTIONS 10-17-2013 WIRED REMOTE CONTROL USING TWISTED PAIR AND COAX CABLE U-WRC-U-x Thank you

More information

User Manual LivingColors Bloom

User Manual LivingColors Bloom User Manual LivingColors Bloom Unpacking and Installing Getting started with your LivingColors If you unpack a LivingColors, the product is already linked to the remote control. You only need to plug it

More information

LedSet User s Manual V Official website: 1 /

LedSet User s Manual V Official website:   1 / LedSet User s Manual V2.6.1 1 / 42 20171123 Contents 1. Interface... 3 1.1. Option Menu... 4 1.1.1. Screen Configuration... 4 1.1.1.1. Instruction to Sender/ Receiver/ Display Connection... 4 1.1.1.2.

More information

Getting started with

Getting started with Getting started with Electricity consumption monitoring single phase for homes and some smaller light commercial premises OVERVIEW: The OWL Intuition-e electricity monitoring system comprises of three

More information

Ebook Purchasing Instructions for School Devices

Ebook Purchasing Instructions for School Devices Ebook Purchasing Instructions for School Devices Revised 8/25/2015 Ebook Lookup: When looking up Ebooks on the Barnes & Noble website to get pricing and ISBN information, be sure to type in ebook in the

More information

QUICK START GUIDE FP-S SPINET DIGITAL PIANO. Designer Series

QUICK START GUIDE FP-S SPINET DIGITAL PIANO. Designer Series QUICK START GUIDE FP-S SPINET DIGITAL PIANO Designer Series QUICK START GUIDE INDEX PLAYING THE DEMO SONGS... 2 PLAYING SONGS FROM THE FLOPPY DISKS... 3 BUY OR DOWNLOAD SONGS TO PLAY... 4 USING THE LCD

More information

Instruction Manual for the & Electronic Bingo Blower

Instruction Manual for the & Electronic Bingo Blower Instruction Manual for the 17212 & 17214 Electronic Bingo Blower The directions in this manual when referring to the 17212 are referring to software version 2.83 (you can find what version your blower

More information

Let s build the EdDigger Difficulty:

Let s build the EdDigger Difficulty: EdBuild Let s build the EdDigger Difficulty: The EdDigger EdBuild by Microbric Education is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. EdBuild the EdDigger The

More information

Selecon LED Fixtures. PL3 LED Luminaire. Features SPECIFICATION SUBMITTAL

Selecon LED Fixtures. PL3 LED Luminaire. Features SPECIFICATION SUBMITTAL A revolutionary breakthrough in stage and studio lighting, the PL3 LED Luminaire delivers full control of the beam color composition irrespective of intensity. Drawing on technology and specific insight,

More information

QUICK START GUIDE. GP-3 Mini-Grand Digital Piano

QUICK START GUIDE. GP-3 Mini-Grand Digital Piano QUICK START GUIDE GP-3 Mini-Grand Digital Piano QUICK START GUIDE INDEX PLAYING THE DEMO SONGS... 2 PLAYING SONGS FROM THE FLOPPY DISKS... 3 BUY OR DOWNLOAD SONGS TO PLAY... 4 USING THE LCD AND ITS CONTROLS..

More information