Design and create an app which uses sequence, selection, repetition and variables. Program, debug and refine the code for their app.

Size: px
Start display at page:

Download "Design and create an app which uses sequence, selection, repetition and variables. Program, debug and refine the code for their app."

Transcription

1 Lesson 8 BYOC Lamp What you will need CloudProfessor (CPF) LED 0 light component Overview In this introductory lesson to the CloudProfessor, students will explore the basics of writing algorithms using the Blockly editor. Students will explore existing code and learn to control a white LED light and the three-coloured red, green, and blue LED light. Using what they have learnt, students will modify their code to create a flashing LED warning light. Learning Objectives Design and create an app which uses sequence, selection, repetition and variables. Program, debug and refine the code for their app. Detect and correct errors in their app. Learning Expectations (how learning / progress will be demonstrated) All Use sequences of instructions. Most Explain how their app works. Some Use logical reasoning to detect errors in their algorithms. Curriculum Links (Computing PoS) Designs simple algorithms using loops, and selection i.e. if statements. (AL) Uses logical reasoning to predict outcomes. (AL) Detects and corrects errors i.e. debugging, in algorithms. (AL) Creates programs that implement algorithms to achieve given goals. (AL) Understands that programming bridges the gap between algorithmic solutions and computers. (AB) Computational Thinking Concepts: AB = Abstraction; DE = Decomposition; AL = Algorithmic Thinking; EV = Evaluation; GE = Generalisation. Lesson 8: BYOC Lamp

2 Step-by-step instructions. Connect the power of CloudProfessor then press and hold the power button for two seconds; it will turn on and the power indicator will light up.. Insert the LED 0 light set into the USB 3.0 slot on CloudProfessor. 3. When the CloudProfessor detects the LED 0 component, a notification will appear on your device; click the notification to launch the open the CPF LED0 App, and then select CPF LED0 Blockly Press the execute button to enter the control user interface (UI). The UI can be used to control and turn the white LED light and the three-coloured red, green, blue LED light on or off. 5. Press the edit button to enter the program editing page. Edit button Execute button CPF LED0 app Control user interface (UI) Program editing page Lesson 8: BYOC Lamp

3 3 Exploring the code (Blockly) Let s explore the code.. White LED Set: The White LED Set block controls the White LED on the LED0 light component. The White LED can be either set to ON or OFF inside the program () or switched on or off by the user via a button in the program UI (). In this example, the White LED is controlled by the program UI.. RGB LED Setting: The RGB LED Setting block controls the RGB LED on the LED0 light component. Just like the White LED, each of the red, green and blue lights on the RGB LED can be either set to ON or OFF inside the program (4) or switched on or off individually by the user via buttons in the program UI (3). In this example, the RGB LED is controlled by the program UI Delay Time(Sec.): The Delay Time(Sec.) block is used to pause the code (time set in milliseconds). At the moment, this code doesn t really do anything but later on we will be using this to make the LED light flash on and off. 4. Set CPF control request: Finally, the Set CPF control request block at the end of the program tells the program to run the code from the beginning again. The program will continuously repeat until the user closes the app or stops the program manually. 3 Lesson 8: BYOC Lamp

4 3 Exploring the code (JavaScript) Let s explore the code.. value = ui.get("white led"); value = ui.get("white led"); reads the status of the White LED toggle in the program UI and stores it an a variable called value. cpf.set("white led", value); controls the White LED on the LED0 light component. The White LED can be either set to ON or OFF 0 inside the program () or switched on or off by the user via a button in the program UI (). In this example, the White LED is controlled by the program UI.. var r = ui.get("rgb led", "r"); var r = ui.get("rgb led", "r"); reads the status of the Red RGB LED toggle in the program UI and stores it an a variable called r. This is repeated for both the Green and Blue LEDs (3) cpf.set("rgb led", r, g, b); cpf.set("rgb led", r, g, b); controls the RGB LED on the LED0 light component. Just like the White LED, each of the red, green and blue lights on the RGB LED can be either set to ON or OFF 0 inside the program or switched on or off individually by the user via buttons in the program UI (4). In this example, the RGB LED is controlled by the program UI cpf.sleep(000); cpf.sleep(000); is used to pause the code (time set in milliseconds). At the moment, this code is blocked out. We will be using this in the next challenge to make the LED light flash on and off. 5. cpf.repeat(); Finally, the cpf.repeat(); line at the end of the program tells the program to run the code from the beginning again. The program will continuously repeat until the user closes the app or stops the program manually. 4 Lesson 8: BYOC Lamp

5 4 Modifying the code (Blockly) Let s modify the code to make the White LED blink on and off.. Clear the existing code so that you have a blank canvas to create your new program. Click on the delete icon at the tope of the code window (). Note: You can return to the original program at any time by clicking on the restore icon ().. Change the title of the app. 3 Click on CPF UI from the menu and select the Title Name Panel Set block (3). Drag the block into the empty workspace and change the title to Auto mode (4). 3. Add a delay (pause). Click on CPF Devices and select Delay Time(Sec.) block (5). Drag the block so that it attaches to the Title block. Change the delay time to 000 milliseconds (6). Note: 000 milliseconds = second Start the blinking sequence by turning off the White LED. Click on CPF Devices and select White LED Set block. Drag the block so that it attaches to the Delay block. Change the Set value to OFF. 5. Add another delay of 000 milliseconds directly after the White LED Set OFF block. 6. Complete the blinking sequence by turning the White LED on. Click on CPF Devices and select White LED Set block. Drag the block so that it attaches to the Delay block. Change the Set value to OFF. 7. Finally, add a Set CPF control repeat block and attach it to the end of your program so that the codes repeats until the user closes the app or stops the program manually. Your finished code should look like this: Try changing the value in the Delay Time(Sec.) option and see how the behaviour of the LED light changes. Try making the RGB LED flash in sequence (Red then Green followed by Blue). 5 Lesson 8: BYOC Lamp

6 4 Modifying the code (JavaScript) Let s modify the code to make the White LED blink on and off. In a program, areas surrounded by /* and */ will not be executed; In the sample code, an area of the code has already been commented out (). Let s explore the commented out code:. cpf.sleep(000); Set the program wait time (in milliseconds). Here the program will pause for 000 milliseconds, which is equal to second.. ui.set("title", "Auto Mode"); Display the text "Auto Mode" as the title on the program UI 3. cpf.set("white led", ); cpf.set("white led", ); turns the white LED light component ON ( ). ui.set("white led", ); sets the white LED light toggle on the program UI to ON ( ); 4. cpf.set("white led", 0); cpf.set("white led", 0); turns the white LED light component OFF ( 0 ). ui.set("white led", 0); sets the white LED light toggle on the program UI to OFF ( 0 ); Executing the commented out code: Delete the two rows /* and */ from the program (this will allow the CloudProfessor to execute the code); press the execute button on the top right and watch the white LED light flash on and off! Try changing the value in the cpf.sleep(000) line and see how the behaviour of the LED light changes. Try making the RGB LED flash in sequence (Red then Green followed by Blue). 6 Lesson 8: BYOC Lamp

7 5 Extension Students to try to re-write the code without instructions or create a traffic light sequence using the RGB LED. 6 Differentiation To support students, provide step by step guides. To stretch students ask them to create a flowchart / pseudocode of their code first or code their solution using JavaScript. 7 Homework Students to write up a summary of what they ve learned; students to include screenshots and snippets of their code in their summary. 8 Links Traffic lights: Traffic light sequence explained: Disclaimer: Use these sites at your own risk. Acer is not responsible for the content of external Internet sites. We recommend that you check the suitability of any recommended websites links before giving them to students. 7 Lesson 8: BYOC Lamp

Lesson 7 Cloud Mood Indicator

Lesson 7 Cloud Mood Indicator Lesson 7 Cloud Mood Indicator What you will need CloudProfessor (CPF) RGB LED Light Arduino Leonardo Arduino Shield USB cable Overview In lesson five, students learned how to upload the value measured

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

Lesson 16 Musical Door Bell

Lesson 16 Musical Door Bell Lesson 16 Musical Door Bell 1 What you will need CloudProfessor (CPF) Buzzer Arduino Leonardo Arduino Shield USB cable Overview In this lesson, students will explore how to create music with the CloudProfessor.

More information

Lesson 25 Flood Warning System

Lesson 25 Flood Warning System Lesson 25 Flood Warning System 1 What you will need CloudProfessor (CPF) Moisture Sensor Buzzer Arduino Leonardo Android Shield USB lead Overview In this lesson, students will create a flood warning system

More information

Lesson 5 Cloud Upload

Lesson 5 Cloud Upload Lesson 5 Cloud Upload What you will need CloudProfessor (CPF) Temperature sensor Arduino Leonardo Arduino Shield USB cable Overview In the previous lessons, students learned how to retrieve data from sensors

More information

Lesson 27 CPF Weather Station

Lesson 27 CPF Weather Station Lesson 27 CPF Weather Station 1 What you will need CloudProfessor (CPF) Moisture Sensor Water sensor Temp & humidity sensor Arduino Leonardo Android Shield USB lead Overview In this lesson, students will

More information

Introductory Lesson 1 Working in the cloud

Introductory Lesson 1 Working in the cloud Introductory Lesson 1 Working in the cloud 1 What you will need CloudProfessor (CPF) Temperature Sensor Arduino Leonardo Arduino Shield USB cable Overview In this lesson, students will explore the concept

More information

CPF Arduino Blockly V

CPF Arduino Blockly V CPF Arduino Blockly V1.00.2004 Content CPF Arduino Blockly Installation... 3 CPF Arduino Blockly - CloudProfessor Pairing... 6 CPF Arduino Blockly login... 12 Upload Program Code... 13 Download Program

More information

Lesson 4: Animation. Goals

Lesson 4: Animation. Goals Introduction: In this session you are going to use custom built tools in Arduino to help you turn images or animation into code that automatically uploads to your DIY Gamer. It is a fun and easy way to

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

Halloween Pumpkinusing. Wednesday, October 17, 12

Halloween Pumpkinusing. Wednesday, October 17, 12 Halloween Pumpkinusing Blink LED 1 What you will need: 1 MSP-EXP430G2 1 3 x 2 Breadboard 3 560 Ohm Resistors 3 LED s (in Red Color Range) 3 Male to female jumper wires 1 Double AA BatteryPack 2 AA Batteries

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

Fundamentals. Training Kit. Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY f presentationproducts.

Fundamentals. Training Kit. Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY f presentationproducts. Fundamentals Training Kit Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY 10001 212.736.6350 f 212.736.6353 presentationproducts.com Table of Contents Getting Started How Does the SMART

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

TTS Rainbow Matrix TEACHER GUIDE

TTS Rainbow Matrix TEACHER GUIDE TTS Rainbow Matrix TEACHER GUIDE www.tts-shopping.com Using Rainbow Matrix in the classroom PROGRAMMING C L E V E R C AT S JOURNEY Foundation focus EYFS Recognise that a range of technology is used in

More information

Convert VHS to Digital or DVD using Roxio Video Capture

Convert VHS to Digital or DVD using Roxio Video Capture Convert VHS to Digital or DVD using Roxio Video Capture 1. Plug in USB to VHS Convert. in the patch panel. 2. On the computer, click the Roxio Video Capture icon This window will appear: 3. Press the Power

More information

How to Add On-Screen Messages to Keep Users Informed

How to Add On-Screen Messages to Keep Users Informed How to Add On-Screen Messages to Keep Users Informed Watch Video Version By Irene Bushnell, Intacct Practice Manager, Synergy Business Solutions One of the really cool features in both Dynamics SL and

More information

Photoshop and Lightroom for Photographers

Photoshop and Lightroom for Photographers Photoshop and Lightroom for Photographers Topic 2 - Opening Files in Photoshop Learning Outcomes In this lesson, we will look at a basic introduction to Photoshop. We will look at how we open the program

More information

How to Rescue a Deleted File Using the Free Undelete 360 Program

How to Rescue a Deleted File Using the Free Undelete 360 Program R 095/1 How to Rescue a Deleted File Using the Free Program This article shows you how to: Maximise your chances of recovering the lost file View a list of all your deleted files in the free Restore a

More information

USB Server User Manual. USB Server Manual (DN-13010)

USB Server User Manual. USB Server Manual (DN-13010) USB Server Manual (DN-13010) Copyright Notice Copyright 2010. Al rights reserved. Disclaimer Incorporated shall not be liable for technical or editorial errors or omissions contained herein; nor for incidental

More information

Importing source database objects from a database

Importing source database objects from a database Importing source database objects from a database We are now at the point where we can finally import our source database objects, source database objects. We ll walk through the process of importing from

More information

University of Hull Department of Computer Science C4DI Interfacing with Arduinos

University of Hull Department of Computer Science C4DI Interfacing with Arduinos Introduction Welcome to our Arduino hardware sessions. University of Hull Department of Computer Science C4DI Interfacing with Arduinos Vsn. 1.0 Rob Miles 2014 Please follow the instructions carefully.

More information

OrbBasic Lesson 1 Goto and Variables: Student Guide

OrbBasic Lesson 1 Goto and Variables: Student Guide OrbBasic Lesson 1 Goto and Variables: Student Guide Sphero MacroLab is a really cool app to give the Sphero commands, but it s limited in what it can do. You give it a list of commands and it starts at

More information

OrbBasic 1: Student Guide

OrbBasic 1: Student Guide OrbBasic 1: Student Guide Sphero MacroLab is a really cool app to give the Sphero commands, but it s limited in what it can do. You give it a list of commands and it starts at the top and goes to the bottom,

More information

Secure+ Password Manager ver 1.1.1

Secure+ Password Manager ver 1.1.1 Secure+ Password Manager ver 1.1.1 Table of Contents 1. First setup & Auto lock functionality 1. Setup 2. Auto Lock 2. Add new item & edit 1. Icons 2. Edit Fields (Title, Category, ID, Password, URL) 3.

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

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials 2 About the Tutorial With TestComplete, you can test applications of three major types: desktop, web and mobile: Desktop applications - these

More information

Getting Started with Moodle

Getting Started with Moodle Getting Started with Moodle July 2014 E-Learning Environments ww.ucl.ac.uk/e-learning [1] Contents Task 1 - Using Moodle as a student... 4 Step 1 - Load up Moodle... 4 Step 2 - Log in... 4 Step 3 - Discover

More information

Dissolving Models with Particle Flow and Animated Opacity Map

Dissolving Models with Particle Flow and Animated Opacity Map Dissolving Models with Particle Flow and Animated Opacity Map In this tutorial we are going to start taking a look at Particle Flow, and one of its uses in digital effects of making a model look as though

More information

vividwireless USB modem

vividwireless USB modem 1 USB modem 1 vividwireless USB modem Follow these simple steps to get yourself online using wireless broadband. Colour Status Reason Getting to know your USB MODEM Your USB modem is the device that plugs

More information

Interactive Tourist Map

Interactive Tourist Map Adobe Edge Animate Tutorial Mouse Events Interactive Tourist Map Lesson 2 Make click events In the last lesson you learned how to set up you stage and get your project ready for some interactivity. You

More information

EchoSub v1.2 EchoStyle

EchoSub v1.2 EchoStyle EchoSub v1.2 EchoStyle 2002-2003 2 I. Introduction These days it s nothing special anymore to watch a movie on your computer. But of course, you also want matching subtitles. These can be gotten from many

More information

NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION

NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION NSCC SUMMER LEARNING SESSIONS MICROSOFT OFFICE SESSION Module 2 Working with Files and Folders in Windows 7 Welcome! Files and folders in Windows help you organize, save, and locate your information. Knowing

More information

Getting Started with Featured Promethean Apps

Getting Started with Featured Promethean Apps Getting Started with Featured Promethean Apps Welcome to an introductory guide to using the featured Promethean apps. These are apps designed by teachers for teachers, and they are built into version 2.3

More information

Computer Basics: Step-by-Step Guide (Session 2)

Computer Basics: Step-by-Step Guide (Session 2) Table of Contents Computer Basics: Step-by-Step Guide (Session 2) ABOUT PROGRAMS AND OPERATING SYSTEMS... 2 THE WINDOWS 7 DESKTOP... 3 TWO WAYS TO OPEN A PROGRAM... 4 DESKTOP ICON... 4 START MENU... 5

More information

OrbBasic LESSON 1 Goto and Variables Student Guide

OrbBasic LESSON 1 Goto and Variables Student Guide OrbBasic LESSON 1 Goto and Variables Student Guide What is OrbBasic? OrbBasic is a programming language. A programming language is a list of instructions that tells a computer what to do. Although MacroLab

More information

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide Automation Design Canvas 2.0 Beta Quick-Start Guide Contents Creating and Running Your First Test... 3 Adding Quick Verification Steps... 10 Creating Advanced Test Verifications... 13 Creating a Data Driven

More information

HTML/CSS Lesson Plans

HTML/CSS Lesson Plans HTML/CSS Lesson Plans Course Outline 8 lessons x 1 hour Class size: 15-25 students Age: 10-12 years Requirements Computer for each student (or pair) and a classroom projector Pencil and paper Internet

More information

Contents I - Navigating is easy p. 2. III - Controls p. 7. II - Using Whiteboard Active pages: making a new page, saving, opening, printing p.

Contents I - Navigating is easy p. 2. III - Controls p. 7. II - Using Whiteboard Active pages: making a new page, saving, opening, printing p. Tutorial Getting started with Whiteboard Active Whiteboard Active range is simple to use. It has been designed to be used on an interactive whiteboard as a whole class resource. You can also use it on

More information

Introduction to the IDE

Introduction to the IDE 1 Introduction Introduction to the IDE The IDE that we are using is called SourceBoost, and is available on all of the machines in the ELC. There is also a free version which has some limitations that

More information

Adobe illustrator Introduction

Adobe illustrator Introduction Adobe illustrator Introduction This document was prepared by Luke Easterbrook 2013 1 Summary This document is an introduction to using adobe illustrator for scientific illustration. The document is a filleable

More information

User Manual. perfectionlearning.com/technical-support

User Manual. perfectionlearning.com/technical-support User Manual perfectionlearning.com/technical-support 1 User Manual Accessing Math X... 3 Login... 3 Forgotten Password... 3 Navigation Menu... 4 Logout... 4 Admin... 5 Creating Classes and Students...

More information

Copyrighted material - provided by Taylor & Francis Not for distribution

Copyrighted material - provided by Taylor & Francis Not for distribution B efore we jump in and start building our websites we ll need to familiarize ourselves with Muse and its features. Much of the interface and toolset will be recognizable to you if you ve used any of Adobe

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

Sphero. Draw your name using the Sphero Robot.

Sphero. Draw your name using the Sphero Robot. Sphero Draw your name using the Sphero Robot. To be able to complete the task, you will need to complete the following steps. Connect the Sphero to the mobile device. Open the Sphero app on the mobile

More information

Collaboration Tools. Student Guide. Copyright 2015 by Edmentum. All Rights Reserved.

Collaboration Tools. Student Guide. Copyright 2015 by Edmentum. All Rights Reserved. Collaboration Tools Student Guide Copyright 2015 by Edmentum. All Rights Reserved. Contents Introduction... 3 Viewing Collaborations... 3 Using the Whiteboard Tool... 4 Viewing a Video... 5 Viewing a Document...

More information

Micro-Controllers. Module 2: Outputs Control and Inputs Monitoring. IAT Curriculum Unit PREPARED BY. August 2008

Micro-Controllers. Module 2: Outputs Control and Inputs Monitoring. IAT Curriculum Unit PREPARED BY. August 2008 Micro-Controllers Module 2: Outputs Control and Inputs Monitoring PREPARED BY IAT Curriculum Unit August 2008 Institute of Applied Technology, 2008 2 Module 2: Outputs Control and Inputs Monitoring Module

More information

How to Save Google Maps Offline to a Mobile Phone

How to Save Google Maps Offline to a Mobile Phone How to Save Google Maps Offline to a Mobile Phone How to Download Google Maps Offline 1. Make sure your device (laptop) has an Internet connection, and sign into your Google account. 2. Open the Google

More information

1 LOG IN TO APPS.LOSRIOS.EDU AND CLICK ON GOOGLE DRIVE--USE CHROME BROWSER FOR 3 CREATE A GOOGLE DOCS DOCUMENT

1 LOG IN TO APPS.LOSRIOS.EDU AND CLICK ON GOOGLE DRIVE--USE CHROME BROWSER FOR 3 CREATE A GOOGLE DOCS DOCUMENT Google Drive: Throw out your USB drive today! With Google Apps for Los Rios (apps.losrios.edu) you have access to 30GB* of online storage in your Google Drive. Google Docs is one of the applications in

More information

Polygons and Angles: Student Guide

Polygons and Angles: Student Guide Polygons and Angles: Student Guide You are going to be using a Sphero to figure out what angle you need the Sphero to move at so that it can draw shapes with straight lines (also called polygons). The

More information

Storing Your Exercise Files

Storing Your Exercise Files Storing Your Exercise Files This appendix contains an overview for using this book with various file storage media, such as a USB flash drive or hard drive. Detailed instructions for downloading and unzipping

More information

ORGANIZING YOUR ARTWORK WITH LAYERS

ORGANIZING YOUR ARTWORK WITH LAYERS 9 ORGANIZING YOUR ARTWORK WITH LAYERS Lesson overview In this lesson, you ll learn how to do the following: Work with the Layers panel. Create, rearrange, and lock layers and sublayers. Move objects between

More information

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE C30147 RELATIONAL DATABASE Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards This module has been developed to further the learner s

More information

RSR-DALI User Manual. What is the RSR-DALI?

RSR-DALI User Manual. What is the RSR-DALI? RSR-DALI User Manual This manual covers all features of the RSR-DALI, for a simple step by step guide to programming DALI in Rasoft Pro see DALI programming quick guide. What is the RSR-DALI? The RSR-DALI

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

Guide to fix the problem with Problets

Guide to fix the problem with Problets Guide to fix the problem with Problets COP 2512 - IT Programming Fundamentals In order to fix the problem of not being able to run Problets on your web browser, please follow the following steps: 1. Make

More information

Table of Contents. Using the 360 Video Player Using the Web Browser Version...2. Downloading and Installing the Video Player...

Table of Contents. Using the 360 Video Player Using the Web Browser Version...2. Downloading and Installing the Video Player... Table of Contents Using the 360 Video Player... 2 Using the Web Browser Version...2 Downloading and Installing the Video Player...2 First Time Use...3 Consent Form... 4 Updating your Details... 5 Viewing

More information

Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio

Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio ECE2049 Embedded Computing in Engineering Design Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio In this lab, you will be introduced to the Code Composer Studio

More information

SchoolBase (app) Documentation. Doc Version: 1 (initial release) App Version: 1 (initial release)

SchoolBase (app) Documentation. Doc Version: 1 (initial release) App Version: 1 (initial release) SchoolBase (app) Documentation Doc Version: 1 (initial release) App Version: 1 (initial release) Contents Introduction... 2 Licencing and Setup... 2 Please Note... 2 App Manager... 3 Main Modules... 4

More information

This is the lesson workshop to create a test page in DIVI

This is the lesson workshop to create a test page in DIVI SCWCLUBS.COM Websites are a very important forms of communication. People thinking about Arizona are comparing communities. People in SCW are comparing clubs. Club members are checking information. Keep

More information

Embedded Systems - FS 2018

Embedded Systems - FS 2018 Institut für Technische Informatik und Kommunikationsnetze Prof. L. Thiele Embedded Systems - FS 2018 Lab 0 Date : 28.2.2018 Prelab Filling the gaps Goals of this Lab You are expected to be already familiar

More information

Laboratory Assignment #4 Debugging in Eclipse CDT 1

Laboratory Assignment #4 Debugging in Eclipse CDT 1 Lab 4 (10 points) November 20, 2013 CS-2301, System Programming for Non-majors, B-term 2013 Objective Laboratory Assignment #4 Debugging in Eclipse CDT 1 Due: at 11:59 pm on the day of your lab session

More information

Wireless RAK system setup guide

Wireless RAK system setup guide Wireless RAK system setup guide 1 What you need to get started 2 Create a new Rasoft Pro Project File 2.1 Project name and House numbers 2.2 Save Locations 2.3 Adding rooms 2.4 Adding channels 2.5 Adding

More information

CoderDojo Activity Cards: The Cards (Animation2.html): How to use: Student comes to mentor, and together they choose a card to do next.

CoderDojo Activity Cards: The Cards (Animation2.html): How to use: Student comes to mentor, and together they choose a card to do next. CoderDojo Activity Cards: How to use: Student comes to mentor, and together they choose a card to do next. The idea is always to choose a card that is interesting, and at the right level for the moment,

More information

SMART Board Training Packet. Notebook Software 10.0

SMART Board Training Packet. Notebook Software 10.0 SMART Board Training Packet Notebook Software 10.0 Bob Mallory SMART Certified Trainer Bob.Mallory@avispl.com Brian Leeser SMART Certified Trainer Brian.Leeser@avispl.com Chris de Treville Chris.deTreville@avispl.com

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

How to Import from Commons

How to Import from Commons How to Import from Commons How to Search for a Resource on Canvas Commons A resource in Canvas Commons can be a Course, Module, Assignment, Quiz, Discussion, Page, Document, Video, Audio or Image file.

More information

Kick off Your Systems Using FreeMind

Kick off Your Systems Using FreeMind Kick off Your Systems Using FreeMind Introduction - Why Use a Mindmap? The first steps in kicking off your systems will involve understanding what your business looks like right now. You can start by working

More information

QUICK START MANUAL. Whiteboarding made easy. Quickstart Manual June/18 1

QUICK START MANUAL. Whiteboarding made easy. Quickstart Manual June/18 1 QUICK START MANUAL Whiteboarding made easy Quickstart Manual June/18 1 Table of contents 1. Tools menu... 3 1. Tab options... 3 2. Admin settings... 3 3. Behaviour settings... 4 4. Sharing options... 4

More information

MyGuest Training Guide

MyGuest Training Guide MyGuest Training Guide Launching MyGuest... 2 Check Settings... 3 Requests Screen... 5 Handling Requests... 8 Complete Requests... 12 SEARCH for a Request... 13 Add A Request As Staff Member... 14 Support...

More information

To lead your students through this activity, you will need your computer, attached to a projector, for projecting your code for students to see.

To lead your students through this activity, you will need your computer, attached to a projector, for projecting your code for students to see. To lead your students through this activity, you will need your computer, attached to a projector, for projecting your code for students to see. INSTALL THE SOFTWARE Download and install the Arduino integrated

More information

Title and Modify Page Properties

Title and Modify Page Properties Dreamweaver After cropping out all of the pieces from Photoshop we are ready to begin putting the pieces back together in Dreamweaver. If we were to layout all of the pieces on a table we would have graphics

More information

MAY CANVAS UPDATES FOR TEACHERS

MAY CANVAS UPDATES FOR TEACHERS MAY CANVAS UPDATES FOR TEACHERS The Canvas Browser updates every three weeks. There was one update during the month of May. This past month there have also been updates to both the Teacher App and the

More information

Product Manual. Version PROMISE Technology, Inc. All Rights Reserved.

Product Manual. Version PROMISE Technology, Inc. All Rights Reserved. Product Manual Version 2.0 2016 PROMISE Technology, Inc. All Rights Reserved. Contents Table of Contents Introduction 1 Unpacking 1 Requirements for Apollo setup and use 1 Back of Apollo 2 Front of Apollo

More information

Mac OS X and ios operating systems. Lab 1 Introduction to Mac OS X and ios app development. Gdańsk 2015 Tomasz Idzi

Mac OS X and ios operating systems. Lab 1 Introduction to Mac OS X and ios app development. Gdańsk 2015 Tomasz Idzi Mac OS X and ios operating systems Lab 1 Introduction to Mac OS X and ios app development Gdańsk 2015 Tomasz Idzi Introduction This lab is designed to acquaint the student with the basic functionality

More information

1 Build Your First App. The way to get started is to quit talking and begin doing. Walt Disney

1 Build Your First App. The way to get started is to quit talking and begin doing. Walt Disney 1 Build Your First App The way to get started is to quit talking and begin doing. Walt Disney Copyright 2015 AppCoda Limited All rights reserved. Please do not distribute or share without permission. No

More information

PowerPoint Essentials 1

PowerPoint Essentials 1 PowerPoint Essentials 1 LESSON SKILL MATRIX Skill Exam Objective Objective Number Working with an Existing Presentation Change views of a presentation. Insert text on a slide. 1.5.2 2.1.1 SOFTWARE ORIENTATION

More information

Echo360 Personal Capture Echo360 Personal Capture allows you to create recordings in your office. Simply install the software on your computer and you can record what you see on the screen plus audio,

More information

PATTERN SEQUENCER GUIDE

PATTERN SEQUENCER GUIDE PATTERN SEQUENCER GUIDE C O N T E N T S CHAPTER 1 1 Patterns 3 OVERVIEW...4 PATTERN LIST...4 PATTERN MANAGEMENT...4 SAVING PATTERNS...5 LOADING PATTERNS...5 CLEAR ALL...6 CHAPTER 2 2 Frames 7 OVERVIEW...8

More information

Taskbar: Working with Several Windows at Once

Taskbar: Working with Several Windows at Once Taskbar: Working with Several Windows at Once Your Best Friend at the Bottom of the Screen How to Make the Most of Your Taskbar The taskbar is the wide bar that stretches across the bottom of your screen,

More information

Learn to make watchosle

Learn to make watchosle HACKING WITH SWIFT COMPLETE TUTORIAL COURSE Learn to make watchosle P apps with real-worldam S Swift projects REEPaul Hudson F Project 1 NoteDictate 2 www.hackingwithswift.com Setting up In this project

More information

Your First Windows Form

Your First Windows Form Your First Windows Form From now on, we re going to be creating Windows Forms Applications, rather than Console Applications. Windows Forms Applications make use of something called a Form. The Form is

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

Learning Worksheet Fundamentals

Learning Worksheet Fundamentals 1.1 LESSON 1 Learning Worksheet Fundamentals After completing this lesson, you will be able to: Create a workbook. Create a workbook from a template. Understand Microsoft Excel window elements. Select

More information

The PML Editor: User's Manual

The PML Editor: User's Manual The PML Editor: User's Manual Johnsson, Björn A; Weibull, Gunnar; Magnusson, Boris 2017 Document Version: Publisher's PDF, also known as Version of record Link to publication Citation for published version

More information

What is EV3DEV? Send commands to the EV3 Upload programs and run them on the EV3

What is EV3DEV? Send commands to the EV3 Upload programs and run them on the EV3 PYTHON ON EV3DEV What is EV3DEV? A Linux-based operating system that runs on the Lego EV3 Runs from a microsd card Can run programs written in Python, Javascript, Java, Go, C++, C, and many others After

More information

Fundamentals. Training Kit. Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY f presentationproducts.

Fundamentals. Training Kit. Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY f presentationproducts. Fundamentals Training Kit Presentation Products, Inc. 632 W 28th St, 7th fl New York, NY 10001 212.736.6350 f 212.736.6353 presentationproducts.com How Does the SMART Board Interactive Whiteboard Work?

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

This presentation will show you how to create a page in a group eportfolio.

This presentation will show you how to create a page in a group eportfolio. This presentation will show you how to create a page in a group eportfolio. 1 If you are using your eportfolio for presenting group work, you will need to create a group eportfolio page, which all the

More information

Clinical Looking Glass Introductory Session In-Class Exercise Two: Congestive Heart Failure

Clinical Looking Glass Introductory Session In-Class Exercise Two: Congestive Heart Failure Clinical Looking Glass Introductory Session In-Class Exercise Two: Congestive Heart Failure Document Conventions Keyboard keys are identified by italics (Enter, Return) Most on-screen buttons are presented

More information

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22 Workflow Design Guide Version 17 November 2017 Contents About This Guide... 7 Workflows and Forms Overview... 7 Security Permissions for Workflows and Forms... 8 Search for a Workflow Design, Workflow

More information

Tutorial 5. Website - Create a folder on the desktop called tutorial 5. Editor Brackets. Goals. Create a website showcasing the following techniques

Tutorial 5. Website - Create a folder on the desktop called tutorial 5. Editor Brackets. Goals. Create a website showcasing the following techniques Tutorial 5 Editor Brackets Goals Create a website showcasing the following techniques - Animated backgrounds - Animated game elements Website - Create a folder on the desktop called tutorial 5 o - Open

More information

MODULE 1: Getting Started with Windows 10

MODULE 1: Getting Started with Windows 10 WIN-1 Edition Hunt SOLUTIONS MANUAL office-2016-fundamentals-1st-edition-hunt-solutions-manual/ Edition Hunt TEST BANK office-2016-fundamentals-1st-edition-hunt-test-bank/ MODULE 1: Getting Started with

More information

This course will introduce the user to a Mobi and the Workspace software. This tool allows the instructor to annotate and work alongside of the

This course will introduce the user to a Mobi and the Workspace software. This tool allows the instructor to annotate and work alongside of the This course will introduce the user to a Mobi and the Workspace software. This tool allows the instructor to annotate and work alongside of the students as you model the lesson which helps everyone pay

More information

ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL

ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL 1 Preface About RobotLinking RobotLinking is a technology company focused on 3D Printer, Raspberry Pi and Arduino open source community development.

More information

For detailed instructions, click the links below. To ask questions, request features, or report problems, visit feedback.photoshop.com.

For detailed instructions, click the links below. To ask questions, request features, or report problems, visit feedback.photoshop.com. Workspace basics For detailed instructions, click the links below. To ask questions, request features, or report problems, visit feedback.photoshop.com. You create and manipulate your documents and files

More information

User s Guide. Attainment s. GTN v4.11

User s Guide. Attainment s. GTN v4.11 Attainment s User s Guide A printable PDF of this user guide is available from the Attainment Company website: https://www.attainmentcompany.com/gotalk-now Contents 1 Getting Started with GoTalk NOW 1

More information

MacroLab Lesson 5 Patterns & Colors: Student Guide

MacroLab Lesson 5 Patterns & Colors: Student Guide MacroLab Lesson 5 Patterns & Colors: Student Guide You are going to be using Sphero to program patterns. Sphero can be programmed to change colors for different durations. You are going to be creating

More information

ClassLink Student Directions

ClassLink Student Directions ClassLink Student Directions 1. Logging-in Open a web browser, any browser and visit https://launchpad.classlink.com/wssd Your username and password are the same as your WSSD login credentials that you

More information

Using Eclipse for C Programming

Using Eclipse for C Programming Using Eclipse for C Programming George Ferguson ferguson@cs.rochester.edu June 2018 Abstract Students are used to using the Eclipse IDE for programming in Java. This document describes how to install and

More information