Lesson 7 Cloud Mood Indicator

Size: px
Start display at page:

Download "Lesson 7 Cloud Mood Indicator"

Transcription

1 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 by the temperature sensor to the cloud storage. In this lesson, students will learn how to use the temperature data uploaded to cloud in lesson five to control and change the colour of the RGB LED light component. Learning Objectives Use cloud storage to download temperature data. Understand and use variables Understand the benefits and drawbacks of cloud storage. Learning Expectations (how learning / progress will be demonstrated) All Download temperature data taken from the CloudProfessor from cloud storage. Most Use variables in their app. Some Explain the benefits and drawbacks of cloud storage. 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 7: Cloud Mood Indicator

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 Arduino Shield into Arduino Leonardo and use the USB cable to connect the CloudProfessor with Arduino Leonardo. Attach the RGB LED light component to port D.. When the CloudProfessor detects the Arduino Leonardo, a notification will appear on your device; click the notification to launch the Arduino Leonardo APP, and then select the CPF Arduino Blockly app. Click on Lesson Press the execute button to enter the control user interface (UI). 5. Press the edit button to enter the program editing page. Edit button Execute button CPF Arduino Blockly app Control user interface (UI) Program editing page Lesson 7: Cloud Mood Indicator

3 Exploring the code (Blockly) Let s explore the code.. Title Name Panel Set (Downloading.): The Title Name Panel Set block displays a message on the screen. In this example it will display a Downloading message to notify the user that the program is retrieving data from the cloud.. Count with:. Set aop_obj to: The count with block executes the same task repeatedly for a specified number of times. The number of times the code is repeated is specified in the to block (). In this example, the code will be repeated 0 times. The Set aop_obj to block creates a variable called aop_obj and stores the JSON object containing the data uploaded in the previous lesson. 4. Set celsius to: The Set celsius to block creates a variable called celsius and stores the contents of Value from the JSON object, which in this case contains the temperature values uploaded in lesson 5 (). 5. If/else if/else; The if/else if/else block controls the colour of the RGB LED based on the temperature value taken from the downloaded JSON object. When the temperature is less than 4 degrees, the RGB LED light will light up blue; when the temperature is between 4~8 degrees, the RGB LED light will light up green; when the temperature is between 8~ degrees, the RGB LED light will light up orange; and when the temperature is over degrees, the RGB LED light will light up red. 6. RGB LED Setting colour with: The RGB LED Setting colour with block sets the colour of the RGB LED. The RGB LED colour can be set to a pre-determined colour () or by manually inputting each of the three red, green and blue values (4) Title Name Panel Set: The Title Name Panel Set block displays a message on the screen. In this example it will display a Downloading finished message to notify the user that the program has finished retrieving data from the cloud. Try creating your own colours by mixing Red, Green and Blue (There are over ten million light colours). Try also changing the interval Delay time(sec) between each colour change. Lesson 7: Cloud Mood Indicator

4 Exploring the code (JavaScript) Let s explore the code.. ui.set( title, Downloading. ); The ui.set( title ) line displays a message on the screen. In this example it will display a Downloading message to notify the user that the program is retrieving data from the cloud.. for (index=; index<=0; index++) { The for() statement executes the same task repeatedly for a specified number of times. The number of times the code is repeated is specified in the first two sections of the for loop (). In this example, the code will be repeated 0 times.. aop.getstore(storeid); aop.getstore() downloads the data from the cloud and then converts the data into JSON format using JSON.parse(). 4. celsius = obj.temperature; celsius = obj.temperature; retrieves the temperature reading downloaded from the cloud and stores the result in a variable called celsius. ui.set("temperature sensor", celsius); reads the Celsius value and displays it on the screen (). 5. If/else if/else; The if/else if/else block controls the colour of the RGB LED based on the temperature value taken from the downloaded JSON object. When the temperature is less than 4 degrees, the RGB LED light will light up blue; when the temperature is between 4~8 degrees, the RGB LED light will light up green; when the temperature is between 8~ degrees, the RGB LED light will light up orange; and when the temperature is over degrees, the RGB LED light will light up red. 6. cpf.set("rgb led"); cpf.set("rgb led"); sets the colour of the RGB LED. The RGB LED colour is set by manually inputting each of the three red, green and blue values (). 7. ui.set("title", "Download finish"); The ui.set("title", "Download finish"); line displays a message on the screen. In this example it will display a Download finished message to notify the user that the program has finished retrieving data from the cloud. Try creating your own colours by mixing Red, Green and Blue (There are over ten million light colours). Try also changing the interval cpf.sleep(000) between each colour change. 4 Lesson 7: Cloud Mood Indicator

5 4 Extension Students to take a screenshot of their code and add comments to explain how it works. 5 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. 6 Homework Students to write up a summary of what they ve learned; students to include screenshots and snippets of their code in their summary. 7 Links Sample weather data from weather stations across the UK: How cloud storage works: Benefits of data logging: 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. 5 Lesson 7: Cloud Mood Indicator

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

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

Design and create an app which uses sequence, selection, repetition and variables. Program, debug and refine the code for their app. 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

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 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

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 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

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

Arduino Programming. Arduino UNO & Innoesys Educational Shield

Arduino Programming. Arduino UNO & Innoesys Educational Shield Arduino Programming Arduino UNO & Innoesys Educational Shield www.devobox.com Electronic Components & Prototyping Tools 79 Leandrou, 10443, Athens +30 210 51 55 513, info@devobox.com ARDUINO UNO... 3 INNOESYS

More information

WEB DEVELOPER BLUEPRINT

WEB DEVELOPER BLUEPRINT WEB DEVELOPER BLUEPRINT HAVE A QUESTION? ASK! Read up on all the ways you can get help. CONFUSION IS GOOD :) Seriously, it s scientific fact. Read all about it! REMEMBER, YOU ARE NOT ALONE! Join your Skillcrush

More information

Spelling-Punctuation-Grammar Subject How will you promote high standards within this module? Term Duration (approx.)

Spelling-Punctuation-Grammar Subject How will you promote high standards within this module? Term Duration (approx.) Term Cycle 1 6 lessons HTML Correct syntax needed for coding to work. Further coding units in Years 8 and 9 can be linked back to the experiences of using HTML. How to use HTML tags to create a range of

More information

PRODUCT CARD. Skriware 3D printing educational ecosystem

PRODUCT CARD. Skriware 3D printing educational ecosystem PRODUCT CARD Skriware 3D printing educational ecosystem 3D MODELS LIBRARY Skrimarket Virtual 3D models library. A cloud solution integrated with MyMiniFactory with 45,000 3D models available to 3D print

More information

Digital Devices in the Digital Technologies curriculum (F-10) Steve Allen VCAA Digital Coding Specialist Teacher

Digital Devices in the Digital Technologies curriculum (F-10) Steve Allen VCAA Digital Coding Specialist Teacher Digital Devices in the Digital Technologies curriculum (F-10) Steve Allen VCAA Digital Coding Specialist Teacher A digital system that students can program: create an algorithm accept user input store

More information

Module 1: Crash Prevention Lesson 3: Weather Information systems Programming Activity Using Arduino Teacher Resource Grade 6-8 Time Required

Module 1: Crash Prevention Lesson 3: Weather Information systems Programming Activity Using Arduino Teacher Resource Grade 6-8 Time Required Module 1: Crash Prevention Lesson 3: Weather Information systems Programming Activity Using Arduino Teacher Resource Grade 6-8 Time Required Weather Information Systems is a 120 minute lesson plan (90

More information

Lab 1: Introductory Project to Breadware

Lab 1: Introductory Project to Breadware 1 Lab 1: Introductory Project to Breadware Exploration of Breadware s IoT Development Tools Overview The goal of this lab is to become familiar with the Internet of Things prototyping tools available in

More information

Educreations. Download Educreations

Educreations. Download Educreations for ipad is a screen recorder with narration. Import documents and images. Annotate the documents/images. Narrate your annotations. Share your recording with others. Download... 1 Launch App... 2 Overview...

More information

Introduction to Programming. Writing an Arduino Program

Introduction to Programming. Writing an Arduino Program Introduction to Programming Writing an Arduino Program What is an Arduino? It s an open-source electronics prototyping platform. Say, what!? Let s Define It Word By Word Open-source: Resources that can

More information

Manual. NB-IoT workshop. Sodaq Date: Author: Jan van Loenen

Manual. NB-IoT workshop. Sodaq Date: Author: Jan van Loenen Manual NB-IoT workshop Sodaq Date: 07-03-2018 Author: Jan van Loenen Unboxing 3 Installation 4 Arduino IDE 4 Add Boards 5 Libraries 6 Blink 7 NB-IoT 9 AT commands 10 All Things Talk 12 Sensors on the NB-IoT

More information

Programming Manual of MYOSA

Programming Manual of MYOSA Programming Manual of MYOSA Basic Information of MYOSA and its working principle. MYOSA board : MYOSA (Make Your Own Sensors Applications) is a plug-and-play, multipurpose, multi-sensor system for learning

More information

Infinite Geometric Series

Infinite Geometric Series Infinite Geometric Series Grade: 11 Subject: Pre- Calculus 11 Unit: Sequences and Series Driving Question: If a sequence has an infinite number of terms, is it possible to determine its sum? Curriculum

More information

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data.

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data. Mac (OS X): Data Backup Guide 6/14/2016 Why: Backing up data should be done on a regular basis, not just when you think it is necessary, as a failure can happen at any time. While there are no set intervals

More information

Guides. Tutorial: A Node-RED dashboard using node-re... dashboard. What is Node RED? 1 of 9 7/29/17, 9:27 AM

Guides. Tutorial: A Node-RED dashboard using node-re... dashboard. What is Node RED? 1 of 9 7/29/17, 9:27 AM Guides Tutorial: A Node-RED dashboard using node-reddashboard by SENSE TECNIC SYSTEMS on MAY 16, 2016 with 4 COMMENTS This is a simple example of reading and visualizing data using the new UI nodes from

More information

Intro to Contemporary Math

Intro to Contemporary Math Intro to Contemporary Math Conditional Probability Intro Department of Mathematics UK Announcement You have a homework assignment due next Monday. Sequences of Experiments Suppose two experiments are performed,

More information

CREE SMARTCAST TECHNOLOGY. SMARTCAST LIGHTING NETWORK WITH BACnet CAPABILITY GUIDE

CREE SMARTCAST TECHNOLOGY. SMARTCAST LIGHTING NETWORK WITH BACnet CAPABILITY GUIDE Welcome to the SmartCast Lighting Network with BACnet Capability Guide! This is the place to come for answers to all your Cree-related BACnet questions. We ll answer them here or point you to other Cree

More information

Input/Output Machines

Input/Output Machines UNIT 1 1 STUDENT BOOK / Machines LESSON Quick Review t Home c h o o l This is an / machine It can be used to make a growing pattern Each input is multiplied by 9 to get the output If you input 1, the output

More information

Using Canvas Features

Using Canvas Features Using Canvas Features Connecting Announcements to SMS Text Messages Canvas has the ability to communicate with the user in a variety of ways. The information will be push-based which means Canvas will

More information

Required Materials. Optional Materials. Preparation

Required Materials. Optional Materials. Preparation Module 1: Crash Prevention Lesson 3: Weather Information systems Programming Activity Using Arduino Teacher Resource Grade 9-12 Time Required: 3 60 minute sessions or 3 hours Required Materials Computers

More information

Logging in & Taking a Course

Logging in & Taking a Course Logging in & Taking a Course The image to the right is an image of our Log in page. To access your training Log in to your account by visiting https://training.ipced.com/ and entering in your username

More information

MATLAB Day Workshop ENGDUINO SUPPORT TEAM -

MATLAB Day Workshop ENGDUINO SUPPORT TEAM - MATLAB Day Workshop ENGDUINO SUPPORT TEAM - SUPPORT@ENGDUINO.ORG 1 Basic Programming In this example, we int to demonstrate the difference in using for-loop and while-loop in programming If you haven t

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

RECO Smart Cam. Quick Start Guide

RECO Smart Cam. Quick Start Guide RECO Smart Cam Quick Start Guide E11074 / Revised Edition V2 / November 2015 NOTE: The screenshots in this Quick Start Guide are for reference only. 2 Hardware Micro USB port MicroSD card slot GPS port

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

Developing an HTML5 Extension for SAP Visual Intelligence (Lumira) Author: Kirubhananth Chellam

Developing an HTML5 Extension for SAP Visual Intelligence (Lumira) Author: Kirubhananth Chellam Developing an HTML5 Extension for SAP Visual Intelligence (Lumira) Author: Kirubhananth Chellam June 6th, 2013 TABLE OF CONTENTS Contents INTRODUCTION... 2 DISCLAIMER... 2 AUTHOR BIO... 2 A. Creating the

More information

Note: For each partner service, there is a specific technical note on the procedure to follow. This is only general information.

Note: For each partner service, there is a specific technical note on the procedure to follow. This is only general information. Cloud Partner Services General information By establishing the HCA Cloud, it becomes possible for HCA to partner with other companies and integrate their products into your HCA design. Unlike older products,

More information

CSCE 120: Learning To Code

CSCE 120: Learning To Code CSCE 120: Learning To Code Processing Data II Hacktivity 10.2 Introduction Prior to engaging in this hacktivity, you should have completed all of the pre-class activities as outlined in this module. At

More information

Lesson 1 - Getting Started

Lesson 1 - Getting Started Expected Time: 45-60 minutes Lesson 1 - Getting Started Aspect of National Curriculum Programme of Study covered: KS2 objective a - Design, write and debug programs that accomplish specific goals, including

More information

Lesson 16 Prototyping Online Components Weather Web APIs for usage in a Phone

Lesson 16 Prototyping Online Components Weather Web APIs for usage in a Phone Lesson 16 Prototyping Online Components Weather Web APIs for usage in a Phone 1 Weather Application UIs, APIs and web API interactions Number of APIs can be mashed to get a the desired Web Application

More information

Using PBworks in the Classroom/Library. What is a wiki? Wiki means quick or fast in Hawaiian. How to use a wiki for your classroom/library

Using PBworks in the Classroom/Library. What is a wiki? Wiki means quick or fast in Hawaiian. How to use a wiki for your classroom/library Using PBworks in the Classroom/Library What is a wiki? Wiki means quick or fast in Hawaiian A wiki is a web site that lets any visitor become a participant: you can create or edit the actual site contents

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

HOW TO SET HOMEWORK ON FIREFLY

HOW TO SET HOMEWORK ON FIREFLY HOW TO SET HOMEWORK ON FIREFLY HOW TO SET HOMEWORK ON FIREFLY How to set homework on Firefly using a desktop 1. In the user bar, select Set a New Task: 2. Start typing the name of the student or group

More information

Last updated: 27 July 2015 Changes & New Features in VLE 2015/16 v1.0

Last updated: 27 July 2015 Changes & New Features in VLE 2015/16 v1.0 Changes & New Features in VLE 2015/16 VLE 2015/16 is based on Moodle 2.8. This version is more recent compared to the one used for VLE 2014/15 (Moodle 2.6). The general user experience is similar to that

More information

Lesson 1 Key-Terms Meanings: Web Connectivity of Devices and Devices Network

Lesson 1 Key-Terms Meanings: Web Connectivity of Devices and Devices Network Lesson 1 Key-Terms Meanings: Web Connectivity of Devices and Devices Network 1 Application Application: A software (S/W) for an application, such as, creating and sending an SMS, measuring and sending

More information

MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:-

MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:- MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:- This is Navigation bar where you have 5 Menus and App Name. This Section I will discuss in brief in the Navigation Bar Section.

More information

EMPOWER Course Calendar

EMPOWER Course Calendar 1 Contents 2 Technology Mobility... 2 3 Technology Cloud... 3 4 Industry Orientation Courses - Circuit and Non Circuit Branches... 4 5 Industry Bridge Courses - Mechanical, Electrical and Instrumentation...

More information

Geometry with Dash. Differentiated Task Cards Scaffolded On Level Challenge Hint Think Beyond. Michelle Eckstein

Geometry with Dash. Differentiated Task Cards Scaffolded On Level Challenge Hint Think Beyond. Michelle Eckstein Geometry with Dash Differentiated Task Cards Scaffolded On Level Challenge Hint Think Beyond Michelle Eckstein Common Core Standards CCSS.MATH.CONTENT.3.MD.D.8 Geometric measurement: recognize perimeter.

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

How to use Microsoft OneDrive

How to use Microsoft OneDrive How to use Microsoft OneDrive Instructions for Saint Paul College Students Table of Content What is OneDrive?... 2 How do I access OneDrive?... 2 How do I upload documents to OneDrive?... 3 How do I create

More information

Product Specification. Design Team C, COMP 410 Spring 2016

Product Specification. Design Team C, COMP 410 Spring 2016 Product Specification Design Team C, COMP 410 Spring 2016 1. Introduction 1.1. Purpose This document defines the high level specifications and architecture of our system as well as the interactions between

More information

RoastLogger Arduino/TC4 driver installation for Windows 9/10/13 By John Hannon (JackH) at Homeroasters.org

RoastLogger Arduino/TC4 driver installation for Windows 9/10/13 By John Hannon (JackH) at Homeroasters.org This procedure was written for the Arduino Uno board with the TC4 shield. Please check the Arduino site for software if you are using a different model. I have not tested it, but this procedure should

More information

Lesson 13: Converting Between Fractions and Decimals Using Equivalent Fractions

Lesson 13: Converting Between Fractions and Decimals Using Equivalent Fractions Lesson 13: Converting Between and Decimals Using Equivalent Student Outcomes Students understand that the context of a real-life situation often determines whether a rational number should be represented

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

Training Sales Support

Training Sales Support PO Box 940 BLACKWOOD SA 5051 www.automationdistributors.com.au Installation Instructions for Omni Z-Wave Interface Plugin for Vera Controllers UI7 Serial Connection Kit Thank you for purchasing the Omni

More information

OneDrive for Students. Pilot Information Pack

OneDrive for Students. Pilot Information Pack OneDrive for Students Pilot Information Pack Information for Students Your OneDrive for Business library will allow you to create, edit and save content at any time, on any device, and to share that content

More information

Installing. Download the O365 suite including OneDrive for Business: 1. Open the Google Play Store on your Android device

Installing. Download the O365 suite including OneDrive for Business: 1. Open the Google Play Store on your Android device Mobile Microsoft OneDrive for Business is a part of Office 365 (O365) and is your private professional document library, it uses O365 to store your work files in the cloud and is designed to make working

More information

This course maps to the exam.

This course maps to the exam. About this course This course you will learn advanced programming practices and techniques that will help you develop Windows Store apps. In this course, you will learn how design and develop Windows Store

More information

User manual for the CRTM LPWA

User manual for the CRTM LPWA User manual for the CRTM 3000 - LPWA September 2018 CONTENTS 1. Introduction 3 2. Specifications 3 a. 3 b. MTinfo 3000 minimum requirements 3 3. Conditions and safety instructions 4 4. MTinfo 3000 features

More information

SEG-X3 Smart Gateway. Quick Start Guide

SEG-X3 Smart Gateway. Quick Start Guide SEG-X3 Smart Gateway Quick Start Guide 1. Introduction The SEG-X3 Smart Gateway acts as a central platform for your smart home system. It allows you to add ZigBee devices into the system while at the same

More information

Table of Contents. Chapter 1 Introduction Chapter 2 Quick Install... 7

Table of Contents. Chapter 1 Introduction Chapter 2 Quick Install... 7 AVA-88 WELCOME Congratulations on purchasing the AVA-88. The AVA-88 integrates multiple complicated control, automation and internet protocols into one simple plug-and-play device. It is a central controller

More information

Computer Interface System 2015

Computer Interface System 2015 Computer Interface System 2015 User Manual BARTLETT Instrument Co. 1032 Avenue H Fort Madison, IA 52627 319-372-8366 www.bartinst.com 2 Overview In Figure 1 below, you ll find a description for each aspect

More information

Millburn Academy. Numeracy Across Learning. Name. Department

Millburn Academy. Numeracy Across Learning. Name. Department Millburn Academy Numeracy Across Learning Name Department Introduction Aim of this Booklet This booklet has been produced as the first step towards teaching numeracy across the curriculum in a consistent

More information

IR Learner Quick Start Guide

IR Learner Quick Start Guide IR Learner Quick Start Guide This guide relates to CommandFusion IR Learner Software Version 1.0.2.0 The CommandFusion IR Learner contains an IR receiver for learning new remote control functions and an

More information

Decision Structures CSC1310. Python Programming, 2/e 1

Decision Structures CSC1310. Python Programming, 2/e 1 Decision Structures CSC1310 Python Programming, 2/e 1 Simple Decisions Decision structures, which are statements that allow a program to execute different sequences of instructions for different cases,

More information

Lesson 10. Circuit Boards and Devices Ethernet and Wi-Wi Connectivity with the Internet

Lesson 10. Circuit Boards and Devices Ethernet and Wi-Wi Connectivity with the Internet Lesson 10 Circuit Boards and Devices Ethernet and Wi-Wi Connectivity with the Internet 1 Connecting Arduino USB to Internet Arduino board IDE supports USB. USB port connects to a mobile or computer or

More information

Unit 3.2: Fractions, Decimals and Percent Lesson: Comparing and Ordering Fractions and Decimals

Unit 3.2: Fractions, Decimals and Percent Lesson: Comparing and Ordering Fractions and Decimals Unit 3.2: Fractions, Decimals and Percent Lesson: Comparing and Ordering Fractions and Decimals Objectives: Students will use benchmarks, place value and equivalent fractions to compare and order fractions

More information

1.Introduction to ThingSpeak platform

1.Introduction to ThingSpeak platform IoT laboratory 2. In the IoT laboratory 1. a sensors and an actuator were connected to the Internet in order to push data to an application and take control for the device. This time, at the laboratory

More information

Lesson 14: Graph of a Linear Equation Horizontal and Vertical Lines

Lesson 14: Graph of a Linear Equation Horizontal and Vertical Lines Lesson 14: Graph of a Linear Equation Horizontal and Vertical Lines Student Outcomes Students graph linear equations in standard form, 0), that produce a horizontal or a vertical line. Lesson Notes The

More information

MicroBot Push User Guide

MicroBot Push User Guide MicroBot Push User Guide Troubleshooting 24 My Microbot App does not detect my MicroBot Push 24 MicroBot Push keeps disconnecting 25 MicroBot Push is not updating 25 Getting Started 2 Meet MicroBot Push

More information

Lesson 5 Nimbits. Chapter-6 L05: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 5 Nimbits. Chapter-6 L05: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 5 Nimbits 1 Cloud IoT cloud-based Service Using Server at the Edges A server can be deployed at the edges (device nodes) which communicates the feeds to the cloud service. The server also provisions

More information

mi:node User Manual Element14 element14.com/minode 1 User Manual V3.1

mi:node User Manual Element14 element14.com/minode 1 User Manual V3.1 mi:node User Manual Element14 element14.com/minode 1 Table of Contents 1) Introduction... 3 1.1 Overview... 3 1.2 Features... 3 1.3 Kit Contents... 3 2) Getting Started... 5 2.1 The Connector Board...

More information

Lesson 1. Introduction to Programming OBJECTIVES

Lesson 1. Introduction to Programming OBJECTIVES Introduction to Programming If you re new to programming, you might be intimidated by code and flowcharts. You might even wonder how you ll ever understand them. This lesson offers some basic ideas and

More information

Transformations of Exponential Functions

Transformations of Exponential Functions 7-2 Transformations of Exponential Functions PearsonTEXAS.com SOLVE IT! f and g are exponential functions with the same base. Is the graph of g a compression, a reflection, or a translation of the graph

More information

Getting Started Guide for Physics Students

Getting Started Guide for Physics Students Access your Kinetic physics digital text Getting Started Guide for Physics Students If the product is already installed on your computer, simply click on the product icon on the desktop to launch the product.

More information

Controlling a fischertechnik Conveyor Belt with Arduino board

Controlling a fischertechnik Conveyor Belt with Arduino board EXPERIMENT TITLE: Controlling a fischertechnik Conveyor Belt with Arduino board PRODUCTS USED: CHALLENGE: AUTHOR: CREDITS: Interface and control a conveyor belt model (24 Volts, fischertechnik) with an

More information

Environmental Control and Automatic Imaging System for Miniature Greenhouses. Date Version Description. 02/21/

Environmental Control and Automatic Imaging System for Miniature Greenhouses. Date Version Description. 02/21/ Project Plan CprE / EE 491 - Senior Design Environmental Control and Automatic Imaging System for Miniature Greenhouses Advisor : Liang Dong Client : Agronomy Department and Plant Sciences Institute Group:

More information

LoFlo Plug & Play Capnography for Alice PSG Technical

LoFlo Plug & Play Capnography for Alice PSG Technical G3 Training Module LoFlo Plug & Play Capnography for Alice PSG Technical * Note: Screenshots are from the Sleepware G3 Software and Online Help. Page 2 TABLE OF CONTENTS WHAT IS CAPNOGRAPHY?... 4 REORDER

More information

How to View Autodesk Inventor Publisher Assembly Instructions in a Curriculum Course

How to View Autodesk Inventor Publisher Assembly Instructions in a Curriculum Course How to View Autodesk Inventor Publisher Assembly Instructions in a Curriculum Course Introduction This document provides procedures to transfer Autodesk Inventor Publisher files to a mobile device for

More information

MediaQ. Figure 1 MediaQ Home Screen

MediaQ. Figure 1 MediaQ Home Screen MediaQ 1 Introduction MediaQ is an online media management framework that provide services to collect, organize and share user-generated mobile videos/images with automatically tagged geo-spatial metadata.

More information

Specific Learner Expectation-Explore and Investigate: Specific Learner Expectation-Explore and Investigate:

Specific Learner Expectation-Explore and Investigate: Specific Learner Expectation-Explore and Investigate: Lesson #1- Beginning Coding: Blockly Coding Games- November 28, 2017, December 5, 2017, and December 12, 2017-9:45-10:30am (45 Minutes Each Day) [*Please Note: This is a three-part lesson. As such, the

More information

Marvin Hookup Guide. Your IoT application with Marvin and MachineQ

Marvin Hookup Guide. Your IoT application with Marvin and MachineQ Marvin Hookup Guide Your IoT application with Marvin and MachineQ Overview 1. 2. 3. 4. Program Marvin using Arduino, please install via the link on the right>> Send data over LoRa Routing your data through

More information

OFFICE 365 FOR STUDENTS O VERVIEW OF OFFICE 36 5 FOR STUDENTS. Passero, Denise Author. Overview

OFFICE 365 FOR STUDENTS O VERVIEW OF OFFICE 36 5 FOR STUDENTS. Passero, Denise Author. Overview O VERVIEW OF OFFICE 36 5 FOR STUDENTS Use this overview to get acquainted with Office 365 for students. Passero, Denise Author OFFICE 365 FOR STUDENTS Overview Overview of Office 365 for Students Downloading

More information

User Guide - ILD Parent mobile app Designed for parental engagement By Interactive Learning Diary

User Guide - ILD Parent mobile app Designed for parental engagement By Interactive Learning Diary User Guide - ILD Parent mobile app Designed for parental engagement By Interactive Learning Diary Summary The ILD Parent mobile app can be downloaded from the Apple, Android and Windows app stores using

More information

Please follow the simple instructions below and throughout this PDF to maintain or update your information.

Please follow the simple instructions below and throughout this PDF to maintain or update your information. The International Design Exhibition has partnered with Map Your Show to provide attendees with an Interactive Floor Plan & Online Planner to assist them with researching exhibitors and planning their time

More information

Coding: Beyond Learning Microsoft in Education

Coding: Beyond Learning Microsoft in Education Coding: Beyond Learning Microsoft in Education WeSpeakCode Week: 23-29 March 2015 What? Complete Technology Education Solution (for Students, Teachers, Staff) Why? Develop Creativity Establish computational

More information

RB-Dfr-12 DFRobot URM04 v2.0 Ultrasonic Sensor

RB-Dfr-12 DFRobot URM04 v2.0 Ultrasonic Sensor RB-Dfr-12 DFRobot URM04 v2.0 Ultrasonic Sensor URM04 is developed based upon our popular URM37 ultrasonic sensor. The RS485 interface allows a number of sensors working together. Up to 32 URM04 may be

More information

BIL101E: Introduction to Computers and Information systems Lecture 8

BIL101E: Introduction to Computers and Information systems Lecture 8 BIL101E: Introduction to Computers and Information systems Lecture 8 8.1 Algorithms 8.2 Pseudocode 8.3 Control Structures 8.4 Decision Making: Equality and Relational Operators 8.5 The if Selection Structure

More information

WeatherMation LIVE Alerts and Notifications Module

WeatherMation LIVE Alerts and Notifications Module WeatherMation LIVE Alerts and Notifications Module Version 1.6.3 28/03/2017 Environdata Australia Pty Ltd 42-44 Percy Street Warwick Queensland 4370 Australia Phone: (07) 4661 4699 Fax: (07) 4661 2485

More information

Math 6 Long Range Plans Bill Willis. Strand: NUMBER Develop number sense. Textbook: Math Makes Sense 6

Math 6 Long Range Plans Bill Willis. Strand: NUMBER Develop number sense. Textbook: Math Makes Sense 6 Math 6 Long Range Plans 2012-2013 Bill Willis Rationale: Based upon the mathematics program of studies, our learning environment will value and respect the diversity of students experiences and ways of

More information

Remote Area Monitoring Robot

Remote Area Monitoring Robot IJSTE - International Journal of Science Technology & Engineering Volume 3 Issue 09 March 2017 ISSN (online): 2349-784X Muthukkumar R Manikandan P Sudalai Muthu Vignesh B Sivakumar S Assistant Professor

More information

TA0297 WEMOS D1 R2 WIFI ARDUINO DEVELOPMENT BOARD ESP8266

TA0297 WEMOS D1 R2 WIFI ARDUINO DEVELOPMENT BOARD ESP8266 TA0297 WEMOS D1 R2 WIFI ARDUINO DEVELOPMENT BOARD ESP8266 Contents 1. Overview TA0297... 3 2. Getting started:... 3 2.1. What is WeMos D1 R2 Wifi Arduino Development Board?... 3 2.2. What is IDUINO UNO?...

More information

Create The Internet of Your Things

Create The Internet of Your Things Create The Internet of Your Things A developer introduction to Microsoft s approach to the Internet of Things Laurent Ellerbach laurelle@microsoft.com Technical Evangelist Lead Microsoft Central and Eastern

More information

Capstone Project Proposal

Capstone Project Proposal School of Engineering Department of Electrical and Computer Engineering Capstone Project Proposal Project Number: S16-033 Project Title: Guardian: Continuous Health Rate Monitoring Project term: Spring

More information

60 minute physics. Digital. Nine hands-on activities: with GCSE Physics curriculum links. Digital. Electric circuits.

60 minute physics. Digital. Nine hands-on activities: with GCSE Physics curriculum links. Digital. Electric circuits. 60 minute physics Nine hands-on activities: with GCSE Physics curriculum links Mapping data Electric circuits Machines & electromagnets Flight & movement Light Storing energy Forces & motion Changing states

More information

PanL Home Automation Hub

PanL Home Automation Hub anl Home Automation Hub The anl Home Automation Hub demonstration is a Bridgetek product demonstration which showcases Bridgetek s proprietary light-weight IoT framework for home automation and control.

More information

Session 4 Logic Design. >_ {Code4Loop}; Roochir Purani

Session 4 Logic Design. >_ {Code4Loop}; Roochir Purani Session 4 Logic Design >_ {Code4Loop}; Roochir Purani RECAP from last session - Computers Overview Homework Review /Questions Understanding of Logic and Logical Thinking for Programming Why should we think

More information

UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS

UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS UNDERSTANDING PROBLEMS AND HOW TO SOLVE THEM BY USING COMPUTERS INTRODUCTION TO PROBLEM SOLVING Introduction to Problem Solving Understanding problems Data processing Writing an algorithm CONTINUE.. Tool

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

Innovative Electronics for a Changing World INDEX

Innovative Electronics for a Changing World INDEX Innovative Electronics for a Changing World INDEX 1. SYSTEM DESCRIPTION 2. BOARD CONNECTIONS terminals and indicators 3. CONNECTION DIAGRAM 4. START UP GUIDE and passwords 5. HOME PAGE 6. STATUS PAGE 7.

More information

MOC 20482C: Advanced Windows Store App Development Using HTML5 and JavaScript

MOC 20482C: Advanced Windows Store App Development Using HTML5 and JavaScript MOC 20482C: Advanced Windows Store App Development Using HTML5 and JavaScript Course Overview This course provides students with the knowledge and skills to utilize Windows Store Apps by using both HTML5

More information

(SeTracker2)User guide

(SeTracker2)User guide (SeTracker2)User guide Please read the manual carefully before using the product, in order to go through the installation and setup. The color of the product is subject to the real product. steps before

More information