Raspberry Pi, SenseHat and Weather Service

Size: px
Start display at page:

Download "Raspberry Pi, SenseHat and Weather Service"

Transcription

1 Overview In this lab, you will send environmental information from your RaspberryPi + SenseHat to IoT Platform and display it on a dashboard. You will also use the weather service to check the weather for your area and display weather status on the Sense Hat. It is assumed you have already setup your RaspberryPi and Sense Hat and have Node-RED installed and running on it. Note: some of the tasks below contain a shortened link to the Bluemix dashboard that opens the US South Region. If you wish to use the UK region instead then substitute the link below US South: UK: Copyright IBM Corp. 2017

2 Task 1. Deploy a New Application In this task, you will deploy a new Node-RED Starter Application and connect it to an existing IoT Platform. If you prefer you can deploy a new IoT Platform Starter. You will also add a new Weather Company service to the application. 1. Deploy new application: a. Open your Bluemix dashboard: b. In the All Apps section, click Create App:: c. In the Search bar, type node-red d. Click the Node-RED Starter Boilerplate: TIP: TIP: e. Give the new application a unique name Suggestion: IoT-BB-SenseHat-Weather-YourInitials+DOB f. Click Create g. Wait for the application to deploy Check the logs and look for the message Started Flows 2. Connect an existing IoT Platform Service a. Click the Connections tab in the sidebar: Raspberry Pi, SenseHat and Weather Service - 2 Copyright IBM Corp. 2017

3 b. Click Connect New: c. In the Search field, type weat d. Click the Weather Company Data service: e. Click Create: Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 3

4 f. Click Restage to restage the application: g. Wait until the application has finished restaging and is running: 3. Connect an existing IoT Platform: a. Click Connect existing: b. Click an existing IoT Platform service: c. Click Connect: d. Click Restage e. Wait for the application to finish restaging 4. Open the IoT Platform: a. Click the IoT Platform service to open it: Raspberry Pi, SenseHat and Weather Service - 4 Copyright IBM Corp. 2017

5 b. Click Launch Dashboard 5. Add a new Device Type a. In the sidebar, click Devices: Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 5

6 b. Click the Device Types tab: c. Click Create Type: d. Click Create device type: e. In the Name field, type SenseHAT: Raspberry Pi, SenseHat and Weather Service - 6 Copyright IBM Corp. 2017

7 f. This is all the information required so click Next a few times until it turns into Create g. Click Create 6. Create a new device: a. On the Devices page, click Browse: b. Click Add Device: c. In the Choose Device Type field, select SenseHAT: d. At the bottom of the page, click Next e. In the Device ID field, type WeatherDisplay: Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 7

8 TIP: You can use any ID you like you will enter the same device type and device id into Node-RED on the Pi in a few minutes. f. Click Next g. There is no Metadata so click Next h. In the Provide a token (optional) field, type TIP: You can use any token you like as long as you can remember it. If you do not enter one then one will be generated for you which will be a very long string which you must record. Once the token has been generated and you close this page you can never get back to it. i. Click Next j. Click Add k. Record the Organization ID, Device Type, Device ID and token you will need these in a moment on your Pi: Task 2. Create a Flow on Raspberry Pi In this task, you will create a simple flow on your Raspberry Pi to read environmental information and send the data to the IoT Platform instance you created/connected to in Task Create a flow: a. Make sure Node-RED is running on your Raspberry Pi. b. Open a new web browser tab and navigate to the address of your Pi Flow editor for example: Raspberry Pi, SenseHat and Weather Service - 8 Copyright IBM Corp. 2017

9 c. From the palette, drag on a Sense HAT input node: d. Double-click the new node to edit it e. Clear Motion events f. Clear Joystick events: g. Click Done h. Drag on a debug node and connect it to the Sense HAT node: 2. Deploy and Test: a. Click Deploy b. Note the Sense HAT information in the debug panel: 3. Send data to IoT Platform: Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 9

10 a. From the palette, drag on a Watson IoT output node: b. Double-click the new node to edit it: c. In the Connect as section, select Registered: d. Click the pencil icon in the Credentials field to add new credentials: e. Enter the device credentials you recorded in the previous step: Raspberry Pi, SenseHat and Weather Service - 10 Copyright IBM Corp. 2017

11 TIP: Be careful copying and pasting from the web dialog in IoT platform it is very easy to copy additional characters f. Click Add g. Click Done h. Connect the SenseHAT node to the Watson IoT node: 4. Deploy and Test a. Click Deploy b. Switch back to the Watson IoT Platform tab c. You should now be seeing SenseHAT data in IoT Platform: Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 11

12 5. Unguided Exercise: a. Create Boards in the IoT Platform to display the Sense HAT data TIP: You will need to create a schema in IoT Platform. If you are unsure how to do this see the IoT Bootcamp lab on Sensor Data Visualization Task 3. Obtain Weather Data In this task, you will get the weather data from the Weather Service using location data from your home town. You will need the latitude and longitude which can be obtained from this website: You will then publish some of the returned weather data to IoT Platform and modify the application on the Pi to subscribe to it such that the SenseHAT displays different colours based on the outside temperature. 1. Obtain your location co-ordinates: a. Open a new web browser tab and navigate to: b. Enter your location and click Search: Raspberry Pi, SenseHat and Weather Service - 12 Copyright IBM Corp. 2017

13 c. Record the co-ordinates reported: 2. Add a flow a. Return to the Bluemix tab b. Open the Node-RED Flow Editor in the application you deployed on Bluemix c. From the palette, drag on a weather insights node: d. Double-click the new node to edit it e. In the Service field, select Current Observations f. In the Location field, paste in the co-ordinates you obtained from the previous step: TIP: If you copy and paste be sure to remove the space between the longitude and latitude Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 13

14 g. Drag on a debug node and change its Output to msg.observation TIP: Check the Info tab for the node to see the other options h. Drag on an inject node and connect the nodes as shown below: 3. Deploy and Test: a. Click Deploy b. Activate the inject node and observe the results in the output window: Raspberry Pi, SenseHat and Weather Service - 14 Copyright IBM Corp. 2017

15 4. Separate temperature data: a. From the palette, drag on a change node b. Double-click the new node to edit it c. In the Name field, type Get Temp d. In the to field, change the type to msg e. In the to field, type observation.temp: Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 15

16 f. Click Done g. Connect the weather insights node to the change node: 5. Publish Command IoT Platform: a. From the palette, drag on an ibmiot output node b. Double-click the new node to edit it c. In the Authentication field, select Bluemix Service d. In the Output Type field, select Device Command e. In the Device Type field, type SenseHAT f. In the Device Id field, type WeatherDisplay g. In the Command Type field, type setdisplay h. In the Data section, type {} TIP: The Data section will be overridden by the msg.payload Raspberry Pi, SenseHat and Weather Service - 16 Copyright IBM Corp. 2017

17 i. Click Done j. Connect the iot output node to the change node: 6. Publish at predefined intervals: a. Double-click the inject node to edit it b. In the Repeat field, select interval c. Change the interval to default as every 10 seconds Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 17

18 TIP: In a real system, you would only need to publish every few minutes/hours or even longer depending on the need. In the free version, you are only allowed 10 calls per minute. d. Click Done TIP: If you wish to test the flow before switching to the Pi simply add an iot input node and subscribe to the SenseHAT commands: Raspberry Pi, SenseHat and Weather Service - 18 Copyright IBM Corp. 2017

19 Task 4. Set the SenseHAT Display for Current Weather Conditions In this task, you will modify the flow to subscribe to commands from the IoT Platform and change the color of messages on the SenseHAT depending on current external temperature. 1. Subscribe to Weather commands: a. Switch to the Node-RED Flow Editor on your Raspberry Pi b. From the palette, drag on a Watson IoT input node: c. Double-click the new node to edit it d. In the Commands field, select specify command: e. In the Command field, type setdisplay: TIP: Remember these are still MQTT topics so you could have a topic tree and subscribe to specific commands as well as trees / branches f. Click Done 2. Process the command payload: Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 19

20 a. Open the supplied weathercheck.txt file in a text editor b. Copy all the text c. In the Node-RED Flow on your Pi, click the burger menu button and select Import à Clipboard: d. Paste in the copied text e. Click Import: f. Left-click on the flow canvas to place the new nodes Raspberry Pi, SenseHat and Weather Service - 20 Copyright IBM Corp. 2017

21 g. Connect the new switch node to the iot input node you just created: 3. Deploy and Test a. Click Deploy b. The SenseHAT should now display the current temperature using a colour that reflects whether it is warm or cold 4. Unguided exercise: a. Try building your own weather station dashboard b. Try storing the data in cloudant / dash so that later you can build an app to read that data at faster speeds and get time-lapse weather data for use in demos! Copyright IBM Corp Raspberry Pi, SenseHat and Weather Service - 21

22 Raspberry Pi, SenseHat and Weather Service - 22 Copyright IBM Corp. 2017

IoT Software Platforms

IoT Software Platforms Politecnico di Milano Advanced Network Technologies Laboratory IoT Software Platforms in the cloud 1 Why the cloud? o IoT is about DATA sensed and transmitted from OBJECTS o How much data? n IPV6 covers

More information

Real-Time Big Data Processing with Azure

Real-Time Big Data Processing with Azure Real-Time Big Data Processing with Azure Lab 2 - Getting Started with IoT Hubs Overview In this lab, you will create an Azure IoT Hub and use it to collect data from a client application. What You ll Need

More information

User Guide. TotalGuide xd for ipad. User Guide FOR INTERNAL USE ONLY - NOT FOR DISTRIBUTION TO CONSUMERS OR THIRD PARTIES

User Guide. TotalGuide xd for ipad. User Guide FOR INTERNAL USE ONLY - NOT FOR DISTRIBUTION TO CONSUMERS OR THIRD PARTIES TotalGuide xd for ipad User Guide FOR INTERNAL USE ONLY - NOT FOR DISTRIBUTION TO CONSUMERS OR THIRD PARTIES LEGAL NOTICE Copyright 2014 Rovi Corporation. All rights reserved. TotalGuide xd, i-guide and

More information

KEPServerEX IoTGateway to Azure IoT Hub. Initial Setup and Configuration

KEPServerEX IoTGateway to Azure IoT Hub. Initial Setup and Configuration (7) /8/208 KEPServerEX IoTGateway to Azure IoT Hub Initial Setup and Configuration 2 (7) /8/208 Introduction This document is intended to server as a basic guide on configuring the KEPServerEX IoT Gateway

More information

Chunghwa Telecom Laboratories. CHT IoT Smart Platform and Ameba. Two-Way Communication Application. Case Instruction Document

Chunghwa Telecom Laboratories. CHT IoT Smart Platform and Ameba. Two-Way Communication Application. Case Instruction Document Chunghwa Telecom Laboratories CHT IoT Smart Platform and Ameba Two-Way Communication Application Case Instruction Document Edited by Smart IoT Institute kemin 2017/3/6 Chunghwa Telecom Smart Connection

More information

Casambi App User Guide

Casambi App User Guide Casambi App User Guide Version 1.5.4 2.1.2017 Casambi Technologies Oy Table of contents 1 of 28 Table of contents 1 Smart & Connected 2 Using the Casambi App 3 First time use 3 Taking luminaires into use:

More information

Cisco Spectrum Expert Software Overview

Cisco Spectrum Expert Software Overview CHAPTER 5 If your computer has an 802.11 interface, it should be enabled in order to detect Wi-Fi devices. If you are connected to an AP or ad-hoc network through the 802.11 interface, you will occasionally

More information

User Manual for ICP DAS WISE Monitoring IoT Kit -Microsoft Azure IoT Starter Kit-

User Manual for ICP DAS WISE Monitoring IoT Kit -Microsoft Azure IoT Starter Kit- User Manual for ICP DAS WISE Monitoring IoT Kit -Microsoft Azure IoT Starter Kit- [Version 1.0.2] Warning ICP DAS Inc., LTD. assumes no liability for damages consequent to the use of this product. ICP

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

University of Cambridge Computing Service EndNote Basic (Online) for Bibliographies Rosemary Rodd 23 May 2014

University of Cambridge Computing Service EndNote Basic (Online) for Bibliographies Rosemary Rodd 23 May 2014 University of Cambridge Computing Service EndNote Basic (Online) for Bibliographies Rosemary Rodd 23 May 2014 EndNote Basic is a lite version of the reference management program EndNote. It is browserbased

More information

WindData Explorer User Manual

WindData Explorer User Manual WindData Explorer User Manual Revision History Revision Date Status 1 April 2014 First Edition Contents I Framework 4 1 Introduction 5 2 System Requirements 5 3 System Architecture 5 4 Graphical User Interface

More information

Android ManageMyTVs Application User Guide Version 3.0

Android ManageMyTVs Application User Guide Version 3.0 Android ManageMyTVs Application User Guide Version 3.0 IPTV Middleware with Android Application Page 1 ManageMyTVs Application 1. To use the ManageMyTVs application, select the ManageMyTVs icon from the

More information

Main menu Top controls

Main menu Top controls User guide V 1.0 Main operating mode toggle. Switches between Video camera (Camera icon), Time-lapse (Clock icon) and Broadcast (Globe icon) modes. Main menu Top controls Push volume buttons to startor

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

How to use EndNote? Training. Faculty of Fisheries and Protection of Waters USB Academic Library of USB March 26, 2015

How to use EndNote? Training. Faculty of Fisheries and Protection of Waters USB Academic Library of USB March 26, 2015 How to use EndNote? Training Faculty of Fisheries and Protection of Waters USB Academic Library of USB March 26, 2015 EndNote X7 manual http://endnote.com/training/guide/windows What is new in EndNote

More information

Using SignalTap II in the Quartus II Software

Using SignalTap II in the Quartus II Software White Paper Using SignalTap II in the Quartus II Software Introduction The SignalTap II embedded logic analyzer, available exclusively in the Altera Quartus II software version 2.1, helps reduce verification

More information

Colour Features in Adobe Creative Suite

Colour Features in Adobe Creative Suite Colour Features in Adobe Creative Suite HSB Based on the human perception of color, the HSB model describes three fundamental characteristics of color: Hue, Saturation, Brightness Hue Color reflected from

More information

QUICK-START GUIDE LET S JUMP RIGHT IN

QUICK-START GUIDE LET S JUMP RIGHT IN QUICK-START FEATURES GUIDE LET S JUMP RIGHT IN TABLE OF OF CONTENTS INTRODUCING Introduction Page TV Basics Pages 4-6 Remote Control Map Turning Your TV and Receiver On and Off Changing Channels: Remote

More information

Mendeley Basics. Get Mendeley. Get Articles and Documents into Mendeley. Import Citations from a Website

Mendeley Basics. Get Mendeley. Get Articles and Documents into Mendeley. Import Citations from a Website Mendeley Basics Get Mendeley 1. Go to www.mendeley.com 2. Create an online account and download the software. Use your MIT email address to get extra storage with our institutional account. 3. Open Mendeley

More information

User Guide. c Tightrope Media Systems Applies to Cablecast Build 46

User Guide. c Tightrope Media Systems Applies to Cablecast Build 46 User Guide c Tightrope Media Systems Applies to Cablecast 6.1.4 Build 46 Printed September 8, 2016 http://www.trms.com/cablecast/support 2 Contents I Getting Started 5 1 Preface 6 1.1 Thank You..........................

More information

EndNote Web. Quick Reference Card THOMSON SCIENTIFIC

EndNote Web. Quick Reference Card THOMSON SCIENTIFIC THOMSON SCIENTIFIC EndNote Web Quick Reference Card Web is a Web-based service designed to help students and researchers through the process of writing a research paper. ISI Web of Knowledge, EndNote,

More information

DSP Laboratory: Analog to Digital and Digital to Analog Conversion *

DSP Laboratory: Analog to Digital and Digital to Analog Conversion * OpenStax-CNX module: m13035 1 DSP Laboratory: Analog to Digital and Digital to Analog Conversion * Erik Luther This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution

More information

Analyzing and Saving a Signal

Analyzing and Saving a Signal Analyzing and Saving a Signal Approximate Time You can complete this exercise in approximately 45 minutes. Background LabVIEW includes a set of Express VIs that help you analyze signals. This chapter teaches

More information

User Guide. c Tightrope Media Systems Applies to Cablecast Build 1055

User Guide. c Tightrope Media Systems Applies to Cablecast Build 1055 User Guide c Tightrope Media Systems Applies to Cablecast 6.0.0 Build 1055 Printed September 17, 2015 http://www.trms.com/cablecast/support 2 Contents I Getting Started 5 1 Preface 6 1.1 Thank You..........................

More information

Downloading free Duluth Public Library e-books to your Sony Reader

Downloading free Duluth Public Library e-books to your Sony Reader Downloading free Duluth Public Library e-books to your Sony Reader This is a step-by-step instruction guide for loading free library e-books onto a Sony e-reading device. Library e-books must first be

More information

Members QUICK REFERENCE GUIDE

Members QUICK REFERENCE GUIDE QUICK REFERENCE GUIDE Do you want to join a TimeBank? Here's how you can use the Web-based software, Community Weaver.0 developed by TimeBanks, USA to become a new TimeBank member. Join A Timebank Go the

More information

Harmony Ultimate. User Guide

Harmony Ultimate. User Guide Harmony Ultimate User Guide Harmony Ultimate User Guide Table of Contents About this Manual... 6 Terms used in this manual... 6 At a Glance... 6 Features... 6 Know your Harmony Ultimate... 6 Features of

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

UG147: Flex Gecko 2.4 GHz, 20 dbm Range Test Demo User's Guide

UG147: Flex Gecko 2.4 GHz, 20 dbm Range Test Demo User's Guide UG147: Flex Gecko 2.4 GHz, 20 dbm Range Test Demo User's Guide This user's guide provides an easy way to evaluate the link budget of the Wireless Gecko EFR32 devices using Silicon Labs Radio Abstraction

More information

SignalTap: An In-System Logic Analyzer

SignalTap: An In-System Logic Analyzer SignalTap: An In-System Logic Analyzer I. Introduction In this chapter we will learn 1 how to use SignalTap II (SignalTap) (Altera Corporation 2010). This core is a logic analyzer provided by Altera that

More information

Casambi Smart Switching

Casambi Smart Switching Version 1.1 29.7.2016 Casambi Technologies Oy 1 of 4 Smart Switching With Smart Switching feature it is possible to use ordinary wall switches as dimmers or control scenes with them. The Smart Switching

More information

Rogers Enhanced Guide

Rogers Enhanced Guide Rogers Enhanced Guide Enhanced Guide With your Enhanced Guide, you can see 7 days of TV listings. To access the guide, simply press the your Rogers remote and the program listings will appear. button on

More information

GET STARTED WITH ACADEMIC WRITER

GET STARTED WITH ACADEMIC WRITER GET STARTED WITH ACADEMIC WRITER A Student s Guide to Using Academic Writer Academic Writer Customer Engagement https://on.apa.org/aw-support GET STARTED WHAT IS ACADEMIC WRITER? WHAT IS ACADEMIC WRITER?

More information

Cyan Sample. Forward T Software. Infotainment Channel Design Sample. Revision as of January 22, 2009 г. Instruction on Installation and Use

Cyan Sample. Forward T Software. Infotainment Channel Design Sample. Revision as of January 22, 2009 г. Instruction on Installation and Use Forward T Software Cyan Sample Infotainment Channel Design Sample Revision as of January 22, 2009 г. Instruction on Installation and Use SoftLab-NSK Notice The information in this document is subject to

More information

Managing a Time Clock Station

Managing a Time Clock Station Managing a Time Clock Station The time clock stations manage web-enabled time clock stations. Browse System Setup under Operations in the left navigation bar. Click Time Clock Stations see a list of the

More information

Positive Attendance. Overview What is Positive Attendance? Who may use Positive Attendance? How does the Positive Attendance option work?

Positive Attendance. Overview What is Positive Attendance? Who may use Positive Attendance? How does the Positive Attendance option work? Positive Attendance Overview What is Positive Attendance? Who may use Positive Attendance? How does the Positive Attendance option work? Setup Security Codes Absence Types Absence Reasons Attendance Periods/Bell

More information

The Administrator s Guide to using EndNote online

The Administrator s Guide to using EndNote online The Administrator s Guide to using EndNote online The online interface for EndNote is ideal for many undergraduates. They can use it from any computer and can sync with an EndNote Desktop Library when

More information

5620 SAM SERVICE AWARE MANAGER. SMM GNE Driver Version Guide

5620 SAM SERVICE AWARE MANAGER. SMM GNE Driver Version Guide 5620 SAM SERVICE AWARE MANAGER SMM GNE Driver Version 1.0.30 Guide 3HE-11173-AAAB-TQZZA September 2016 5620 SAM Legal notice Nokia is a registered trademark of Nokia Corporation. Other products and company

More information

VIBRIO. User Manual. by Toast Mobile

VIBRIO. User Manual. by Toast Mobile VIBRIO User Manual by Toast Mobile 1 Welcome Why Vibrio? Vibrio is a lighting control software for the ipad. One intuitive solution to handle lighting for your venue or show. It connects to the lights

More information

How to Build A Table of Authorities in Word * By: Morgan Otway

How to Build A Table of Authorities in Word * By: Morgan Otway How to Build A Table of Authorities in Word * By: Morgan Otway Overview: A Table of Authorities (TOA) is a list of all of the sources cited in a legal document that notes the page numbers on which each

More information

ONLINE QUICK REFERENCE CARD ENDNOTE

ONLINE QUICK REFERENCE CARD ENDNOTE QUICK REFERENCE CARD ENDNOTE ONLINE Access your password-protected reference library anywhere, at any time. Download references and full text from just about any online data sources, such as PubMed, GoogleScholar

More information

For support, video tutorials, webinars and further information visit us at

For support, video tutorials, webinars and further information visit us at Getting started For support, video tutorials, webinars and further information visit us at www.thinksmartbox.com Welcome to Grid 3 gives you the power to communicate, learn and control your world. This

More information

Quick Reference Manual

Quick Reference Manual Quick Reference Manual V1.0 1 Contents 1.0 PRODUCT INTRODUCTION...3 2.0 SYSTEM REQUIREMENTS...5 3.0 INSTALLING PDF-D FLEXRAY PROTOCOL ANALYSIS SOFTWARE...5 4.0 CONNECTING TO AN OSCILLOSCOPE...6 5.0 CONFIGURE

More information

Tektronix RSA306 USB Spectrum Analyzer

Tektronix RSA306 USB Spectrum Analyzer Tektronix RSA306 USB Spectrum Analyzer Simple Demos The Demo of the RSA306 is easy. Even you do not have signal generators, devices under test, or demo boards, using the whip antenna provided in box, you

More information

Viewing Set-Top Box Data

Viewing Set-Top Box Data Device View, page 1 Alerts, page 3 Device Properties, page 3 Quick Actions, page 3 View Log Entries, page 4 Monitor STB Connectivity, page 5 Device View Note While every possible effort has been made to

More information

Pi-Star Setup: Connect the LAN cable and then power on the Pi.

Pi-Star Setup: Connect the LAN cable and then power on the Pi. Pi-Star Setup: I'm assuming that you have already put the Pi-Hat on the Pi, and an SD Card imaged with Pi_Star. If not then go do those steps. (Pi-Star how-to s can be found elsewhere on the wbe.) Connect

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

NoodleTools Quick Start Guide. For Students & Teachers. For Teachers Only

NoodleTools Quick Start Guide. For Students & Teachers. For Teachers Only NoodleTools Quick Start Guide For Students & Teachers ACTIVITY PAGE Opening an Account 1 Creating a New Project 2 Sharing a Project 3 Blank NoodleTools Notecard practice sheet 5 Create a Source Citation

More information

EndNote for Mac. User Guide. UTS Library University of Technology Sydney UTS CRICOS PROVIDER CODE 00099F

EndNote for Mac. User Guide. UTS Library University of Technology Sydney UTS CRICOS PROVIDER CODE 00099F UTS CRICOS PROVIDER CODE 00099F EndNote for Mac User Guide UTS Library University of Technology Sydney EndNote for Mac Table of Contents Part 1 Installing EndNote... 3 Before you begin - Update your mac

More information

GETTING STARTED WITH ENDNOTE

GETTING STARTED WITH ENDNOTE EndNote (online) Capture bibliographic references from online databases Build your personal library of references Share your library of references with colleagues Generate bibliographies in any style of

More information

EndNote for Mac. EndNote for PC. User Guide. UTS Library University of Technology Sydney UTS CRICOS PROVIDER CODE 00099F

EndNote for Mac. EndNote for PC. User Guide. UTS Library University of Technology Sydney UTS CRICOS PROVIDER CODE 00099F UTS CRICOS PROVIDER CODE 00099F EndNote for Mac EndNote for PC User Guide UTS Library University of Technology Sydney EndNote for PC Table of Contents Part 1 Installing EndNote... 3 What is EndNote?...4

More information

Go! Guide: The Notes Tab in the EHR

Go! Guide: The Notes Tab in the EHR Go! Guide: The Notes Tab in the EHR Introduction The Notes tab in the EHR contains narrative information about a patient s current and past medical history. It is where all members of the health care team

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

The Kaffeine Handbook. Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab

The Kaffeine Handbook. Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab 2 Contents 1 Kaffeine Player 5 1.1 The Start Window...................................... 5 1.2 Play a File..........................................

More information

The feature SMART Switch makes it possible to use ordinary wall switches as dimmers or for retrieving scenes set up before.

The feature SMART Switch makes it possible to use ordinary wall switches as dimmers or for retrieving scenes set up before. Smart Switch The feature SMART Switch makes it possible to use ordinary wall switches as dimmers or for retrieving scenes set up before. The SMART Switch can be configured by the Casambi app. Different

More information

Word Tutorial 2: Editing and Formatting a Document

Word Tutorial 2: Editing and Formatting a Document Word Tutorial 2: Editing and Formatting a Document Microsoft Office 2010 Objectives Create bulleted and numbered lists Move text within a document Find and replace text Check spelling and grammar Format

More information

Save 20% off PostworkShop 3! Click here for the coupon code:

Save 20% off PostworkShop 3! Click here for the coupon code: plugs-n-pixels tutorial series What is PostworkShop 3? PostworkShop 3 is both a Photoshop plug-in and a cross-platform standalone app for adding realistic artistic effects to your images. PostworkShop

More information

Cisco StadiumVision Defining Channels and Channel Guides in SV Director

Cisco StadiumVision Defining Channels and Channel Guides in SV Director Cisco StadiumVision Defining Channels and Channel Guides in SV Director Version 2.3 March 2011 Corporate Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

2. Get a free Adobe ID at adobe.com (Click Sign In (top right corner), click Get an Adobe ID, fill in the form and click Sign Up)

2. Get a free Adobe ID at adobe.com (Click Sign In (top right corner), click Get an Adobe ID, fill in the form and click Sign Up) Downloading Library ebooks to your ereader Summary of Steps 1. Download book to your computer first 2. Open the book with the free software Adobe Digital Editions (books will only work with this software

More information

All about Mendeley. University of Southampton 18 May mendeley.com. Michaela Kurschildgen, Customer Consultant Elsevier

All about Mendeley. University of Southampton 18 May mendeley.com. Michaela Kurschildgen, Customer Consultant Elsevier All about Mendeley. University of Southampton 18 May 2015 Michaela Kurschildgen, Customer Consultant Elsevier mendeley.com What is Mendeley? Mendeley is a reference manager allowing you to manage, read,

More information

DPS Telecom Your Partners in Network Alarm Management

DPS Telecom Your Partners in Network Alarm Management Subject: How to Setup Analog Sensors on a NetGuardian Platforms: Netguardian 832A, 16S, 216, 216T, and NetDog G2 How are your remote sites doing? Too hot? Too cold? Too humid? Low battery voltage? Low

More information

StrataSync. DSAM 24 Hour POP Report

StrataSync. DSAM 24 Hour POP Report DSAM 24 Hour POP Report Thursday, January 28, 2016 Page 1 of 19 Table of Contents... 1... 1 Table of Contents... 2 Introduction... 3 POP Test Configuration Location File, Channel Plan, Limit Plan... 4

More information

GUIDE TO GETTING STARTED

GUIDE TO GETTING STARTED GUIDE TO GETTING STARTED Experience Extraordinary DIGICELPLAYTT.COM This is your guide to using your new Digicel Play service, giving you the essentials as well as handy tips on all our great features.

More information

ipass Open Mobile 2.0 for Android Quick Start Guide

ipass Open Mobile 2.0 for Android Quick Start Guide ipass Open Mobile 2.0 for Android Quick Start Guide Version 1.0, August 2011 Corporate Headquarters ipass Inc. 3800 Bridge Parkway Redwood Shores, CA 94065 USA www.ipass.com +1 650-232-4100 +1 650-232-0227

More information

Tyler SIS Student 360 Mobile

Tyler SIS Student 360 Mobile Tyler SIS Student 360 Mobile Overview Tyler SIS Student 360 Mobile is a mobile phone app version of the Tyler SIS Student 360 Parent Portal available on both ios and Android. It can be downloaded from

More information

Integrating Device Connectivity in IoT & Embedded devices

Integrating Device Connectivity in IoT & Embedded devices Leveraging Microsoft Cloud for IoT and Embedded Applications Integrating Device Connectivity in IoT & Embedded devices Tom Zamir IoT Solutions Specialist tom@iot-experts.net About me Tom Zamir IoT Solutions

More information

QUICK START GUIDE QT ANALOG HD CAMERA & DVR BUNDLE ENGLISH

QUICK START GUIDE QT ANALOG HD CAMERA & DVR BUNDLE ENGLISH QUICK START GUIDE QT ANALOG HD CAMERA & DVR BUNDLE ENGLISH Table of Contents Welcome What s Included...3 Understanding your DVR...4 Get Connected Registration...5 Connect Your Cameras...5 Connect DVR to

More information

Wilkes Repair: wilkes.net River Street, Wilkesboro, NC COMMUNICATIONS

Wilkes Repair: wilkes.net River Street, Wilkesboro, NC COMMUNICATIONS 1 Wilkes COMMUNICATIONS 336.973.3103 877.973.3104 Repair: 336.973.4000 Email: wilkesinfo@wilkes.net wilkes.net 1400 River Street, Wilkesboro, NC 28697 2 Table of Contents REMOTE CONTROL DIAGRAM 4 PLAYBACK

More information

1. Material and RMA orders. 2. Send event to my outlook calendar. 3. Engineers allowed to see other engineers calendars (Read-only access)

1. Material and RMA orders. 2. Send event to my outlook calendar. 3. Engineers allowed to see other engineers calendars (Read-only access) 1. Material and RMA orders Added under the Parts Requested component in the call details. 2. Send event to my outlook calendar DGP events can be now sent to the engineer s Outlook 3. Engineers allowed

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

SuperStar Basics. Brian Bruderer. Sequence Editors

SuperStar Basics. Brian Bruderer. Sequence Editors SuperStar Basics Brian Bruderer Sequence Editors Traditional sequence editors use a large grid to control when channels are turned on and off. This approach is like a Paint program where pictures are created

More information

Downloading Overdrive E-books and Audiobooks for Tablets and Mobile Devices from the Marion Public Library

Downloading Overdrive E-books and Audiobooks for Tablets and Mobile Devices from the Marion Public Library Downloading Overdrive E-books and Audiobooks for Tablets and Mobile Devices from the Marion Public Library (ipod Touch/iPhone/iPad, Windows 8, Chromebooks, Android phones/tablets, including Kindle Fire,

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

Welcome to the U-verse App

Welcome to the U-verse App iphone 2.5.3 Welcome to the U-verse App The U-verse app is an AT&T service that uses your iphone to provide a user interface for U-verse TV. Using Edge, 3G and WiFi technology, the U-verse app provides

More information

An Introduction to The Internet of Things

An Introduction to The Internet of Things An Introduction to The Internet of Things where and how to start November 2017 Mihai Tudor Panu EST. 1999 Kevin Ashton, P&G 2 Agenda High level key concepts surrounding IoT

More information

Using RefWorks Write-N-Cite for Mac v.2.5

Using RefWorks Write-N-Cite for Mac v.2.5 Using RefWorks Write-N-Cite for Mac v.2.5 at the University of Manitoba Overview Write-N-Cite is a utility that allows users (who meet the compatibility requirements below) to run an abbreviated version

More information

AN-003 Displaying the Date and Time on LCD User Stations

AN-003 Displaying the Date and Time on LCD User Stations AN-003 Displaying the Date and Time on LCD User Stations PUBLICATION INFORMATION This application note covers the use of the protégé system to perform a specific function and may be used in conjunction

More information

Detecting Bosch IVA Events with Milestone XProtect

Detecting Bosch IVA Events with Milestone XProtect Date: 8 December Detecting Bosch IVA Events with Prepared by: Tim Warren, Solutions Integration Engineer, Content and Technical Development 2 Table of Content 3 Overview 3 Camera Configuration 3 XProtect

More information

QUICK START GUIDE. QT Analog HD Camera & DVR Bundle ENGLISH

QUICK START GUIDE. QT Analog HD Camera & DVR Bundle ENGLISH QUICK START GUIDE QT Analog HD Camera & DVR Bundle ENGLISH Table of Contents Welcome What s Included...3 Understanding your DVR...4 Get Connected Registration...5 Connect Your Cameras...5 Connect DVR to

More information

X-Sign 2.0 User Manual

X-Sign 2.0 User Manual X-Sign 2.0 User Manual Copyright Copyright 2018 by BenQ Corporation. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system or translated

More information

Harvard Public Library Axis 360 ebooks and eaudiobooks on Android Devices

Harvard Public Library  Axis 360 ebooks and eaudiobooks on Android Devices Harvard Public Library www.harvardpubliclibrary.org Axis 360 ebooks and eaudiobooks on Android Devices Enjoy ebooks and downloadable audiobooks from the Harvard Public Library and the Commonwealth ebook

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

EndNote Basics Fall 2010, Room 14N-132 Peter Cohn, x8-5596

EndNote Basics Fall 2010, Room 14N-132 Peter Cohn, x8-5596 EndNote Basics 1 EndNote Basics Fall 2010, Room 14N-132 Peter Cohn, pcohn@mit.edu, x8-5596 MIT Libraries Overview Bibliographic Software tools help you manage and publish personal information. Hands-on

More information

Franchise Broadcast Info

Franchise Broadcast Info Franchise Broadcast Info Overview Important notes Specifications Example How to schedule the Broadcast Info Collection Overview The Broadcast Info collection allows you to display that your franchise shows

More information

The world s smartest PVR. User guide 1

The world s smartest PVR. User guide 1 The world s smartest PVR. User guide 1 Get to know your TiVo. Welcome to the TiVo Experience The TiVo experience instantly gives you total control of the TV programming you love, and much more! With six

More information

Remote Application Update for the RCM33xx

Remote Application Update for the RCM33xx Remote Application Update for the RCM33xx AN418 The common method of remotely updating an embedded application is to write directly to parallel flash. This is a potentially dangerous operation because

More information

Netflix on the IMC IMC and up. User guide for viewing Netflix Content

Netflix on the IMC IMC and up. User guide for viewing Netflix Content Netflix on the IMC IMC 1.1.0 and up User guide for viewing Netflix Content NETFLIX FOR IMC BASIC USER GUIDE Subscribers to Netflix s Unlimited DVD service are granted an unlimited number of hours for watching

More information

Reason Overview3. Reason Overview

Reason Overview3. Reason Overview Reason Overview3 In this chapter we ll take a quick look around the Reason interface and get an overview of what working in Reason will be like. If Reason is your first music studio, chances are the interface

More information

Digital Materials on Your Kindle Fire

Digital Materials on Your Kindle Fire Natrona County Public Library 307-577-READ (7323) 307 E 2 nd St, Casper, WY 82601 www.natronacountylibrary.org Digital Materials on Your Kindle Fire E-books: The Basics Check out limits: 10 e-books from

More information

USER GUIDE. Get the most out of your DTC TV service!

USER GUIDE. Get the most out of your DTC TV service! TV USER GUIDE Get the most out of your DTC TV service! 1 800-367-4274 www.dtccom.net TV Customer Care Technical Support 615-529-2955 615-273-8288 Carthage Area Carthage Area 615-588-1277 615-588-1282 www.dtccom.net

More information

Tyler SIS Student 360 Mobile

Tyler SIS Student 360 Mobile Tyler SIS Student 360 Mobile Overview Tyler SIS Student 360 Mobile is a mobile phone app version of the Tyler SIS Student 360 Parent Portal available on both ios and Android. It can be downloaded from

More information

Projector Management Application Version 7.00 Instruction Guide

Projector Management Application Version 7.00 Instruction Guide Projector Management Application Version 7.00 Instruction Guide Contents 1 INTRODUCTION... 4 1.1 OUTLINE... 4 1.2 SYSTEM... 4 2 INSTALLATION... 5 2.1 SYSTEM REQUIREMENTS... 5 2.2 PROJECTOR MANAGEMENT APPLICATION

More information

XJTAG DFT Assistant for

XJTAG DFT Assistant for XJTAG DFT Assistant for Installation and User Guide Version 2 enquiries@xjtag.com Table of Contents SECTION PAGE 1. Introduction...3 2. Installation...3 3. Quick Start Guide...4 4. User Guide...4 4.1.

More information

How-to Setup Motion Detection on a Dahua DVR/NVR

How-to Setup Motion Detection on a Dahua DVR/NVR How-to Setup Motion Detection on a Dahua DVR/NVR Motion detection allows you to set up your cameras to record ONLY when an event (motion) triggers (is detected) the DVR/NVR to begin recording and stops

More information

Whole House Lighting Controller

Whole House Lighting Controller User Guide Whole House Lighting Controller LC7001 radiant RF Lighting Control adorne Wi-Fi Ready Lighting Control Compliance FCC Notice FCC ID These devices comply with part 15 of the FCC Rules. Operation

More information

INTRODUCTION TO ENDNOTE

INTRODUCTION TO ENDNOTE INTRODUCTION TO ENDNOTE What is it? EndNote is a bibliographic management tool that allows you to gather, organize, cite, and share research sources. This guide describes the desktop program; a web version

More information

IPTV Middleware ipad ManageMyTVs Application User Guide

IPTV Middleware ipad ManageMyTVs Application User Guide IPTV Middleware ipad ManageMyTVs Application User Guide Version 1.0 The information presented in this document is written for the default settings of the system. The IPTV Middleware ipad ManageMyTVs Application

More information

ManageMyTVs App for AndroidTM

ManageMyTVs App for AndroidTM ManageMyTVs App for AndroidTM ManageMyTVs App 1. To use the ManageMyTVs app, tap the ManageMyTVs icon from the screen.the ManageMyTVs Sign-In screen will appear. 2. Enter your username in the Username

More information

Swinburne University of Technology

Swinburne University of Technology Swinburne University of Technology EndNote X9 for Mac Swinburne Library EndNote resources page: http://www.swinburne.edu.au/library/referencing/references-endnote/endnote/ These notes include excerpts

More information

ENTSOG Professional Data Warehouse System Documentation Transparency Platform User manual

ENTSOG Professional Data Warehouse System Documentation Transparency Platform User manual 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ENTSOG Professional Data Warehouse System Documentation Transparency Platform User manual 17 18 Change History Version Author Reason for the new version and list

More information