Appendix 11 Z-Wave. What is Z-Wave? Building a Z-Wave network

Size: px
Start display at page:

Download "Appendix 11 Z-Wave. What is Z-Wave? Building a Z-Wave network"

Transcription

1 Appendix 11 Z-Wave This appendix describes support for Z-Wave interfaces and devices. Included are these sections: What is Z-Wave? Building a Z-Wave network Configuring the Leviton Z-Wave Interface Z-Wave Devices Z-Wave Visual Program Element Z-Wave Triggers Before you begin with Z-Wave! Z-Wave is a bit like Linux lots of capability with little consistency between providers or documentation. Z-Wave can do a lot if you can just find the right piece of the puzzle and know where to put it. Z-Wave is very different from other HCA supported protocols in that HCA provides only a method to send and receive commands from the interface. It does not attempt to encode or decode those commands. Because of this, HCA technical support can offer little beyond what is in this User Guide Appendix and the Z-Wave technical notes available on the support web site. Beyond this you are on your own. What is Z-Wave? Z-Wave is a proprietary wireless mesh networking technology originally developed by the Danish company Zensys, now part of Sigma Designs. Because Sigma Designs considers documentation about Z-Wave technology proprietary, and makes such documentation only available under license, it can be a bit challenging to figure out how it works and how to control Z-Wave devices. Unlike HCA support for UPB, Insteon, X10 and Wireless devices, there is very little built-in to HCA for Z-Wave. There is support for very simple one-way on-off-dim and on-off devices but that s all. All other device types you may want to add to your design thermostats, two-way devices, door locks, etc all have to have their protocol determined and then that protocol implemented in HCA programs you create. This is much different than other supported protocols! Fortunately, there is a good deal of Z-Wave information on the Internet. A recommendation is to search for protocol and command information on your devices. On the HCA web site is a technical note that discusses using the HCA Z-Wave support for Z-Wave door locks. Building a Z-Wave network While there are several Z-Wave interfaces available, HCA supports only the Leviton Vizia RF+ serial to Z-Wave interface. This interface is model number VRC0P. The Home Control Assistant 1

2 Just as a UPB network is initially configured using a tool external to HCA (UPStart), a Z-Wave network is configured with a Windows program. This software, available for download from Leviton is called the Vizia RF+ Installer Tool. To use this program you need also a LEVVRUSB-1US USB stick for configuration. This USB stick will be the primary controller in your network. The Leviton VRC0P will function as a secondary controller, in Z-Wave parlance, even though it will be the way HCA controls your Z-Wave devices. Instructions for creating a Z-Wave network using the Leviton USB stick and installation software can be found in the Help file included with the Vizia RF+ Installer Tool and on the Leviton support web site. Tip: When you do the final network configuration with the Leviton tool, all Z-Wave devices need to be in their final location. Moving Z-Wave devices affects the network topology, and can adversely affect network routing if the network is not re-optimized. Configuring the Leviton Z-Wave interface The Leviton Z-Wave interface is identified to HCA like all interfaces from the hardware setup tab of HCA Options. The only piece of information needed is the serial port it uses. The configure button sets the logging options: 2 The Home Control Assistant

3 As described in the Leviton application note, each message sent to the interface usually generates an E response with an error code, followed by a X response that shows the transmission status. You can choose to log these or not. Tip: The Leviton application note that describes the Leviton Z-Wave protocol is available on the HCA support web site in the technical notes section. Z-Wave devices HCA directly supports only simple one-way on-off-dim and on-off devices. To use these devices select as their type Z-Wave Generic dimmable device or Z-Wave generic non-dimmable device. In the next step of the wizard the unit id of the Z-Wave device is set: The Home Control Assistant 3

4 The unit id you enter into HCA comes from the Leviton setup tool: 4 The Home Control Assistant

5 Z-Wave Visual Program Element The real power of Z-Wave is not in the simple devices described in the above section but rather in the devices that you can implement. The key piece is the Z-Wave Visual Programmer element. Interface Viewer Enter the text to send into the Send Text box. This can be the actual text or the result of an expression evaluation if the Expression option is used. Depending upon the command you can expect E and X responses and if so tick those boxes and those messages are specifically decoded and the values assigned to the selected flags. If the command generates additional responses, enter the number of expected responses and then, for each response, select the flag that reception is assigned to. You can select an existing flag or type in the name of a new flag that is created. What does a very simple Z-Wave command look like? You can use the Interface Viewer. Open the Interface Viewer from the Interfaces ribbon category. This viewer shows the messages sent to and received from one or more interfaces. This gives you a window into the communications at the lowest level. In the image below, an ON command was sent to unit number 2. The interface replied back with an E response with code 0 (success) and an X response with code 0 (success). The Home Control Assistant 5

6 The names of the eight interfaces that can be configured are the first set of checkboxes. Tick the ones that you want to see data from. Interfaces not configured are listed as Unused. The Show box determines what sort of information you want to view. Tick or clear the boxes for the type of data you want to see. You can turn the viewer on or off with the button at the bottom of the dialog. When green the viewer is enabled and when red it isn t. In the dialog list, messages received from the interface are prefixed with RD, messages sent to the interface are prefixed with WR, and if the message is decoded messages from some interfaces are decoded but Z-Wave messages aren t they are prefixed with DC. Enclosed in [] s is the number of the interface the line is for. The first interface is numbered 0 and the last is numbered 7. This interface is at a very low level so you may see, because of the nature of network and serial reads, a single reception broken across multiple RD lines. You can clear the list with the Clear button and save the list into a text file with the Save button. 6 The Home Control Assistant

7 Triggers Messages received from the Z-Wave interface can be used as a trigger for a program. To create a trigger of this type, select as the trigger type Zwave Reception. There are several parts to a ZWave Reception trigger and these are covered in the next sections. Pattern Unlike, for example, Insteon triggers where the reception from an Insteon interface is decoded into a source device and command, and Insteon triggers specify that source and command, the ZWave Reception trigger is based only on the text of the reception itself. A ZWave Reception trigger contains a pattern that is matched against the received text. If the pattern matches the received text then the program is triggered. If the reception doesn t match the pattern then the program is not triggered. The pattern is specified as a Regular Expression. A regular expression is a sequence of characters that forms a search pattern. The full description of a regular expression is beyond the scope of this User Guide but here are the fundamentals. A regular expression is composed of a series of characters and metacharacters. Characters that are not metacharacters match the corresponding changes in the text. Meta characters describe one or more possible characters to match in the text. The metacharacters are: Character Use. (dot) Matches any single character. For example, a.c matches "abc", or "axc" or "a6c" etc. [ ] A bracket expression. Matches a single character that is contained within the brackets. For example, [abc] matches "a", "b", or "c". [a-z] specifies a range which matches any The Home Control Assistant 7

8 lowercase letter from "a" to "z". These forms can be mixed: [abcx-z] matches "a", "b", "c", "x", "y", or "z", as does [a-cx-z]. [^ ] Matches a single character that is not contained within the brackets. For example, [^abc] matches any character other than "a", "b", or "c". [^a-z] matches any single character that is not a lowercase letter from "a" to "z". ^ Matches the starting position within the string $ Matches the ending position of the string * Matches the preceding element zero or more times. For example, ab*c matches "ac", "abc", "abbbc", etc. [xyz]* matches "", "x", "y", "z", "zx", "zyx", "xyzzy", and so on. {m, n} Matches the preceding element at least m and not more than n times. For example, a{3,5} matches only "aaa", "aaaa", and "aaaaa". This is not found in a few older instances of regular expressions \ The following character is a character and not a metacharacter Here are some examples:.* matches any text..at matches any three-character string ending with "at", including "hat", "cat", and "bat". [hc]at matches "hat" and "cat". [^b]at matches all strings matched by.at except "bat". [^hc]at matches all strings matched by.at other than "hat" and "cat". ^[hc]at matches "hat" and "cat", but only at the beginning of the string or line. [hc]at$ matches "hat" and "cat", but only at the end of the string or line. \[.\] matches any single character surrounded by "[" and "]" since the brackets are escaped, for example: "[a]" and "[b]". Since it can be complex to compose a regular expression, in the dialog is a Validate button that checks the syntax of the regular expression. You must use the Validate button to check the pattern before creating the trigger. However, just because the syntax is correct that doesn t mean that the pattern matches strings as you expect. Only testing shows that. Tip: Use your favorite search engine or Wikipedia to find the full syntax of regular expressions. Flag assignment ZWave Reception triggers are also different than other triggers in an additional aspect. The text of the reception can be assigned to a flag for subsequent decoding in the triggered program. Select the name of an existing flag or type in the name of a new flag. If the program is triggered when the pattern matches the reception the received text is assigned to the flag before the program starts. This lets you do further decoding of the reception in the program that is started. This is an optional feature of the trigger. If you don t want to use this, set the flag as <Unused> 8 The Home Control Assistant

9 Trigger of last resort You can also create a trigger that starts a program if no trigger on any program matches the Z-Wave reception. Of course, only one program can be designated with this trigger. To enable this option tick the Trigger on a reception not otherwise handled checkbox. The Home Control Assistant 9

Chapter 25 Design Tools

Chapter 25 Design Tools Chapter 25 Design Tools There are several tools in HCA that can make managing your home design a bit easier. This chapter describes these tools and includes: Using the Program Variable Inventory HCA Status

More information

Appendix 10 Protocol Bridges

Appendix 10 Protocol Bridges Appendix 10 Protocol Bridges This appendix describes a feature in HCA that, with little setup, allows you to control devices that respond to one protocol with controllers that transmit a different protocol.

More information

Getting Started with HCA and X10

Getting Started with HCA and X10 Getting Started with HCA and X10 This Getting Started Guide continues from the previous Getting Started with HCA Installation and Introduction which covers installing HCA and the basic operations available

More information

Getting Started with HCA and UPB

Getting Started with HCA and UPB Getting Started with HCA and UPB This Getting Started Guide continues from the previous Getting Started with HCA Installation and Introduction which covers installing HCA and the basic operations available

More information

Appendix 8 Universal Powerline Bus (UPB)

Appendix 8 Universal Powerline Bus (UPB) Appendix 8 Universal Powerline Bus (UPB) This appendix describes the features in HCA in support of the UPB technology and products available from Powerline Control Systems (PCS), Simply Automated Inc,

More information

Chapter 11 Programs and the Visual Programmer

Chapter 11 Programs and the Visual Programmer Chapter 11 Programs and the Visual Programmer Once you have created your HCA design with devices and groups, schedules, and schedule entries, you may want to take the next step and create programs to help

More information

Getting Started with HCA and Insteon

Getting Started with HCA and Insteon Getting Started with HCA and Insteon This Getting Started Guide continues from the previous Getting Started with HCA Installation and Introduction which covers installing HCA and the basic operations available

More information

Getting Started with HCA PLUS

Getting Started with HCA PLUS Getting Started with HCA PLUS From install to full function in eight steps Everyone has seen those advertisements by many different companies that show people turning off their lights, unlocking doors,

More information

Appendix 9 Insteon. What is Insteon?

Appendix 9 Insteon. What is Insteon? Appendix 9 Insteon This appendix describes the features in HCA in support of the Insteon technology and Insteon products available from SmartHome. These topics are covered: What is Insteon? Insteon devices

More information

HCA Tech Note 600. User Implemented Device Classes for Class Creators

HCA Tech Note 600. User Implemented Device Classes for Class Creators User Implemented Device Classes for Class Creators User Implemented device classes allow support for devices that are not supported in the base HCA product like X10, Insteon, UPB, and Phillips Hue is.

More information

Chapter 3 HCA Options

Chapter 3 HCA Options Chapter 3 HCA Options You control the functions of the Home Control Assistant through various options. These options are accessible though the HCA Application menu HCA Options button. Because the HCA options

More information

HCA Tech Note 220: Using the SmartHome Insteon Hub

HCA Tech Note 220: Using the SmartHome Insteon Hub HCA Tech Note 220: Using the SmartHome Insteon Hub The Insteon Hub and the older 2412N are interesting products but they are not a 2413 PowerLinc with a network connection in a box. They are much different

More information

Chapter 20 Troubleshooter

Chapter 20 Troubleshooter Chapter 20 Troubleshooter Once you have been using the Home Control Assistant for a while, you will probably want to look at the Troubleshooter. The Troubleshooter is a set of several tools you can use

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

Using the HCA Server as a bridge from Alexa to the world

Using the HCA Server as a bridge from Alexa to the world Using the HCA Server as a bridge from Alexa to the world You can use the HCA Server to control all the devices and programs that HCA supports Insteon, UPB, X10, IR, etc. But you can also use the HCA Server

More information

Chapter 5 Devices. About devices. Planning your devices

Chapter 5 Devices. About devices. Planning your devices Chapter 5 Devices About devices A device is the name HCA gives to real world items like a switch or module that it can control. First you create the device in HCA using the New Device Wizard. When you

More information

Chapter 4 Devices. About devices. Planning your devices

Chapter 4 Devices. About devices. Planning your devices Chapter 4 Devices A device is the name HCA gives to real world items like a switch or module that it can control. First you create the device in HCA using the New Device Wizard. When you create the device

More information

HCA 14 Changes (as of 22-Sep-2017)

HCA 14 Changes (as of 22-Sep-2017) HCA 14 Changes (as of 22-Sep-2017) NOTE: Don t assume any priority or importance of these items just by the placement in the list. The order has no importance. HTTP VP element Flags to Variables Program

More information

Chapter 24 Control User Interface

Chapter 24 Control User Interface Chapter 24 Control User Interface The Control Interface sometimes called the Touch Screen Interface even though it works well on non-touch screens - is an alternative user interface that can be used to

More information

Chapter 21 Restart. Types of power supply

Chapter 21 Restart. Types of power supply Chapter 21 Restart HCA is a program different than others that you may run on your computer. Unlike an email program or a word processor which you may start and exit many times a day, HCA is designed to

More information

Home Control Assistant Version 13 User Guide

Home Control Assistant Version 13 User Guide Home Control Assistant Version 13 User Guide WWW.HCATech.com The information contained in this document is subject to change without notice. Advanced Quonset Technology, Inc. provides this information

More information

Chapter 1 What is the Home Control Assistant?

Chapter 1 What is the Home Control Assistant? Chapter 1 What is the Home Control Assistant? About this guide In today s complex world, busy people can benefit from a home environment that anticipates their needs and helps take care of itself. For

More information

Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019

Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019 Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019 Before starting these instructions, you should already have your Voice assistant installed and working. These instructions can be used

More information

Lighting Integration Note

Lighting Integration Note OneHome Management and Control Solutions Lighting Integration Note Manufacturer: Leviton Vizia Lighting System Model Number(s): See table below Comments: OneHome Version 4.0.1133 and newer Document Revision

More information

HCA Tech Note 500. HCA Cloud Account (as of 29-May-2017) Do I need a Cloud Account?

HCA Tech Note 500. HCA Cloud Account (as of 29-May-2017) Do I need a Cloud Account? HCA Cloud Account (as of 29-May-2017) Running on a computer in your home, HCA controls devices and executes schedules and programs. And at one time that is all there was. Everything resided in the home.

More information

Chapter 12 Visual Program Debugger

Chapter 12 Visual Program Debugger Chapter 12 Visual Program Debugger In the previous chapter on programs a section titled Getting programs to do what you want discussed using the log to trace how programs execute. That is a useful technique

More information

Regardless of which of these methods is used to create a new design, there are two important pieces of information you ll have to configure.

Regardless of which of these methods is used to create a new design, there are two important pieces of information you ll have to configure. Chapter 4 Your Home You ve already read the introduction to the Home Control Assistant and learned about HCA Properties. Now you re ready to create you own home design in HCA. This chapter tells you how

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

Appendix 5 IR Interfaces

Appendix 5 IR Interfaces Appendix 5 IR Interfaces This appendix describes HCA support for two supported IR Interfaces: the Global Caché GC-100 and the Bitwise BC4. These network devices they are located by an IP address contain

More information

OmniPro II Version 2.14 Firmware Release

OmniPro II Version 2.14 Firmware Release OmniPro II Version 2.14 Firmware Release ADD THIS DOCUMENT TO YOUR OMNIPRO II OWNER S MANUAL Description The OmniPro II Version 2.14 firmware adds the following new features: Support for Z-Wave technology

More information

SILENCING AN ALARM. When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad.

SILENCING AN ALARM. When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad. S Y S T E M U S E R G U I D E SILENCING AN ALARM When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad. IS THIS A FALSE ALARM? YES NO displays. REAL ALARM

More information

HCA Tech Note. Working with the Insteon EZIO2X4 4 input and 2 output

HCA Tech Note. Working with the Insteon EZIO2X4 4 input and 2 output Working with the Insteon EZIO2X4 4 input and 2 output http://www.smarthome.com/smartenit-ezio2x4-2-output-4-input-relay-controller.html The complexity of using the EZIO2X4 in HCA is that there are two

More information

HCA Tech Note 103. Expressions. Example: Conversion

HCA Tech Note 103. Expressions. Example: Conversion Expressions This technical note provides several examples on some of the common uses of expressions and the Compute element. The Compute element opens a lower level of HCA than available from the Visual

More information

V13 Change Notes 28-March-2016

V13 Change Notes 28-March-2016 V13 Change Notes 28-March-2016 Parameterized programs...3 Parameterized Triggers...9 HCA Dynamic DNS...12 HCA Alexa support...12 Generic Triggers...13 PING...15 Change to Start-Program element...18 Alerts

More information

HCA Tech Note 502. HCA Cloud Developer Access (as of 12-April-2018)

HCA Tech Note 502. HCA Cloud Developer Access (as of 12-April-2018) HCA Cloud Developer Access (as of 12-April-2018) Using the same facilities used to support partner services, HCA provides a way for individual users to access to their own HCA Server using the same cloud

More information

Advanced Handle Definition

Advanced Handle Definition Tutorial for Windows and Macintosh Advanced Handle Definition 2017 Gene Codes Corporation Gene Codes Corporation 525 Avis Drive, Ann Arbor, MI 48108 USA 1.800.497.4939 (USA) +1.734.769.7249 (elsewhere)

More information

Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018

Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018 Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018 Before starting these instructions, you should already have your Voice assistant installed and working. These instructions can be used

More information

Chapter 28 HCA Client-Server

Chapter 28 HCA Client-Server Chapter 28 HCA Client-Server Everything described in the User Guide up to this point describes what is called stand-alone HCA. It works just like most other Windows applications you install it on your

More information

Non-deterministic Finite Automata (NFA)

Non-deterministic Finite Automata (NFA) Non-deterministic Finite Automata (NFA) CAN have transitions on the same input to different states Can include a ε or λ transition (i.e. move to new state without reading input) Often easier to design

More information

Getting Started with HCA and Client Server

Getting Started with HCA and Client Server Getting Started with HCA and Client Server This Getting Started Guide continues from the previous Getting Started sections that covered installation, adding devices, and checkbox control. This guide assumes

More information

We will start by reviewing some interface features, then we will explore Mail Merge.

We will start by reviewing some interface features, then we will explore Mail Merge. Word Our exploration of Word will focus on some ways it is used in the business environment, and also you will learn how to easily make accurately formatted bibliographies for academic papers. We will

More information

Bold, Italic and Underline formatting.

Bold, Italic and Underline formatting. Using Microsoft Word Character Formatting You may be wondering why we have taken so long to move on to formatting a document (changing the way it looks). In part, it has been to emphasise the fact that

More information

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page Configuring the Control UI Home Page HCA contains two different user interfaces: One interface called the Development UI - where all design elements and tools are available and you can make changes, and

More information

QUICK-START GUIDE TOUGHBOOK 33 FEBRUARY 2018 CONTACT. Address. Online. Phone & Fax

QUICK-START GUIDE TOUGHBOOK 33 FEBRUARY 2018 CONTACT. Address. Online. Phone & Fax TOUGHBOOK 33 QUICK-START GUIDE FEBRUARY 2018 CONTACT Address Phone & Fax Online KELTEK Incorporated 205 North High Street Baxter, Iowa 50028 United States Free Toll: + 1 855 855 0328 Phone: + 1 641 227

More information

RenameMan User Guide. ExtraBit Software

RenameMan User Guide. ExtraBit Software RenameMan User Guide ExtraBit Software http://www.extrabit.com Version 3.1 August, 2005 Contents Introduction... 5 What does RenameMan do?... 5 Features... 5 Quick tour of RenameMan... 5 Getting started...

More information

Formulas and Functions

Formulas and Functions Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

Z-Wave Control Network. Introducing the next-generation wireless solution to integrate home electronics and systems

Z-Wave Control Network. Introducing the next-generation wireless solution to integrate home electronics and systems Z-Wave Control Network Introducing the next-generation wireless solution to integrate home electronics and systems Overview Z-Wave LCD Remote Control Controls the entire Z-Wave lighting control network

More information

Getting Started with the HCA Plugin for Homebridge Updated 12-Nov-17

Getting Started with the HCA Plugin for Homebridge Updated 12-Nov-17 Getting Started with the HCA Plugin for Homebridge Updated 12-Nov-17 Table of Contents Introduction... 3 Getting Ready... 3 Step 1: Installing Bonjour... 5 Step 2: Installing Homebridge and the HCA Plugin...

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources JavaScript is one of the programming languages that make things happen in a web page. It is a fantastic way for students to get to grips with some of the basics of programming, whilst opening the door

More information

Skill Area 336 Explain Essential Programming Concept. Programming Language 2 (PL2)

Skill Area 336 Explain Essential Programming Concept. Programming Language 2 (PL2) Skill Area 336 Explain Essential Programming Concept Programming Language 2 (PL2) 336.2-Apply Basic Program Development Techniques 336.2.1 Identify language components for program development 336.2.2 Use

More information

3 The Building Blocks: Data Types, Literals, and Variables

3 The Building Blocks: Data Types, Literals, and Variables chapter 3 The Building Blocks: Data Types, Literals, and Variables 3.1 Data Types A program can do many things, including calculations, sorting names, preparing phone lists, displaying images, validating

More information

Programmer/Remote. Cat. RZCPG USER GUIDE 1 ON 2 ON 3 ON 4 ON

Programmer/Remote. Cat. RZCPG USER GUIDE 1 ON 2 ON 3 ON 4 ON 1 ON 2 ON 3 ON 4 ON Programmer/Remote Cat. RZCPG USER GUIDE + Compatible with TM enabled products! TABLE OF CONTENTS INTRODUCTION...1 MENU NAVIGATION & ICONS...2 4 STARTUP...4 INSTALLATION CHECKLIST...5

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

Outlook Basic Final Assignment Completed Examples

Outlook Basic Final Assignment Completed Examples Outlook Basic Final Assignment Completed Examples Task 1 Create a Signature, Contact, and Contact Group Image 1 Signature created with your personalized information Image 2 New contact created for Jane

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Microsoft Word - Starting the Mail Merge Wizard

Microsoft Word - Starting the Mail Merge Wizard Microsoft Word - Starting the Mail Merge Wizard Starting the Mail Merge Wizard. 1. Select the Mailings tab. 2. Click the Start Mail Merge button 3. Select Step by step Mil Merge Wizard. 4. Select the type

More information

HCA Tech Note 105: HTML displays with Client-Server

HCA Tech Note 105: HTML displays with Client-Server HCA Tech Note 105: HTML displays with Client-Server When using HCA in client-server mode and your design contains HTML displays there are some additional considerations when configuring clients. This technical

More information

DESCRIPTION OF NEW FUNCTIONS. Version 18.0

DESCRIPTION OF NEW FUNCTIONS. Version 18.0 DESCRIPTION OF NEW FUNCTIONS Version 18.0 This document describes new functions in Automation version 18. Descriptions of Component Wizard, Software License, PC SCHEMATIC Panelrouter and PC SCHEMATIC Service

More information

Regular Expressions. Regular Expression Syntax in Python. Achtung!

Regular Expressions. Regular Expression Syntax in Python. Achtung! 1 Regular Expressions Lab Objective: Cleaning and formatting data are fundamental problems in data science. Regular expressions are an important tool for working with text carefully and eciently, and are

More information

USING Z-WAVE LIGHTING DEVICES WITH HOMEVISION

USING Z-WAVE LIGHTING DEVICES WITH HOMEVISION USING Z-WAVE LIGHTING DEVICES WITH HOMEVISION 1.0 INTRODUCTION Several companies make products that support the Z-Wave communications protocol (see the website at http://www.z-wave.com/ for details). This

More information

HCA Tech Note. Port Forwarding

HCA Tech Note. Port Forwarding Port Forwarding Before you read this note hopefully you will have already read and followed the instructions in the Getting Started Guide for deploying client-server and being able to connect a client

More information

PRODUCTIVITY TIPS USING OUTLOOK Washtenaw Community College

PRODUCTIVITY TIPS USING OUTLOOK Washtenaw Community College PRODUCTIVITY TIPS USING OUTLOOK 2016 Washtenaw Community College August 23, 2018 TABLE OF CONTENTS Email Management... 3 1. Create a Rule:... 3 2. Add a Folder to Your Favorites... 3 To Show Folders in

More information

Visual Basic Program Coding STEP 2

Visual Basic Program Coding STEP 2 Visual Basic Program Coding 129 STEP 2 Click the Start Debugging button on the Standard toolbar. The program is compiled and saved, and then is run on the computer. When the program runs, the Hotel Room

More information

Bridgemate Pager. Messaging system for tournament directors. Manual Bridge Systems BV

Bridgemate Pager. Messaging system for tournament directors. Manual Bridge Systems BV Bridgemate Pager Messaging system for tournament directors Manual 2017 Bridge Systems BV Bridgemate Pager Manual Page 2 Contents Introduction... 3 Requirements... 3 How the pager system works... 3 Installing

More information

Docusnap X - Configuration Manual

Docusnap X - Configuration Manual Docusnap X - Configuration Manual English Version Docusnap X - Configuration Manual Table of Contents 5 Part I Introduction... 7 1 Conventions... 8 2 Organization of a Docusnap Installation 10 Part II

More information

7950 Pager Programming Manual For USB software v2.03

7950 Pager Programming Manual For USB software v2.03 7950 Pager Programming Manual For USB software v2.03 (Manual Revision 1.55) Last updated 9/07/2012 7950 Pager Manual NOTICE This manual, software and electronic circuitry are copyrighted. All rights reserved.

More information

quick guide 1 ON OFF OFF OFF OFF

quick guide 1 ON OFF OFF OFF OFF quick guide 1 ON 2 ON 3 ON 4 ON quick guide Leviton s Programmer/Remote Controller (Cat. No. VRCPG-0SG/ VRCPG-BSG/ RZCPG-0SG/ RZCPG-BSG) uses a wireless radio frequency called Z-Wave to act as a programmer,

More information

USING UPB LIGHTING DEVICES WITH HOMEVISION OR HOMEVISION-PRO

USING UPB LIGHTING DEVICES WITH HOMEVISION OR HOMEVISION-PRO USING UPB LIGHTING DEVICES WITH HOMEVISION OR HOMEVISION-PRO 1.0 INTRODUCTION This application note details how to use Universal Powerline Bus (UPB) lighting devices from Powerline Control Systems with

More information

Dealing with Event Viewer

Dealing with Event Viewer Dealing with Event Viewer Event Viewer is a troubleshooting tool in Microsoft Windows 2000.This how-to article will describe how to use Event Viewer. Event Viewer displays detailed information about system

More information

w w w. s i g n a m a x. c o m Power over Ethernet PoE A P P L I C A T I O N S G U I D E

w w w. s i g n a m a x. c o m Power over Ethernet PoE A P P L I C A T I O N S G U I D E TM w w w. s i g n a m a x. c o m Power over Ethernet PoE A P P L I C A T I O N S G U I D E Your Guide to PoE Table of Contents Your Guide to PoE...1 PoE Background...1 A Brief History...2 PoE Device Types...3

More information

Basic tasks in Outlook 2016

Basic tasks in Outlook 2016 Basic tasks in Outlook 2016 Microsoft Outlook 2016 organizes your emails, calendars, contacts, tasks, and to-do lists, all in one place. It all starts with your email account. From there you can start

More information

successes without magic London,

successes without magic London, (\d)(?:\u0020 \u0209 \u202f \u200a){0,1}((m mm cm km V mv µv l ml C Nm A ma bar s kv Hz khz M Hz t kg g mg W kw MW Ah mah N kn obr min µm µs Pa MPa kpa hpa mbar µf db)\b) ^\t*'.+?' => ' (\d+)(,)(\d+)k

More information

Datacard XPS Card Printer Driver Guide

Datacard XPS Card Printer Driver Guide Datacard XPS Card Printer Driver Guide November 2012 Part No. 527280-001 Rev. B Notice This publication and the accompanying software are proprietary to DataCard Corporation and are protected by U.S. patent

More information

Your File System Applications What s running on your machine It s own devices Networking. L07 - Getting to know your computer

Your File System Applications What s running on your machine It s own devices Networking. L07 - Getting to know your computer Getting to Know Your Computer Your File System Applications What s running on your machine It s own devices Networking Your File System My Computer Directories & Folders Hierarchy File Explorer (Rather

More information

To access Contacts view, locate and select the Contacts View tab in the lower-left corner of the screen. Contacts view will appear.

To access Contacts view, locate and select the Contacts View tab in the lower-left corner of the screen. Contacts view will appear. Outlook 2010 Managing Contacts Introduction Contacts view is the central place for all your contacts in Outlook 2010. Maintaining a detailed contacts list will make sending emails and scheduling meetings

More information

Declaration and Memory

Declaration and Memory Declaration and Memory With the declaration int width; the compiler will set aside a 4-byte (32-bit) block of memory (see right) The compiler has a symbol table, which will have an entry such as Identifier

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate (103-134) Building Access Databases Notes Quick Links Building Databases Pages AC52 AC56 AC91 AC93 Building Access Tables Pages AC59 AC67 Field Types Pages AC54 AC56 AC267 AC270

More information

Remote Universal Controller (RUC)

Remote Universal Controller (RUC) Remote Universal Controller (RUC) Web Mountain Technologies Page i User s Guide Revision 4.0 6/14/2013 Web Mountain Technologies Customer Support Line 303-627-1856 info@webmtn.com 6/14/2013 Add changes

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2008 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Universal Powerline Bus

Universal Powerline Bus Universal Powerline Bus X-10 To UPB Migration Document V 1.1 09/25/03 Page i Table Of Contents 1. Overview...1 1.1. Scope...1 2. Review Of The Protocols...2 2.1. Physical Methods...2 2.2. Device Addressing...2

More information

RZCPG USER GUIDE 1 ON OFF 2 ON OFF 3 ON OFF 4 ON OFF

RZCPG USER GUIDE 1 ON OFF 2 ON OFF 3 ON OFF 4 ON OFF Programmer/Remote Cat. RZCPG USER GUIDE 1 ON OFF 2 ON OFF 3 ON OFF 4 ON OFF Compatible with TM enabled products! TABLE OF CONTENTS INTRODUCTION... 1 GENERAL OPERATION... 2 Primary Programmer/Remote Software

More information

OneStop Reporting OSR Budgeting 4.5 User Guide

OneStop Reporting OSR Budgeting 4.5 User Guide OneStop Reporting OSR Budgeting 4.5 User Guide Doc. Version 1.3 Updated: 19-Dec-14 Copyright OneStop Reporting AS Contents Introduction... 1 Two Different Setup Strategies and Use of OSR Budgeting...

More information

ListPro. Users Guide and Reference. Ilium Software. for Windows PCs, Windows Mobile, and iphone. Version 5.1

ListPro. Users Guide and Reference. Ilium Software. for Windows PCs, Windows Mobile, and iphone. Version 5.1 ListPro Users Guide and Reference for Windows PCs, Windows Mobile, and iphone Version 5.1 Ilium Software ListPro: Users Guide and Reference Ilium Software Published 8/11/2017 Copyright 2000 2017 Ilium

More information

How to work a workbook

How to work a workbook CHAPTER 7 How to work a workbook Managing multiple workbooks...173 Opening multiple windows for the same workbook....178 Hiding and protecting workbooks...182 In early versions of Microsoft Excel, worksheets,

More information

Microsoft Office 2010: Introductory Q&As Access Chapter 3

Microsoft Office 2010: Introductory Q&As Access Chapter 3 Microsoft Office 2010: Introductory Q&As Access Chapter 3 Is the form automatically saved the way the report was created when I used the Report Wizard? (AC 142) No. You will need to take specific actions

More information

Intranet Quorum. Outlook 2007, 2010, 2013 and Add-In Features. v September 18, 2017

Intranet Quorum. Outlook 2007, 2010, 2013 and Add-In Features. v September 18, 2017 Intranet Quorum Outlook 2007, 2010, 2013 and 2016 Add-In Features v3.1.3.9 September 18, 2017 2017 Leidos Digital Solutions, Inc. Quorum, Intranet Quorum and the IQ logo are trademarks of Leidos Digital

More information

Printing Envelopes in Microsoft Word

Printing Envelopes in Microsoft Word Printing Envelopes in Microsoft Word P 730 / 1 Stop Addressing Envelopes by Hand Let Word Print Them for You! One of the most common uses of Microsoft Word is for writing letters. With very little effort

More information

DINO. Language Reference Manual. Author: Manu Jain

DINO. Language Reference Manual. Author: Manu Jain DINO Language Reference Manual Author: Manu Jain Table of Contents TABLE OF CONTENTS...2 1. INTRODUCTION...3 2. LEXICAL CONVENTIONS...3 2.1. TOKENS...3 2.2. COMMENTS...3 2.3. IDENTIFIERS...3 2.4. KEYWORDS...3

More information

BitLocker to Go: Encryption for personal USB

BitLocker to Go: Encryption for personal USB BitLocker to Go: Encryption for personal USB [Windows 10] Encryption is an effective method of protecting data stored on portable USB devices such as flash drives and external hard drives. Encryption encodes

More information

Configuration and Operation Manual for the SALTO

Configuration and Operation Manual for the SALTO AxxonSoft Configuration and Operation Manual for the SALTO Integration Module Version 1.2 Moscow, 2011 Contents CONTENTS... 2 1 LIST OF TERMS... 3 2 INTRODUCTION... 4 2.1 Purpose of document... 4 2.2 Structure

More information

STREAM EDITOR - REGULAR EXPRESSIONS

STREAM EDITOR - REGULAR EXPRESSIONS STREAM EDITOR - REGULAR EXPRESSIONS http://www.tutorialspoint.com/sed/sed_regular_expressions.htm Copyright tutorialspoint.com It is the regular expressions that make SED powerful and efficient. A number

More information

JavaScript Functions, Objects and Array

JavaScript Functions, Objects and Array JavaScript Functions, Objects and Array Defining a Function A definition starts with the word function. A name follows that must start with a letter or underscore, followed by any number of letters, digits,

More information

OmniLT Version 2.6 Firmware Release

OmniLT Version 2.6 Firmware Release OmniLT Version 2.6 Firmware Release ADD THIS DOCUMENT TO YOUR OMNILT OWNER S MANUAL Description The OmniLT Version 2.6 firmware adds the following new feature: Support for UPB (Universal Powerline Bus)

More information

Sony STR-DA2800ES/ 5800ES Receiver. Control4 Activation. Activation Guide. Supported Models/License. Introduction. Primary Controller

Sony STR-DA2800ES/ 5800ES Receiver. Control4 Activation. Activation Guide. Supported Models/License. Introduction. Primary Controller Sony STR-DA2800ES/ DA5800ES Receiver Control4 Automation Activation Guide The Sony STR-DA2800ES and DA5800ES receivers with full Control4 Automation activated result in an unmatched home entertainment

More information

PART X. Internetworking Part 1. (Concept, IP Addressing, IP Routing, IP Datagrams, Address Resolution)

PART X. Internetworking Part 1. (Concept, IP Addressing, IP Routing, IP Datagrams, Address Resolution) PART X Internetworking Part 1 (Concept, IP Addressing, IP Routing, IP Datagrams, Address Resolution) CS422 Part 10 1 Spring 1999 Motivation For Internetworking LANs Low cost Limited distance WANs High

More information

890 Pro Harmony Remote. User Manual version1.0

890 Pro Harmony Remote. User Manual version1.0 890 Pro Harmony Remote User Manual version1.0 Table of Contents INTRODUCTION...1 GETTING TO KNOW YOUR HARMONY REMOTE...2 BEGINNING THE SETUP PROCESS...3 USING YOUR HARMONY REMOTE...4 USING THE REMOTE WITH

More information

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands.

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands. Quick Start Guide Microsoft Excel 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Add commands to the Quick Access Toolbar Keep favorite commands

More information

Introduction to MS Excel Management Information Systems

Introduction to MS Excel Management Information Systems Introduction to MS Excel 2007 Management Information Systems 1 Overview What is MS Excel? Functions. Sorting Data. Filtering Data. Data Form. Data Validation. Create charts in Excel. Formatting Cells.

More information

VIS_ZM1602 Wireless Siren - mainspowered

VIS_ZM1602 Wireless Siren - mainspowered Image not readable or empty images/manufacturers/vision.png VIS_ZM1602 Wireless Siren - mainspowered Firmware Version : 1.65 Quick Start A This device is a wireless Z-Wave actor. For Inclusion and Exclusion

More information

Microsoft Access: Table Properites, Complex Forms. Start with a new, blank Access database,

Microsoft Access: Table Properites, Complex Forms. Start with a new, blank Access database, : Table Properites, Complex Forms Start with a new, blank Access database, : Let s create the tblperson. We are going to use advanced properties for the table fields and create an advanced form. Add a

More information