Node-RED Dashboard: Pi Control

Size: px
Start display at page:

Download "Node-RED Dashboard: Pi Control"

Transcription

1 : Pi Control Will English June 26, 2017

2 1 Summary I am using a Raspberry Pi as a headless computer through VNC. A particular interest is learning Node-RED flow programming and within that exploration having the ability to display debugging and program execution results. I looked at LCD and OLED panels with various degrees of success and failure. The complication being executing the display coding from within a Node-RED flow. The discovery of node-red-dashboard eliminated the need for the hardware display panel. Furthermore, the dashboard is widget driven within Node-RED and is native to the whole concept of the object driven flow. Rev1 of this document extends the simple blinking LED with the addition of a BlinkM I²C Controlled RGB LED to the Dashboard Pi Control, and the ability to select a desired color. Reference My Pi Workbench for details on wiring a BlinkM module. This journal is a record of my discoveries and a future source for personal reference.

3 2 Acknowledgements This document could not have been compiled were it not for the exceptional work of many other people: Node-RED node-red-dashboard Node-RED module Dashboard: Add a GUI (part 1) [Exclusive Guide] Node-RED module Dashboard (Part 2): Gauges, Charts, Notifications, HTML BlinkM I²C Controlled RGB LED Document Revisions April 21, 2017 June 26, 2017 Base Document Add BlinkM - I²C Controlled RGB LED to Pi Control

4 3 Contents Summary... 1 Acknowledgements... 2 Document Revisions... 2 Contents... 3 Building the Raspbian OS Pixel Desktop... 4 Upgrade & Configure Node-RED... 6 Install the Dashboard Module... 7 Widgets & Nodes... 8 Defining a Dashboard The Site The Theme The Layout Connecting Dashboard Nodes & Widgets The Node-RED Flow Config Switch Color Picker Exec Dashboard Template Example 1: Dashboard - Pi Control Example 2: Dashboard - BlinkM... 21

5 4 Building the Raspbian OS Pixel Desktop Windows 10 Download the latest Raspbian.zip (not Noobs nor Raspberry Light) from raspberrypi.org Use HashTab to verify the checksum of the downloaded zip to the site stated checksum (Select file, r-click, Properties) Extract the img file from the zip Format an SD-Card using SD Formatter Copy the Raspbian.img to the SD Card using Win32 Disk Image Raspberry-Pi Insert the SD Card in the Raspberry Pi (needs a keyboard & Mouse) and Boot. Raspbian by default boots to the desktop with a default User-id and Password. Ensure TP-Link Wireless USB Dongle is inserted. Beginning with Raspbian Jessie the TP-Link wireless drivers have been included in the OS. Enter our Home Network password (right click network activity symbol top right of desktop) to initiate internet access and test. The Pixal Desktop has a bug requiring the manual addition of the wireless network: Open the wpasupplicant configuration file in nano and enter: sudo nano /etc/wpa_supplicant/wpa_supplicant.conf Append the following: network={ ssid="shaw-*****" psk="***(password)***" } Configure the Desktop Boot Raspberry Pi (boots to Desktop by default) In Terminal sudo raspi-config this initiates a OS change menu panel Select Option 1: Change User Password and at the prompts enter will5**** Select Option 2: Hostname, change from raspberrypi to PiServer Select Option 4: Localization Options, set the time zone to US Pacific Select Option 4: Localization Options, set the Wi-fi country to Canada Select Option 5: Interfacing Options, enable VNC and I2C Select Option 7: Advanced Options, Expand File System Select Option 7: Advanced Options, Screen Resolution, select 1280 x 720 Finish and Reboot Connect using RealVNC On Windows10: Logon to Raspberry Pi at (Wi-fi address) with VNC Viewer, User name = pi, and Password = will5****

6 5 Remove Packages Wolfram sudo apt-get purge wolfram-engine sudo apt-get clean sudo apt-get autoremove Libre Office sudo apt-get purge libreoffice* sudo apt-get clean sudo apt-get autoremove Minecraft sudo apt-get purge minecraft-pi sudo apt-get clean sudo apt-get autoremove Sonic-Pi sudo apt-get purge sonic-pi sudo apt-get clean sudo apt-get autoremove Backup the Raspbian OS Copy SD Card to a backup image at the V: (Virtual) Drive file using Win32 Disk Imager and Label: Rxn-n-Vn-nn (eg RJ4-4-V0-01 for Raspbian Jessie release 4.4 my Version 0.01)

7 6 Upgrade & Configure Node-RED To upgrade Node-RED and its associated packages to their current release levels invoke Terminal on a VNC Session and install and upgrade npm: sudo apt-get install npm sudo npm i -g npm@2.x sudo reboot In a new Terminal session upgrade Node.js & Node-RED update-nodejs-and-nodered sudo reboot Localize the Node-RED settings with your installation preferences. For instance I locate my flows in a personal directory called MyWeb: sudo nano /home/pi/.node-red/settings.js Then enter or update the following entries: uihost: " ", userdir: '/home/pi/myweb/', nodesdir: '/home/pi/myweb/', ^O^X sudo reboot Backup the Raspbian OS Copy SD Card to a backup image at the V: (Virtual) Drive file using Win32 Disk Imager and Label: Rxn-n-Vn-nn (eg RJ4-4-V0-01 for Raspbian Jessie release 4.4 my Version 0.01)

8 7 Install the Dashboard Module Open the Palette Manager in Node-RED, select install and search for the module using the keyword dashboard. Then click install for the node-red-dashboard module. At the end of the installation refresh the display of the browser. The new nodes are listed the editor under the dashboard classification.

9 8 Widgets & Nodes Used in Pi Control Stores global and flow variables (properties) in a central location and sets them at startup. Adds a two-state switch to the user interface. Each change in the state of the switch will generate a msg.payload with the specified On and Off values. The On/Off Color and On/Off Icon are optional fields. If they are all present, the default toggle switch will be replaced with the relevant icons and their respective colors. The On/Off Icon field can be either Material Design Icons (e.g. 'check', 'close') or Font Awesome Icons (e.g. 'fa-fire'). Display of HTML. Used as form template for the logging of events. Choose a color from a wheel in hex, RGB, etc. representation. Calls out to a system command - a method of making external calls out from Node-RED to external programs or utilities. Other Dashboard Widgets List of choices Button Digital selector Horizontal slider Input field for text Choose date from a calendar Output Text

10 9 Form layout Output Gauge Output Chart Text to speech and file player Notification Change of page

11 10 Defining a Dashboard A dashboard runs as a user interface web page that is served by the Node-RED server, and addressed as the server IP/ui (e.g xx/ui). The groups and pages that form a dashboard can be defined in the Control Panel for a widget as it is invoked in the Node-RED editor. However, it is much easier and clearer to configure using the dashboard panel next to the console (Info & Debug). The Site Choose a Title. It will be displayed as the title of the page in the Header of the Web Browser page. The Theme Choose a Style from the three available: Light: clear with a white background and blue content. Dark: white on a dark background. Custom: select specific color features. The Layout The Layout defines the Tabs (pages) that form a dashboard, the sequence of the pages in the dashboard, and the groups that are on a page.

12 11 Connecting Dashboard Nodes & Widgets The Node-RED Flow A dashboard becomes an integral part of the Flow application by providing a configured and adaptable user interface into and out of the logic of the application. Perceptually this is similar to a screen, keyboard and mouse interface! We will now introduce the Dashboard Nodes Widgets into logic of the Flow. The widgets or controls, for example a Button, Dropdown, or Chart - bring function to the logic of a Flow. The following pages describe a widget, how it is configured, and an example of how it might be used. The parameters for a widget locate the control in the chosen Tab and Group of a Dashboard. The other parameters in the widget customize the control. The Flow can be Deployed as the widgets and logic are being developed, and the user interface (dashboard) opened either by specific web address or selecting in the dashboard menu.

13 12 Config Stores global and flow variables (properties) in a central location and sets them at startup. Installed via node-red-contrib-config at Manage pallet, this is a must have node for any flow using global or flow wide variables.

14 13 Switch The horizontal switch gives a Boolean return when it changes state. It is possible to reverse the Boolean value inverting the output value depending on the State of On and Off. Two icons and/or colors can be set depending on state. Group: Size: Label: Icon: If msg: On Payload: Off Payload: Topic: Name: The Dashboard display group linked to the Switch The size of the display element. Auto default A text label for the switch The Default is a two-color slide switch; with Custom both the Icon and its color can be chosen. Node transparency passing an incoming message through to output, when the box is checked Output when the Switch is turned On Output when the Switch is turned Off Other types of output include a Flow, store the State in a global variable (Global), a string of characters (String), a number (Number), a JSON object, or a date and time of the action (timestamp). Label Name of the Node that is displayed on the Node-RED flow

15 14

16 15 Color Picker Adds a color picker to the dashboard. Various display options are available and a selected color can be RGB, hex, hex8, hsv, or hsl.. Group: Size: Label: Format: If msg: options: Topic: Name: The Dashboard display group linked to the Switch Node The size of the display element - 4x4 maintains display of the picker. A text label for the switch Output format of a chosen color. Hex is easiest for this purpose. Node transparency, passing an incoming message through to output, when the box is checked What to include in the Controls display. Label Name of the Node that is displayed on the Node-RED flow

17 16 Exec Calls out to a system command - a method of making external calls out from Node-RED to external programs or utilities. Command: Append: Name: The program or utility to be executed. The msg.payload to the command. Name of the Node that is displayed on the Node-RED flow I2cset is a utility that is included with the i2c Tools that are available to Raspbian. The command line utility and its parameters puts a command onto the i2c bus. In this case, for the BlinkM:

18 17 A Switch on the Pi Control panel has parameters for the On and Off Payloads that that when appended to the i2cset in the Node-RED Exec, turns the BlinKM LED either full on or off. A Function node after the Color Picker transforms a selected color in hex to parameters, that when appended to the i2cset in the Node-RED Exec, turns the BlinKM LED to the selected color.

19 18 Dashboard Template The widget can be used to create a dynamic user interface element that changes its appearance based on the input message and can send back messages to Node- RED. The template widget can contain any valid html and Angular/Angular-Material directives. Group: Size: Name: If msg: Template: The Dashboard display group linked to the Template The size of the display element. Auto default Name of the Node that is displayed on the Node-RED flow Node transparency passing an incoming message through to output, when the box is checked Valid html and Angular/Angular-Material directives. Typically, a Template provides a layout and a paired function feeds it data. In the Example: Dashboard Pi Control the template is the Event Log and the function is Record Events. The Event Log template is an HTML list formatting the output for a passed Topic and payload.

20 19 The Record Events function is a short java-script routine that is a twelve message pushup queue feeding the Event Log. If the global LogSw is off, then message passing is suspended.

21 20 Example 1: Dashboard - Pi Control A Raspberry Pi with a LED at Pin-11 is wirelessly connected through VNC. The seven nodes in the Node-RED flow define a web user interface that has two switches and an event log. The first switch turns the LED on and off. The log lists the cycling of the LED switch or any other connected node that is introduced to the flow. The second switch enables or disables logging.

22 21 Example 2: Dashboard - BlinkM A Raspberry Pi with a LED at Pin-11 and a BlinkM I²C Controlled RGB LED is wirelessly connected through VNC. The eleven nodes in the Node-RED flow define a web user interface that has three switches, a color picker and an event log. The first switch turns the LED on and off. The second switch enables or disables logging. The third switch turns the BlinkM On or Off. The Color Picker is used to select a color for the BlinkM.

Node-RED Dashboard: Pi Control

Node-RED Dashboard: Pi Control : Pi Control Will English July 17, 2017 will.english@vivaldi.net 1 Summary I am using a Raspberry Pi as a headless computer through VNC. A particular interest is learning Node-RED flow programming and

More information

Raspberry Pi NTP Clock Setup Guide

Raspberry Pi NTP Clock Setup Guide Raspberry Pi NTP Clock Setup Guide Several steps are involved in getting your Raspberry Pi to operate as a NTP Clock. To begin with, you must obtain a LCD Plate (www.adafruit.com) and build it. You must

More information

Preparing SD card for Pi

Preparing SD card for Pi Preparing SD card for Pi Sarwan Singh Assistant Director(S) NIELIT Chandigarh Education is the kindling of a flame, not the filling of a vessel. - Socrates 1 sarwan@nielit Using NOOBS- New Out Of Box Software

More information

RETROPIE INSTALLATION GUIDE

RETROPIE INSTALLATION GUIDE RETROPIE INSTALLATION GUIDE CONTENTS THE FOLLOWING GUIDE WILL COVER THE INSTALLATION, SETUP AND CONFIGURATION OF THE RASPBERRY PI, RASPBIAN OS AND RETROPIE Author: http://rpiarcadebuild.wordpress.com/

More information

Raspberry PI 'How-To' Series

Raspberry PI 'How-To' Series Raspberry PI 'How-To' Series Zabbix Agent Installation Guide Written by: Sopwith Revision 1.0 March 4, 2019 sopwith@ismellsmoke.net 1 Introduction Zabbix is a popular open-source platform used by IT professionals

More information

Node-RED dashboard User Manual Getting started

Node-RED dashboard User Manual Getting started Node-RED dashboard User Manual Getting started https://nodered.org/ Node-RED is a visual wiring tool for the Internet of Things. A project of the JS Foundation (https://js.foundation/). Node-RED is a programming

More information

ToF T1 User Guide. a module solution provider. Date: 2017/02/13. Hardware Test Supervisor. Software Test Engineer. Center Supervisor Rex

ToF T1 User Guide. a module solution provider. Date: 2017/02/13. Hardware Test Supervisor. Software Test Engineer. Center Supervisor Rex a module solution provider ToF T1 User Guide Date: 2017/02/13 Software Test Engineer Hardware Test Supervisor Test Supervisor Center Supervisor Rex Copyright JORJIN TECHNOLOGIES INC. LIMITED 2014 Version

More information

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett RaspiDigiHamClock Raspberry Pi Amateur Radio Digital Clock v2018-07-08 WA4EFH R.Grokett Overview Amateur Radio Operators (aka HAM Radio) use 24 hour UTC (Universal Coordinated Time) for much of their operation.

More information

Bluetooth Keyboard Setup Instructions

Bluetooth Keyboard Setup Instructions Bluetooth Keyboard Setup Instructions Setup Using GUI (NOOBS/Raspbian) 1. Insert your micro SD card into the micro SD card slot on the Raspberry Pi. 2. Connect an HDMI cable from your Raspberry Pi to your

More information

Wallet Installation Guide for Staking on Raspberry PI

Wallet Installation Guide for Staking on Raspberry PI Wallet Installation Guide for Staking on Raspberry PI V2.1 November 2018 CONTENTS 01. Version History... 13 02. Introduction... 3 03. Prerequisites... 13 04. Installation Steps... 6 05. Add an address

More information

XLink Kai Raspberry Pi Beginners Tutorial

XLink Kai Raspberry Pi Beginners Tutorial XLink-Kai-Raspberry-Pi-Beginners-Tutorial.md XLink Kai Raspberry Pi Beginners Tutorial Hi! This tutorial will guide you through setting up XLink Kai on a Raspberry Pi to play multiplayer system link Xbox

More information

Node-Red Gateway Manual 1 Edition

Node-Red Gateway Manual 1 Edition 1 Table of contents Introduction... 4 IoT Gateway controllers... 4 The History of Node-RED... 5 Node-RED and the IoT... 5 Geting started... 6 Start Node-Red... 6 Login with local user acoont... 6 Working

More information

Connect Raspberry Pi to ThingWorx 0

Connect Raspberry Pi to ThingWorx 0 Connect Raspberry Pi to ThingWorx 0 Project Introduction Overview In this project you will create a simple mashup in ThingWorx, PTC s industry leading IoT platform. The project introduces basic skills

More information

Microprocessor-Based Systems (E155)

Microprocessor-Based Systems (E155) Microprocessor-Based Systems (E155) D. Harris and M. Spencer Fall 2017 Lab 4: Life of Pi Requirement 1) Set up your Raspberry Pi 2) Write an assembly-language program to sort an array of 12 signed bytes

More information

Rapoo E6700 Setup Instructions

Rapoo E6700 Setup Instructions Rapoo E6700 Setup Instructions Setup Using GUI (NOOBS/Raspbian) 1. Insert SD card into Raspberry Pi. 2. Connect HDMI cable from Raspberry Pi to monitor. 3. Connect a standard USB keyboard and mouse into

More information

Adafruit's Raspberry Pi Lesson 6. Using SSH

Adafruit's Raspberry Pi Lesson 6. Using SSH Adafruit's Raspberry Pi Lesson 6. Using SSH Created by Simon Monk Last updated on 2017-08-16 01:12:07 AM UTC Guide Contents Guide Contents Overview Enabling SSH Using a blank boot file Using Raspi-Config

More information

High Voltage Module Raspberry Pi Documentation Page 1

High Voltage Module Raspberry Pi Documentation Page 1 Raspberry Pi Setup High Voltage Documentation Instrumentation Development Lab Department of Physics and Astronomy University of Hawaii at Manoa AUTHOR: Cameron Asaoka DATE: 7/6/2017 High Voltage Module

More information

GXV3370 Firmware Release Notes

GXV3370 Firmware Release Notes GXV3370 Firmware Release Notes Table of Content FIRMWARE VERSION 1.0.1.28... 2 PRODUCT NAME... 2 DATE... 2 FIRMWARE FILE INFORMATION... 2 CHANGES SINCE FIRMWARE VERSION 1.0.1.12... 2 ENHANCEMENT... 2 BUG

More information

Manual of ET-LCD SW HAT

Manual of ET-LCD SW HAT ET- LCD SW HAT ET-LCD SW HAT is Board I/O that is specifically designed for connection with Board Raspberry Pi through Connector 40-PIN; this board includes LCD 16x2, SW, Buzzer, RTC DS3231 with Connector

More information

NODE-RED An event based toolkit for devices and robots

NODE-RED An event based toolkit for devices and robots bill.reichardt@thingworx.com NODE-RED An event based toolkit for devices and robots WHAT IS NODE RED? An open source web application framework for node.js (Javascript) A web based IDE for connecting devices

More information

PROFILE DESIGN TUTORIAL KIT

PROFILE DESIGN TUTORIAL KIT PROFILE DESIGN TUTORIAL KIT NEW PROFILE With the help of feedback from our users and designers worldwide, we ve given our profiles a new look and feel. The new profile is designed to enhance yet simplify

More information

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Nick Antipa, Li-Hao Yeh, based on labs by Jon Tamir and Frank Ong January 24, 2018 This lab will walk you through setting up your Raspberry Pi

More information

A Step by Step Guide to Installing VPN on Raspberry Pi. Whitepaper

A Step by Step Guide to Installing VPN on Raspberry Pi. Whitepaper A Step by Step Guide to Installing VPN on Raspberry Pi Whitepaper Introduction For security conscious IT experts who would like to provide secure access to their network on a budget, this whitepaper provides

More information

Experiments 1 How to set up Raspberry Pi B+ The little computer you can cook into DIY tech projects

Experiments 1 How to set up Raspberry Pi B+ The little computer you can cook into DIY tech projects Experiments 1 How to set up Raspberry Pi B+ The little computer you can cook into DIY tech projects The Raspberry Pi is a computer about the size of a credit card. The darling of the do-it-yourself electronics

More information

QUICK START GUIDE FOR AVSIGNCLOUD

QUICK START GUIDE FOR AVSIGNCLOUD Control Your Video VIDEO WALLS VIDEO PROCESSORS VIDEO MATRIX SWITCHES EXTENDERS SPLITTERS WIRELESS CABLES & ACCESSORIES QUICK START GUIDE FOR AVSIGNCLOUD QUICK START GUIDE FOR AVSIGNCLOUD ABOUT THIS DOCUMENT

More information

Raspberry Pi Setup Tutorial

Raspberry Pi Setup Tutorial Raspberry Pi Setup Tutorial The Raspberry Pi is basically a miniature linux- based computer. It has an ARM processor on it, specifically the ARM1176JZF- S 700 MHz processor. This is the main reason why

More information

5inch HDMI LCD (B) User Manual

5inch HDMI LCD (B) User Manual 5inch HDMI LCD (B) User Manual Description 5 inch Resistive Touch Screen LCD, HDMI interface, supports various systems Features 800 480 high resolution, touch control Supports Raspberry Pi, and driver

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

Building a standalone access point using a Raspberry Pi Zero W

Building a standalone access point using a Raspberry Pi Zero W Building a standalone access point using a Raspberry Pi Zero W by Barry Robinson The Raspberry Pi Zero W is a small, single board computer (SBC) that has WiFi and Bluetooth connectivity built-in. It is

More information

CamJam! Workshop: Node-RED and getting started on the Internet of Things

CamJam! Workshop: Node-RED and getting started on the Internet of Things http://nodered.org Tinamous.com http://shop.ciseco.co.uk! Node-RED is a visual tool for wiring the Internet of Things (IoT). Node- RED is platform- independent, but has been developed with small computers

More information

You will need to know the IP address or the hostname of the pi (as discussed above) to continue and login to your pi via putty over Ethernet.

You will need to know the IP address or the hostname of the pi (as discussed above) to continue and login to your pi via putty over Ethernet. MEGR3092 Advanced Motorsports Instrumentation. Raspberry pi project. V0.38 10/4/16 Logger build guide: You will likely find this easier with a HDMI cord and a usb keyboard. If those are not available,

More information

Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi

Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi Created by lady ada Last updated on 2017-08-29 10:20:23 PM UTC Guide Contents Guide Contents Overview Pinouts Enabling Serial Console Option

More information

Raspberry Pi 2b PART 1. Table of Contents. Step by step guide. 1. Hardware (0:05) RS Online (ex-tax prices)... 3 MSY ebay...

Raspberry Pi 2b PART 1. Table of Contents. Step by step guide. 1. Hardware (0:05) RS Online (ex-tax prices)... 3 MSY ebay... Step by step guide PART 1 Table of Contents 1. Hardware (0:05)... 3 RS Online (ex-tax prices)... 3 MSY... 4 ebay... 4 Centercom Computers... 4 2. Installing the operating system (0:21)... 5 Preparing the

More information

truechart Menubar Documentation HighCoordination GmbH Version 1.0.2,

truechart Menubar Documentation HighCoordination GmbH Version 1.0.2, truechart Menubar Documentation HighCoordination GmbH Version 1.0.2, 2017-05-05 Table of Contents 1. Introduction.............................................................................. 1 2. Installing

More information

Remote GUI access to a Linux computer using Tightvnc

Remote GUI access to a Linux computer using Tightvnc Remote GUI access to a Linux computer using Tightvnc The command line is a great way to manage a remote Linux computer if you don't mind typing in commands, but sometimes you need to be able to view a

More information

The Following steps are done on your normal desktop or laptop, which I refer to in this document later as the Remote Computer

The Following steps are done on your normal desktop or laptop, which I refer to in this document later as the Remote Computer Stuff that I did to create my image for KStars/Ekos on Raspberry Pi Note: All terminal commands are in green. I have also provided clickable links to take you to useful websites. The Following steps are

More information

OZONE Widget Framework

OZONE Widget Framework OZONE Widget Framework October 8, 2012 Publication/Revision History Release Date Revised Document OWF 6.0.1 October 8, 2012 Initial Document OWF 6 September 28, 2012 Contents 1... 1 1.1 Installation Information...

More information

SOFTWARE USER S GUIDE

SOFTWARE USER S GUIDE SOFTWARE USER S GUIDE RJ series The contents of this guide and the specifications of this product are subject to change without notice. Brother reserves the right to make changes without notice in the

More information

10.1inch HDMI LCD (B) User Manual

10.1inch HDMI LCD (B) User Manual 10.1inch HDMI LCD (B) User Manual CONTENT Introductin... 3 The LCD and Control Board... 3 How to Use... 4 Holder Assembly... 4 Working with PC... 4 Hardware Connection... 4 Tablet PC Settings... 5 Workign

More information

Updated August 7 th, 2017 introduction

Updated August 7 th, 2017 introduction Solstice User Guide Updated August 7 th, 2017 introduction The Solstice User Reference Guide provides a summary of how Solstice works for users, including an overview of a Solstice system and steps for

More information

Software User's Guide

Software User's Guide Software User's Guide Brother QL-series The contents of this guide and the specifications of this product are subject to change without notice. Brother reserves the right to make changes without notice

More information

Index. Jeff Cicolani 2018 J. Cicolani, Beginning Robotics with Raspberry Pi and Arduino,

Index. Jeff Cicolani 2018 J. Cicolani, Beginning Robotics with Raspberry Pi and Arduino, A Accessor methods, 92 Adafruit, 9 Adafruit DC & Stepper Motor HAT assembling board adjustment, 199 circuit board, 199 kit, 197 pins, 197 preparation, 197 Raspberry Pi, 198, 204 removal, 201 rotation,

More information

Getting Started With the CCPilot VI and QuiC

Getting Started With the CCPilot VI and QuiC Page 1 of 24 Getting Started With the CCPilot VI and QuiC Page 2 of 24 Table of Contents Purpose... 3 What You Will Need... 4 Install the QuiC Tool... 6 Install the QuiC Runtime... 7 Basics of the QuiC

More information

Installation guide. Step1. Install the OS for Raspberry Pi 3. Go to to download Raspbian to the PC.

Installation guide. Step1. Install the OS for Raspberry Pi 3. Go to   to download Raspbian to the PC. Installation guide Step1. Install the OS for Raspberry Pi 3 Go to https://www.raspberrypi.org/downloads/ to download Raspbian to the PC. Unzip 2017-01-11-raspbian-jessie.zip and you will get a disc image

More information

Avalanche Remote Control User Guide. Version 4.1

Avalanche Remote Control User Guide. Version 4.1 Avalanche Remote Control User Guide Version 4.1 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway, Suite 200 South Jordan, Utah 84095

More information

Raspberry PI 'How-To' Series

Raspberry PI 'How-To' Series Raspberry PI 'How-To' Series AOSONG AM2315 Temperature Sensor Implementation Guide Update Written by: Sopwith Revision 3.0 February 1, 2019 sopwith@ismellsmoke.net 1 Introduction Here we are in February

More information

Sigma Tile Workshop Guide. This guide describes the initial configuration steps to get started with the Sigma Tile.

Sigma Tile Workshop Guide. This guide describes the initial configuration steps to get started with the Sigma Tile. Sigma Tile Workshop Guide This guide describes the initial configuration steps to get started with the Sigma Tile. 1 Contents Contents... 2 Chapter 1: System Requirements... 3 Chapter 2: Configure Your

More information

Akkadian Console 4.0

Akkadian Console 4.0 Akkadian Console 4.0 User Guide Copyright and Trademarks: I. Copyright: This website and its content is copyright 2015 Akkadian Labs, LLC. All rights reserved. Except with the prior written permission

More information

Castlerock / Network CFS Installation & General Procedures

Castlerock / Network CFS Installation & General Procedures Castlerock / Network CFS Installation & General Procedures Richardson Electronics 12975 16 th Ave. N. Suite 300 Plymouth, MN 55441 USA www.imagesystemscorp.com Castlerock-Network CFS install 1 Contents

More information

MPX Server Software User Manual

MPX Server Software User Manual MPX Server Software User Manual Contents 1 Server Software Installation... - 3 - Initial Setup... - 6-2 Software Interface... - 10 - Login Page:... - 10-2.1 Homepage... - 12-2.2 Resources... - 13-2.3 Composer...

More information

Touch Dynamic Quest II 7 - Tablet Staging Setup

Touch Dynamic Quest II 7 - Tablet Staging Setup Touch Dynamic Quest II 7 - Tablet Staging Setup Overview This page was written to assist with setting up and staging of tablets. Touch Dynamic Quest II 7 - Initializing and Turning on the Tablet 1. When

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

Raspberry Pi 3 Model B+ and JMRI with WiFi Access Point for Pi- SPROG One and Pi-SPROG Nano raspian-stretch build

Raspberry Pi 3 Model B+ and JMRI with WiFi Access Point for Pi- SPROG One and Pi-SPROG Nano raspian-stretch build Raspberry Pi 3 Model B+ and JMRI with WiFi Access Point for Pi- SPROG One and Pi-SPROG Nano 2018-03-13-raspian-stretch build May 2018 SPROG DCC These instructions describe the process of setting up a Raspberry

More information

College of Pharmacy Windows 10

College of Pharmacy Windows 10 College of Pharmacy Windows 10 Windows 10 is the version of Microsoft s flagship operating system that follows Windows 8; the OS was released in July 2015. Windows 10 is designed to address common criticisms

More information

4-1. This chapter explains HMI settings.

4-1. This chapter explains HMI settings. 4-1 4. Hardware Settings This chapter explains HMI settings. 4.1. Overview... 4-2 4.2. I/O Ports... 4-2 4.3. LED Indicators... 4-2 4.4. System Reset... 4-3 4.5. System Toolbar... 4-4 4.6. System Setting

More information

Starting the KVM Console

Starting the KVM Console Starting the KVM Console This chapter includes the following sections: KVM Console, page 1 Starting the KVM Console from a Server, page 5 Starting the KVM Console from a Service Profiles, page 5 Starting

More information

RS-1260 Digital Signage Player

RS-1260 Digital Signage Player RS-1260 Digital Signage Player User Manual V1.3 Legal Notice and Disclaimer Thank you for choosing RapidSignage products. This user manual provides a description of the Player relevant guidelines for key

More information

USER GUIDE. BrightSign Network WebUI Version 3.1. BrightSign, LLC Lark Ave., Suite 200 Los Gatos, CA

USER GUIDE. BrightSign Network WebUI Version 3.1. BrightSign, LLC Lark Ave., Suite 200 Los Gatos, CA USER GUIDE BrightSign Network WebUI Version 3.1 BrightSign, LLC. 16795 Lark Ave., Suite 200 Los Gatos, CA 95032 408-852-9263 www.brightsign.biz TABLE OF CONTENTS Introduction 1 What Can I Do with the WebUI?

More information

Google Sites Training

Google Sites Training The How to Dos of Google Sites Overview Page 1 Google Sites offers tremendous functionality to make collaborating and sharing information simple. This job aid provides the step-by-step instructions that

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

WA L KT H R O U G H 1

WA L KT H R O U G H 1 WA L KT H R O U G H 1 udig Install and Introduction 08 June 2008 TABLE OF CONTENTS 1Goals...3 2Installing and Running The udig Application...4 3Online Documentation and Tutorials...8 3.1Help Categories...9

More information

NovTech User Guide Chameleon96

NovTech User Guide Chameleon96 NovTech User Guide Chameleon96 Document Name: User Guide Document Number: 001-127-04-05-01 Rev. 1.1 10/2017 Property of NovTech, Inc. 2017. All Rights Reserved Contact Information: Home Page: Company:

More information

IdeaTab A1000L-F. User Guide V1.0. Please read the Important safety and handling information in the supplied manuals before use.

IdeaTab A1000L-F. User Guide V1.0. Please read the Important safety and handling information in the supplied manuals before use. IdeaTab A1000L - UserGuide IdeaTab A1000L-F User Guide V1.0 Please read the Important safety and handling information in the supplied manuals before use. file:///c /Users/xieqy1/Desktop/EN UG/index.html[2013/8/14

More information

SPCway Plus Vizualisation Setup guide

SPCway Plus Vizualisation Setup guide SPCway Plus Vizualisation Setup guide Adapted for SPCway Plus firmware 1.4 SPCway Plus Vizualisation Setup Guide V0.2 EN www.knxlogic.eu Page 1 Note: the page numbering is not linear and certain pages

More information

Managing the Web Interface

Managing the Web Interface 3 CHAPTER The Cisco Prime Performance Manager web interface is the primary method for displaying network reports and managing network devices and information. The following topics tell you how to launch

More information

USER GUIDE. BrightSign Network Enterprise Edition WebUI Version 3.5

USER GUIDE. BrightSign Network Enterprise Edition WebUI Version 3.5 USER GUIDE BrightSign Network Enterprise Edition WebUI Version 3.5 BrightSign, LLC. 16795 Lark Ave., Suite 200 Los Gatos, CA 95032 408-852-9263 www.brightsign.biz TABLE OF CONTENTS Introduction 1 What

More information

Aware IM Version 8.2 Aware IM for Mobile Devices

Aware IM Version 8.2 Aware IM for Mobile Devices Aware IM Version 8.2 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS Introduction... 3 General Approach... 3 Login... 4 Using Visual Perspectives... 4 Startup Perspective... 4 Application Menu... 5 Using

More information

Users Guide. Wyse PocketCloud TM. Issue: PN: Rev. F

Users Guide. Wyse PocketCloud TM. Issue: PN: Rev. F Users Guide Wyse PocketCloud TM Issue: 083010 PN: 883930-01 Rev. F Copyright Notices 2010, Wyse Technology Inc. All rights reserved. This manual and the software and firmware described in it are copyrighted.

More information

RX300 Settings Manual General

RX300 Settings Manual General RX300 Settings Manual General The RX300 is provisioned by the administrator. The settings can be modified remotely from vspace Console or the RX300 device itself. In the General tab, the administrator

More information

08/10/2018. Istanbul Now Platform User Interface

08/10/2018. Istanbul Now Platform User Interface 08/10/2018 Contents Contents...5 UI16... 9 Comparison of UI16 and UI15 styles... 11 Activate UI16... 15 Switch between UI16 and UI15...15 UI16 application navigator... 16 System settings for the user

More information

IBM / ST SensorTile Watson IoT Workshop

IBM / ST SensorTile Watson IoT Workshop IBM / ST SensorTile Watson IoT Workshop Connect the ST Microelectronics SensorTile to IBM Watson IoT Download this PDF and Node-RED flows at https://github.com/johnwalicki/sensortile-watsoniot-workshop

More information

dnsmasq configuration

dnsmasq configuration Aim: Raspberry Pi searches for known router's (SSID) If the router is not found then it creates a hotspot so tablets, phones and computers can connect to the Raspberry Pi's WiFi hotspot, which is not routed

More information

Davide Cavaliere 18 th February 2017

Davide Cavaliere  18 th February 2017 Davide Cavaliere www.monocilindro.com dadez87@gmail.com 18 th February 2017 This guide explains how to set in read mode your Raspberry Pi 3, running the latest Raspbian Jessie (January 2017). This feature

More information

Raspberry Pi 3 Starter Kit Hookup Guide

Raspberry Pi 3 Starter Kit Hookup Guide Page 1 of 11 Raspberry Pi 3 Starter Kit Hookup Guide Introduction Now that the Raspberry Pi 3 is the latest and greatest in the line of Raspberry Pi Single Board Computers, what s new? This hookup guide

More information

EIGNER PLM 5.1 RELEASE NOTES

EIGNER PLM 5.1 RELEASE NOTES EIGNER PLM 5.1 RELEASE NOTES April 22, 2004 Eigner PLM 5.1 represents both: a service release and a feature release. This document outlines improvements as well as major enhancements and additions that

More information

MindManager Enterprise for Windows Release Notes

MindManager Enterprise for Windows Release Notes MindManager Enterprise for Windows Release Notes February 11, 2016 Release version: 16.1.193 Mindjet Corporation Toll Free: 877-Mindjet 1160 Battery Street East San Francisco CA 94111 USA Phone: 415-229-4200

More information

Wholesale Lockbox User Guide

Wholesale Lockbox User Guide Wholesale Lockbox User Guide August 2017 Copyright 2017 City National Bank City National Bank Member FDIC For Client Use Only Table of Contents Introduction... 3 Getting Started... 4 System Requirements...

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

Please read this manual carefully before you use the unit and save it for future reference.

Please read this manual carefully before you use the unit and save it for future reference. ANDROID STEREO RECEIVER Please read this manual carefully before you use the unit and save it for future reference. Installation Precaution: 1. This unit is designed for using a 12V negative ground system

More information

ARCAD 5250 Emulator for RDi and Eclipse. Tutorial

ARCAD 5250 Emulator for RDi and Eclipse. Tutorial ARCAD 5250 Emulator for RDi and Eclipse Tutorial For IBM Rational Developer for i version: 7.5+ For Eclipse version: 3.4+ Date: Jun-09 Copyright 1992, 2009 by ARCAD Software, Inc. All rights reserved.

More information

Defining New Node-RED Nodes

Defining New Node-RED Nodes Overview Node-RED is a highly graphical programming environment however there are some things which cannot be done using the out-of-the-box nodes. Using the Function Node is one way to get around this

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Getting Started Guide XC9010 Raspberry Pi Starter Kit

Getting Started Guide XC9010 Raspberry Pi Starter Kit Getting Started Guide XC9010 Raspberry Pi Starter Kit The Raspberry Pi has been designed as a computer that anyone can use. If you want to get started with a Raspberry Pi, but don t know where to start,

More information

Getting started with Raspberry Pi (and WebIoPi framework)

Getting started with Raspberry Pi (and WebIoPi framework) Getting started with Raspberry Pi (and WebIoPi framework) 1. Installing the OS on the Raspberry Pi Download the image file from the Raspberry Pi website. It ll be a zip file as shown below: Unzip the file

More information

Software User's Guide

Software User's Guide Software User's Guide The contents of this guide and the specifications of this product are subject to change without notice. Brother reserves the right to make changes without notice in the specifications

More information

EEG DE361 HD BAS Decoder Product Manual

EEG DE361 HD BAS Decoder Product Manual EEG DE361 HD BAS Decoder Product Manual All rights reserved. [This page left intentionally blank] eeg Table Of Contents Introduction 2 Product Description... 2 Installation 3 Front Panel... 3 Rear Panel...

More information

Dell EMC OpenManage Mobile. Version User s Guide (Android)

Dell EMC OpenManage Mobile. Version User s Guide (Android) Dell EMC OpenManage Mobile Version 2.0.20 User s Guide (Android) Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

Simulation Manager Configuration Guide

Simulation Manager Configuration Guide Cornell University College of Veterinary Medicine Student Training Simulation Project Simulation Manager Configuration Guide 2018-Oct-1 Version 1.9 Prepared by: I-Town Design David Weiner 117 Burleigh

More information

User manual for: Raspberry pi configuration Cinema version for the Digital 3D viewer D50-x

User manual for: Raspberry pi configuration Cinema version for the Digital 3D viewer D50-x de Wijs apparatenbouw Vleugelboot 68, 3991CL, Houten the Netherlands Tel. +31 (0)30-6364928 Fax. +31 (0)30-6361723 e-mail: info@dewijs-3d.com Website: www.dewijs-3d.com User manual for: Raspberry pi configuration

More information

Online Help StruxureWare Data Center Expert

Online Help StruxureWare Data Center Expert Online Help StruxureWare Data Center Expert Version 7.2.7 What's New in StruxureWare Data Center Expert 7.2.x Learn more about the new features available in the StruxureWare Data Center Expert 7.2.x release.

More information

Release Notes for ClearID 2.6.2, 2.6.3a

Release Notes for ClearID 2.6.2, 2.6.3a Release Notes for ClearID 2.6.2, 2.6.3a Date: 02/27/2015 Version ClearID 2.6.3a ClearID 2.6.1 ClearID 2.5 Support Date* 04/01/2010 04/01/2010 04/01/2010 Release Date 02/27/2015 05/29/2012 09/14/2010 *Free

More information

Cisco IP Phone 8800 Series Release Notes for Firmware Release 11.5(1)

Cisco IP Phone 8800 Series Release Notes for Firmware Release 11.5(1) Cisco IP Phone 8800 Series Release Notes for Firmware First Published: 2016-06-03 Last Modified: 2016-10-13 Cisco IP Phone 8800 Series Release Notes for Firmware Release 11.5(1) These release notes support

More information

3. Click on the Download ZIP button under Raspbian Jessie, and select a folder to save it to.

3. Click on the Download ZIP button under Raspbian Jessie, and select a folder to save it to. 1. INITIAL CONFIGURATION RASPBERRY COMPONENTS INSTALL RASPBIAN IN YOUR RASPBERRY 1. Visit the official Raspberry Pi Downloads page 2. Click on Downloads Raspbian. 3. Click on the Download ZIP button under

More information

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version 23-1 - 04-18 Summary Part 1 - Report editor 1. Introduction... 13 2. How to create a report... 23 3. Data sources of a report... 43 4. Describing

More information

User Manual For SmartRoom Managers

User Manual For SmartRoom Managers User Manual For SmartRoom Managers Table of Contents 1.0 Login 2.0 Confidentiality Agreement 3.0 Software Installation 4.0 Dashboard 5.0 Document Review and Index Maintenance 5.1 View by Index 5.1.1 Index

More information

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2393 Data Science for Solution Architects Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

Acknowledgments...xvi Introduction... xvii Primer Project 1: Blinking an LED Project 2: Pushbutton LED Flashlight...

Acknowledgments...xvi Introduction... xvii Primer Project 1: Blinking an LED Project 2: Pushbutton LED Flashlight... Contents Acknowledgments...xvi Introduction... xvii Primer... 2 LEDs Project 1: Blinking an LED... 36 Project 2: Pushbutton LED Flashlight... 46 Project 3: LED Dimmer Switch... 52 Project 4: A Graphical

More information

Introduction. The topics included in this guide are:

Introduction. The topics included in this guide are: Introduction Caorda Content is a powerful content management tool that allows you to update your web site through a standard Internet web browser. The purpose of this guide is to introduce you to Caorda

More information

4-1. This chapter explains HMI settings.

4-1. This chapter explains HMI settings. 4-1 4. Hardware Settings This chapter explains HMI settings. 4.1. Overview... 4-2 4.2. I/O Ports... 4-2 4.3. LED Indicators... 4-2 4.4. System Reset... 4-3 4.5. System Toolbar... 4-4 4.6. EasySystemSetting...

More information

Cisco VDS Service Broker Software Installation Guide for UCS Platforms

Cisco VDS Service Broker Software Installation Guide for UCS Platforms Cisco VDS Service Broker 1.0.1 Software Installation Guide for UCS Platforms Revised: May 2013 This document provides detailed instructions for installing the Cisco Videoscape Distribution Suite Service

More information