B&B Spectre LTE Edge MicroServer Setup Guide

Size: px
Start display at page:

Download "B&B Spectre LTE Edge MicroServer Setup Guide"

Transcription

1 B&B Spectre LTE Edge MicroServer Setup Guide July 2015

2 Table of Contents 1. Introduction About the Spectre LTE Installation Set up the Spectre LTE Set up the ThingWorx Application Further Customization Application Explanation Troubleshooting Compatibility

3 1. Introduction The Edge MicroServer is a powerful component of the ThingWorx architecture. The Edge MicroServer allows for the rapid deployment of connections between the ThingWorx platform and an associated data reporting device, with minimal design requirements on the part of the user. The Edge MicroServer provides an always-on connection to the platform, and it opens a local web server that interacts with the REST API available on the platform. The ThingWorx C SDK provides the libraries and tools for necessary for developers to create a custom application for interfacing with the ThingWorx platform. This document provides installation and usage instructions for setting up the ThingWorx C SDK with the B&B Electronics Spectre LTE Router. About the Spectre LTE The Spectre LTE is a multi-port gateway device manufactured by B&B Electronics Corporation. It provides cellular internet connection to connected devices over 2G, 3G, and 4G LTE networks, and features integrated WiFi b/g/n router connectivity. The device is designed to be operable in a wide range of temperature environments. The ThingWorx C-SDK distribution may be installed on the Spectre LTE, and this guide will follow the procedure for doing so along with the Conel C SDK. This guide will also follow the features involved with using the Conel C SDK to use a demo application, and the ThingWorx C-SDK to connect the device to the Platform. Page 1-1

4 2. Installation Setup of the Spectre LTE will first require the following prerequisites: A B+B Smartworx / Conel V2 Router and power supply (you can order from here: Routers.aspx) An Ethernet Cable (you will receive this with your router) A PC running Linux (you only need to run Linux if you want to modify B&B s example code, and compile your own) A ThingWorx Platform Server Installed and set up o Tutorial can be found here ( ad- repository=thingworxpublicrepository&downloadpath=%2fdocumentation%2f5+0+install+and+configuration.pdf ). o You will need a ThingWorx User Community login ( l) The packaged example for this starter-kit (thingworx-v2.tgz), which is also available for download here: Refer to the Troubleshooting section of this guide for help with frequently asked questions. Set up the Spectre LTE 1. The Start Guide for V2 routers here: conel.com. To insure you get the correct version select the router you have from the following table here ( Click on your router and then go to the Downloads tab. You will need to create a free account and sign-in. Follow the instructions in the Start Guide to login to the Router. When you are finished, you should be able to log in to the router after connecting it to your computer with an Ethernet cable (url: The default login credentials are: Username: root Password: root Page 2-2

5 2. Your router should have a web interface similar to the screenshot at right. 3. On the router s interface page, select User Modules under Customization on the left side column. Set up the ThingWorx Application 1. This Starter Kit includes an example ThingWorx application. This example periodically sends statistics about the router to the ThingWorx platform. Page 2-3

6 2. On the router s User Modules page, click Choose File next to New Module. Here, locate the thingworx.tgz file, which will be located among the extracted folders of the thingworx-v2.tgz archive, in the following directory: /router/application/thingworx.tgz Next, click the Add or Update button to add it to the list. Your User Modules page should look like the one at right: 3. Click the Application s name to open it for configuration. Enter the address for your ThingWorx Platform Server. Enter v2thing in the Thing Name Field to use the provided example application. You ll also need to provide an application key for your ThingWorx platform. You can create these in your ThingWorx Composer. Be sure you check the Enable ThingWorx Client checkbox at the top. Leave the other fields alone, and click Apply. Page 2-4

7 4. On your ThingWorx Composer, click Import/Export at the top-right, and choose Import from File. Ensure Entities is chosen. 5. Navigate to the location of your extracted v2 files, and import the v2thing.xml file. It is located in the extracted file system under /thingworx-v2/server/v2thing.xml. Click Import. Note: If you encounter an error while importing at this stage, see the Troubleshooting section, item #1. 6. Three new entities should appear in your Composer: v2thing, v2key, and v2mashup. 7. From here, select v2mashup, and then make sure Info is selected on the top bar, and Mashup Preview is selected on the menu under Entity Information: Page 2-5

8 Page 2-6

9 3. Further Customization The following section contains information provided by B&B Electronics for the purposes of customizing your particular setup with ThingWorx using example code and the Router and Conel SDKs. Application Explanation The User Module uses the Conel C SDK (you can get this from here: api-public/releases/download/v1.0.0/sdk-v2.tgz) and some in-built functions on the router, to get data from the router. These data values, provided in the example in this guide, are: - Data transferred over the LAN connection - CPU temperature - Supply voltage. - Value on Binary GPIO In - Value on Serial Port 1 Additionally the application provides a service that writes high or low on the Binary GPIO Out pin. Retrieving Properties The following code snippets retrieve the data values from the router, using the Router s C API. The ThingWorx C SDK handles connecting to the server and sending the data (refer to the ThingWorx C SDK documentation for a better explanation of how it connects and sends data). The ThingWorx SDK has a function called datacollectiontask, which is used to get the values to send to the server. To get the temperature of the CPU, we use the V2 GPIO API call: The temperature is given in degrees kelvin, so first you convert to Celsius (-=273), and then set the temperature property. The next example makes use of the status command, which is a system-command on the router: Page 3-6

10 This captures the output of the status command, and then parses it to obtain just the value. Another API call is used to get the value on the GPIO In 0: Getting the value on the serial line is slightly more complicated. The API contains a function to open the port, but you ll need to set some parameters (baudrate, stopbits etc.): Here we use the local web server on the device to configure the serial port. Next, the port is opened, read from, and closed. It is important to close the port file descriptor after use. Page 3-7

11 Using Services To perform some operation on the device that can be triggered from the ThingWorx Server a service is needed. This application uses a service that writes high or low on the GPIO Out pin. This service is called from the server and a value to write on the GPIO is retrieved from the remote call. The value is then written to the output pin using the V3 GPIO API. Page 3-8

12 To Augment the Provided Example The first thing you need to do is setup your environment. Router SDK: - Download the Router SDK - Extract the Router SDK to the ROOT directory $ tar -zxf SDK-v2.tgz -C / Get the Router C SDK from here: ( Thingworx SDK: - Download the ThingWorx C SDK ( - In your home directory create a directory called Thingworx $ mkdir ~/ThingWorx - Extract the ThingWorx C SDK to this directory $ unzip C-SDK zip -d ~/ThingWorx/ ThingWorx application example: - Download the ThingWorx application example - Extract the example to the ThingWorx directory you already created $ tar -zxf thingworx-v2.tgz -C ~/ThingWorx/ Get the example from here: ( The following steps describe how to build the supplied example: - At this stage you should have a directory in HOME called ThingWorx with tow directories in it: thingworx-v2 and tw-c-sdk - You should also have a directory called STM in /opt - To compile go into thingworx-v2 then router then src and run make: $ cd ~/ThingWorx/thingworx-v2/router/src $ make - When make is finished there should be an archive called thingworx-v2.tgz; this is what goes on the router under User Modules. Page 3-9

13 4. Troubleshooting Problem Solution(s) 1. Error encountered while attempting to import the v2thing.xml entity package. 1. Your version of the ThingWorx platform may be incompatible with the version of the extension or file you are attempting to import. 2. Try updating your ThingWorx Composer to the latest version. If that fails, open the v2thing.xml in a text editor, and modify the information in the <Entities build=.> tag (first line in the file), and modify the build, majorversion, minorversion, revision, and schemaversion values to match those of your Composer. To get the values correct, Try exporting a Thing from your Composer, and check the values of these parameters and match them to those in the v2thing.xml file. 3. Check the ThingWorx Application Log file under Monitoring at the top right to read details about your error. It is possible that the import requires the presence of an entity, such as the v2valuestream entity. Create a new Value Stream if this is the case named v2valuestream, which is based on a RemoteValueStream template. Following the save of this entity, attempt to import the xml file again. 2. No data is sent to the ThingWorx Platform from the router. 1. This is likely a problem with your ThingWorx Client Module configuration on the router s User Modules page. Verify that the following information is correct: 1) The IP address or url of the ThingWorx Server, including the port; 2) The spelling of the Thing Name which binds properties from the Remote router Thing; 3) the Application Key (try using an application key with administrative rights). Also, verify that the Enable ThingWorx Client checkbox is checked. Page 4-10

14 5. Compatibility This guide has been tested for compatibility with the Spectre LTE and the following systems and platform versions: Software Version ThingWorx Platform ThingWorx OS Windows 7, Service Pack 1 BnB Spectre LTE Firmware ( ) Page 5-11

Broadcom BCM943364WCD1 C-SDK Setup Guide. Version 1.0

Broadcom BCM943364WCD1 C-SDK Setup Guide. Version 1.0 Broadcom BCM943364WCD1 C-SDK Setup Guide Version 1.0 Software Change Log... 2 Introduction... 2 About the Broadcom BCM943364WCD1... 2 Installation... 3 Downloads and Prerequisites... 3 Configuration and

More information

Vantron VT-M2M-TC-VM ThingWorx Setup Guide

Vantron VT-M2M-TC-VM ThingWorx Setup Guide Vantron VT-M2M-TC-VM ThingWorx Setup Guide October 2015 Contents Introduction... 2 About the Vantron VT-M2M_TC_VM... 2 Installation... 2 Compile the Vantron lvdemo Executable... 2 Prerequisites... 2 Connect

More information

Dell IoT Gateway 5500 Edge MicroServer Setup Guide

Dell IoT Gateway 5500 Edge MicroServer Setup Guide Dell IoT Gateway 5500 Edge MicroServer Setup Guide Version [1.0] Software Change Log... 2 Introduction... 2 About the Dell IoT Gateway 5500... 2 Installation... 3 Initial Setup... 3 Download Prerequisite

More information

Xirgo OBD II Protocol Adapter SDK Setup Guide. Version 1.0

Xirgo OBD II Protocol Adapter SDK Setup Guide. Version 1.0 Xirgo OBD II Protocol Adapter SDK Setup Guide Version 1.0 Introduction... 2 About the Protocol Adapter SDK... 2 About Xirgo... 3 Installation... 3 Configuration and Setup... 3 Configuring the Xirgo device...

More information

Novatel Wireless SA-2100 Edge MicroServer Installation and Setup Guide. Version [1.0]

Novatel Wireless SA-2100 Edge MicroServer Installation and Setup Guide. Version [1.0] Novatel Wireless SA-2100 Edge MicroServer Installation and Setup Guide Version [1.0] Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation

More information

Vantron VT-M2M-TC-VM ThingWorx Setup Guide

Vantron VT-M2M-TC-VM ThingWorx Setup Guide Vantron VT-M2M-TC-VM ThingWorx Setup Guide October 2015 Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and

More information

NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide. Version 1.0

NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide. Version 1.0 NXP i.mx 6 UltraLite Evaluation Kit Edge MicroServer Installation and Setup Guide Version 1.0 Software Change Log... 2 Introduction... 2 About the NXP i.mx 6 UltraLite Evaluation Kit... 2 Initial Setup...

More information

FTP Extension Installation & User Guide

FTP Extension Installation & User Guide FTP Extension Installation & User Guide Version 1.0 July 2015 Table of Contents 1. Introduction and Installation... 1-1 About the FTP Extension... 1-1 Installing the FTP Extension... 1-1 2. FTP Extension:

More information

SOA Software API Gateway Appliance 6.3 Administration Guide

SOA Software API Gateway Appliance 6.3 Administration Guide SOA Software API Gateway Appliance 6.3 Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names, logos,

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents Modified on 27 JUL 2017 vsphere Web Services SDK 6.5 vcenter Server 6.5 VMware ESXi 6.5 Developing and Deploying vsphere Solutions,

More information

Baidu Map Widget Installation & Extension User Guide

Baidu Map Widget Installation & Extension User Guide Baidu Map Widget Installation & Extension User Guide Version 1.0b July 2015 Table of Contents 1. Introduction and Installation... 1 2. Baidu Map Extension: Configuration and Use... 5 3. Compatibility...

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

GUT. GUT Installation Guide

GUT. GUT Installation Guide Date : 02 Feb 2009 1/5 GUT Table of Contents 1 Introduction...2 2 Installing GUT...2 2.1 Optional Extensions...2 2.2 Installing from source...2 2.3 Installing the Linux binary package...4 2.4 Installing

More information

ThingWorx Lantronix PremierWaveXN Edge MicroServer Installation and Setup Guide

ThingWorx Lantronix PremierWaveXN Edge MicroServer Installation and Setup Guide ThingWorx Lantronix PremierWaveXN Edge MicroServer Installation and Setup Guide July 2015 Copyright 2015 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related

More information

Pico Computing. M 501 / M 503 Getting Started Guide. March 7, Overview 1. 2 System Requirements 1. 3 Ubuntu Linux Configuration 2

Pico Computing. M 501 / M 503 Getting Started Guide. March 7, Overview 1. 2 System Requirements 1. 3 Ubuntu Linux Configuration 2 Pico Computing M 501 / M 503 Getting Started Guide March 7, 2012 Contents 1 Overview 1 2 System Requirements 1 3 Ubuntu Linux Configuration 2 4 Installing the Pico Software 4 5 Monitoring Cards With purty

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents. 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6.

Developing and Deploying vsphere Solutions, vservices, and ESX Agents. 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6. Developing and Deploying vsphere Solutions, vservices, and ESX Agents 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6.7 You can find the most up-to-date technical documentation

More information

GUT. GUT Installation Guide

GUT. GUT Installation Guide Date : 17 Mar 2011 1/6 GUT Contents 1 Introduction...2 2 Installing GUT...2 2.1 Optional Extensions...2 2.2 Installation using the Binary package...2 2.2.1 Linux or Mac OS X...2 2.2.2 Windows...4 2.3 Installing

More information

Curriculum Guide. ThingWorx

Curriculum Guide. ThingWorx Curriculum Guide ThingWorx Live Classroom Curriculum Guide Introduction to ThingWorx 8 ThingWorx 8 User Interface Development ThingWorx 8 Platform Administration ThingWorx 7.3 Fundamentals Applying Machine

More information

ThingWorx Open Street Map Extension User Guide. Open Street Map Extension User Guide Version 1.0

ThingWorx Open Street Map Extension User Guide. Open Street Map Extension User Guide Version 1.0 Open Street Map Extension User Guide Version 1.0 Software Change Log... 3 Introduction and Installation... 3 About the Open Street Map Extension... 3 Installing the Open Street Map Extension... 3 Usage

More information

Vodafone MachineLink. Remote Administration Configuration Guide

Vodafone MachineLink. Remote Administration Configuration Guide Vodafone MachineLink Remote Administration Configuration Guide Document history This guide covers the following products: Vodafone MachineLink 3G (NWL-10) Vodafone MachineLink 3G Plus (NWL-12) Vodafone

More information

Implementing the NI TestStand Connector

Implementing the NI TestStand Connector Implementing the NI TestStand Connector NI TestStand is a tool that allows you to create and run automated validation tests against any type of hardware and drivers. The NI TestStand Connector allows the

More information

Work instructions for US-FDA ANDA Submissions Work Instructions for ectd US-FDA ANDA Submissions

Work instructions for US-FDA ANDA Submissions Work Instructions for ectd US-FDA ANDA Submissions Work Instructions for ectd US-FDA ANDA Submissions 1. Logon to the PharmaReady ectd System Work instructions for US-FDA ANDA Submissions PharmaReady is a Web-based application. The logon screen and all

More information

AutoForm plus R6.0.3 Release Notes

AutoForm plus R6.0.3 Release Notes 0 Release Notes AutoForm plus R6.0.3 Release Notes AutoForm plus R6.0.3 Release Notes...1 1 General Information...2 2 Installation Instructions...3 Front-End and Back-End Windows...3 Prerequisites...3

More information

Administrator s Guide

Administrator s Guide Blade Manager 4.1 Administrator s Guide ClearCube Technology, Inc. Copyright 2005, ClearCube Technology, Inc. All rights reserved. Under copyright laws, this publication may not be reproduced or transmitted

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

Configuring RentalPoint Web Services

Configuring RentalPoint Web Services Table of Contents 1. What is RentalPoint Web Services? 2 2. How to Configure Your Server 2 2.1 Download and Install.NET Framework 4.5.1 2 2.2 Download and Install IIS 2 2.3 Download and Install RPWS Files

More information

MP8000 SOFTWARE Instruction Manual

MP8000 SOFTWARE Instruction Manual Tel: +1-800-832-3873 E-mail: techline@littelfuse.com www.littelfuse.com/mp8000 MP8000 SOFTWARE Instruction Manual REVISION 0-B-030818 Copyright 2018 Littelfuse. All rights reserved. Page A All brand or

More information

RSA SecurID Ready Implementation Guide. Last Modified: December 13, 2013

RSA SecurID Ready Implementation Guide. Last Modified: December 13, 2013 Ping Identity RSA SecurID Ready Implementation Guide Partner Information Last Modified: December 13, 2013 Product Information Partner Name Ping Identity Web Site www.pingidentity.com Product Name PingFederate

More information

ThingWorx Relational Databases Connectors Extension User Guide

ThingWorx Relational Databases Connectors Extension User Guide ThingWorx Relational Databases Connectors Extension User Guide Version 1.0 Software Change Log... 2 Introduction and Installation... 2 About the Relational Databases Connectors Extension... 2 Installing

More information

Board Update Portal based on Nios II Processor with EPCQ (Arria 10 GX FPGA Development Kit)

Board Update Portal based on Nios II Processor with EPCQ (Arria 10 GX FPGA Development Kit) Board Update Portal based on Nios II Processor with EPCQ (Arria 10 GX FPGA Development Kit) Date: 1 December 2016 Revision:1.0 2015 Altera Corporation. All rights reserved. ALTERA, ARRIA, CYCLONE, HARDCOPY,

More information

Magento 2 / Google Maps Integration User Guide For Extension Version 1.0.2

Magento 2 / Google Maps Integration User Guide For Extension Version 1.0.2 Magento 2 / Google Maps Integration User Guide For Extension Version 1.0.2 This document details the installation, configuration and functionality of the DP Extensions Google Maps Integration for Magento

More information

Tech Note. ConnectWise PSA Integration

Tech Note. ConnectWise PSA Integration GMS ConnectWise PSA Integration Contents Contents... 1 Overview... 1 Prerequisites... 1 GMS Configuration... 1 ConnectWise Configuration... 4 ConnectWise Customer Configurations... 7 Verification of Reporting

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview January 2015 2014-2015 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Administrator s Guide Version 3.1 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

PTC Windchill Quality Solutions Extension for ThingWorx Guide

PTC Windchill Quality Solutions Extension for ThingWorx Guide PTC Windchill Quality Solutions Extension for ThingWorx Guide Copyright 2016 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc.

More information

Export SharePoint Sites

Export SharePoint Sites Export SharePoint Sites Export SharePoint Sites wizard is designed to assist with exporting SharePoint sites to a specified PWA. To start the wizard click File Export Export SharePoint Sites. Step 1 -

More information

Note, you must have Java installed on your computer in order to use Exactly. Download Java here: Installing Exactly

Note, you must have Java installed on your computer in order to use Exactly. Download Java here:   Installing Exactly Exactly: User Guide Exactly is used to safely transfer your files in strict accordance with digital preservation best practices. Before you get started with Exactly, have you discussed with the archive

More information

USER MANUAL. Star Track Shipping TABLE OF CONTENTS. Version: 2.0.0

USER MANUAL. Star Track Shipping TABLE OF CONTENTS. Version: 2.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 2 Benefits of Star Track Shipping... 2 Pre-requisites... 2 Installation... 3 Installation Steps... 3 Extension Activation... 7 Configuration... 8 Contact Us...14

More information

Sample Spark Web-App. Overview. Prerequisites

Sample Spark Web-App. Overview. Prerequisites Sample Spark Web-App Overview Follow along with these instructions using the sample Guessing Game project provided to you. This guide will walk you through setting up your workspace, compiling and running

More information

QuickStart Across Personal Edition v5.5 (Revision: November 8, 2012)

QuickStart Across Personal Edition v5.5 (Revision: November 8, 2012) QuickStart Across Personal Edition v5.5 (Revision: November 8, 2012) Copyright 2004-2012 Across Systems GmbH The contents of this document may not be copied or made available to third parties in any other

More information

WEB ANALYTICS HOW-TO GUIDE

WEB ANALYTICS HOW-TO GUIDE WEB ANALYTICS HOW-TO GUIDE MOTOROLA, MOTO, MOTOROLA SOLUTIONS and the Stylized M logo are trademarks or registered trademarks of Motorola Trademark Holdings, LLC and are used under license. All other trademarks

More information

Azure Archival Installation Guide

Azure Archival Installation Guide Azure Archival Installation Guide Page 1 of 23 Table of Contents 1. Add Dynamics CRM Active Directory into Azure... 3 2. Add Application in Azure Directory... 5 2.1 Create application for application user...

More information

EUSurvey Installation Guide

EUSurvey Installation Guide EUSurvey Installation Guide Guide to a successful installation of EUSurvey May 20 th, 2015 Version 1.2 (version family) 1 Content 1. Overview... 3 2. Prerequisites... 3 Tools... 4 Java SDK... 4 MySQL Database

More information

Installation Components for Scan to Worldox Canon MFP Application

Installation Components for Scan to Worldox Canon MFP Application Installation Components for Scan to Worldox Canon MFP Application V 1.4 October, 2014 REVISION HISTORY Version Date Description 1.0 1/2014 Installing and Troubleshooting the Scan to Worldox Canon MFP Application

More information

<Partner Name> <Partner Product> RSA SECURID ACCESS Implementation Guide. PingIdentity PingFederate 8

<Partner Name> <Partner Product> RSA SECURID ACCESS Implementation Guide. PingIdentity PingFederate 8 RSA SECURID ACCESS Implementation Guide PingIdentity John Sammon & Gina Salvalzo, RSA Partner Engineering Last Modified: February 27 th, 2018 Solution Summary Ping Identity

More information

If you experience issues at any point in the process, try checking our Troublshooting guide.

If you experience issues at any point in the process, try checking our Troublshooting guide. Follow along with this guide to set up your Omega2 for the first time. We ll first learn how to properly connect your Omega to a Dock and power it up. Then we ll connect to it to use the Setup Wizard to

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents vsphere 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Introduction to application management

Introduction to application management Introduction to application management To deploy web and mobile applications, add the application from the Centrify App Catalog, modify the application settings, and assign roles to the application to

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

UltraNetCam3 HSPI User s Guide

UltraNetCam3 HSPI User s Guide UltraNetCam3 HSPI User s Guide A HomeSeer HS3 plug-in used to capture snapshots from network cameras for surveillance and security purposes. Copyright 2014 ultrajones@hotmail.com Revised 12/21/2014 This

More information

Updating Simplify3D from V 3.x to V 4

Updating Simplify3D from V 3.x to V 4 Updating Simplify3D from V 3.x to V 4 Revision 1 8/18/2017 1. Introduction Simplify3D V4 is a major update that introduces some useful new features and capabilities. However, it also introduces some compatibility

More information

Storage Manager 2018 R1. Installation Guide

Storage Manager 2018 R1. Installation Guide Storage Manager 2018 R1 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development Workbench Installation Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : Guide Workbench Installation Document revision 2.0 Document release

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

Encode Rule Explorer App v1.0.2 for IBM QRadar Documentation

Encode Rule Explorer App v1.0.2 for IBM QRadar Documentation Encode Rule Explorer App v.0.2 for IBM QRadar Documentation Encode Rule Explorer App for IBM QRadar, Copyright 207 Encode SA, All rights reserved. Revision to This Document Date Revision Description 30

More information

Platform SDK Deployment Guide. Platform SDK 8.1.2

Platform SDK Deployment Guide. Platform SDK 8.1.2 Platform SDK Deployment Guide Platform SDK 8.1.2 1/1/2018 Table of Contents Overview 3 New in this Release 4 Planning Your Platform SDK Deployment 6 Installing Platform SDK 8 Verifying Deployment 10 Overview

More information

Movidius Neural Compute Stick

Movidius Neural Compute Stick Movidius Neural Compute Stick You may not use or facilitate the use of this document in connection with any infringement or other legal analysis concerning Intel products described herein. You agree to

More information

EAN-FPGA Firmware Update 1500-OEM

EAN-FPGA Firmware Update 1500-OEM EAN-FPGA Firmware Update 1500-OEM PN: EAN-FPGA-Firmware-Update-1500-OEM 12/1/2017 SightLine Applications, Inc. Contact: Web: sightlineapplications.com Sales: sales@sightlineapplications.com Support: support@sightlineapplications.com

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

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

Contents. Anaplan Connector for MuleSoft

Contents. Anaplan Connector for MuleSoft SW Version 1.1.2 Contents 1 Overview... 3 2 Mulesoft Prerequisites... 4 3 Anaplan Prerequisites for the Demos... 5 3.1 export demo mule-app.properties file...5 3.2 import demo mule-app.properties file...5

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Version 4.0 Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

4G Camera Solution. 4G WiFi M2M Router NTC-140W Security Camera ACTi B97

4G Camera Solution. 4G WiFi M2M Router NTC-140W Security Camera ACTi B97 4G Camera Solution 4G WiFi M2M Router NTC-140W Security Camera ACTi B97 Introduction The NetComm Wireless 4G Camera Solution has been developed to improve productivity and increase profitability of system

More information

Purpose. Target Audience. Installation Overview. Install SDK Prerequisites. Nagios XI. Monitoring VMware With Nagios XI

Purpose. Target Audience. Installation Overview. Install SDK Prerequisites. Nagios XI. Monitoring VMware With Nagios XI Purpose This document describes how to use to monitor VMware ESX, ESXi, vsphere, and vcenter Server with the VMware monitoring wizard. This document will show you how to set up your system to monitor virtual

More information

Quick Note 24. Extracting the debug.txt file from a TransPort. Digi Technical Support. February Page 1

Quick Note 24. Extracting the debug.txt file from a TransPort. Digi Technical Support. February Page 1 Quick Note 24 Extracting the debug.txt file from a TransPort Digi Technical Support February 2016 Page 1 Contents 1 Introduction... 3 2 Version... 4 3 FTP method... 5 3.1 FTP Using FileZilla FTP Client...

More information

Deploying Code42 CrashPlan with Jamf Pro. Technical Paper Jamf Pro 9.0 or Later 21 January 2019

Deploying Code42 CrashPlan with Jamf Pro. Technical Paper Jamf Pro 9.0 or Later 21 January 2019 Deploying Code42 CrashPlan with Jamf Pro Technical Paper Jamf Pro 9.0 or Later 21 January 2019 copyright 2002-2019 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate.

More information

SCCM Plug-in User Guide. Version 3.0

SCCM Plug-in User Guide. Version 3.0 SCCM Plug-in User Guide Version 3.0 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software 301 4th Ave

More information

Applied Informatics POCO PRO C++ Frameworks

Applied Informatics POCO PRO C++ Frameworks Applied Informatics POCO PRO C++ Frameworks Getting Started Guide Version 1.10 Purpose of This Document This document guides developers interested in the POCO PRO C++ Frameworks by Applied Informatics

More information

CSC 8205 Advanced Java

CSC 8205 Advanced Java Please read this first: 1) All the assignments must be submitted via blackboard account. 2) All the assignments for this course are posted below. The due dates for each assignment are announced on blackboard.

More information

Samsung ARTIK05x/Shoreline icast 2 ThingWorx agent Setup Guide Version 1.0

Samsung ARTIK05x/Shoreline icast 2 ThingWorx agent Setup Guide Version 1.0 Samsung ARTIK05x/Shoreline icast 2 ThingWorx agent Setup Guide Version 1.0 Introduction... 1 About Samsung ARTIK05x and Shoreline icast 2... 1 Samsung ARTIK 05x Set-up... 3 Accessing ARTIK 05x from serial

More information

WEWORK PRINTER INSTRUCTIONS FOR PAPERCUT. Installing Papercut and Printers for Mac OSX Printing Retrieving Your Prints Frequently Asked Questions

WEWORK PRINTER INSTRUCTIONS FOR PAPERCUT. Installing Papercut and Printers for Mac OSX Printing Retrieving Your Prints Frequently Asked Questions WEWORK PRINTER INSTRUCTIONS FOR PAPERCUT Installing Papercut and Printers for Mac OSX Printing Retrieving Your Prints Frequently Asked Questions Installing Papercut and Printers for Mac OSX Note: Please

More information

Quick Start Guide Demo Distance2Go. July 2018

Quick Start Guide Demo Distance2Go. July 2018 Quick Start Guide Demo Distance2Go July 2018 Table of Contents 1 Hardware Description 2 Tools Installation 3 Demo Distance2Go USB Connections 4 Building, Flashing and Debugging 5 Raw data streaming 2 Table

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6 SP1 User Guide P/N 300 005 253 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

How to Get Your Site Online

How to Get Your Site Online 2017-02-14 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 GETTING YOUR WEBSITE ONLINE... 3 1.1 Publishing Using WebMatrix 3 1.2 Publishing to Your Web

More information

EUSurvey OSS Installation Guide

EUSurvey OSS Installation Guide Prerequisites... 2 Tools... 2 Java 7 SDK... 2 MySQL 5.6 DB and Client (Workbench)... 4 Tomcat 7... 8 Spring Tool Suite... 11 Knowledge... 12 Control System Services... 12 Prepare the Database... 14 Create

More information

Chromakinetics MIDIweb Ver 1.0

Chromakinetics MIDIweb Ver 1.0 Chromakinetics MIDIweb Ver 1.0 MIDI Webserver By Glenn Meader glenn@chromakinetics.com www.chromakinetics.com Aug 10, 2008 MIDIweb is a program that allows you to control MIDI devices remotely via a web

More information

EntraPass (W10) Installation Guide Kantech-OnBoard systems

EntraPass (W10) Installation Guide Kantech-OnBoard systems Overview Purpose ExacqVision recorders now include Kantech EntraPass Corporate Edition software. The purpose of this document is to guide the technician or installer through the process of installing and

More information

User Guide Vodafone Mobile Wi-Fi R205. Designed by Vodafone

User Guide Vodafone Mobile Wi-Fi R205. Designed by Vodafone User Guide Vodafone Mobile Wi-Fi R205 Designed by Vodafone Welcome to the world of mobile communications 1 Welcome 2 Device overview 3 Getting started: Step 1 4 Getting started: Step 2 5 Mobile Wi-Fi web

More information

Z-Stack Linux Gateway Quick Start Guide Version 1.0

Z-Stack Linux Gateway Quick Start Guide Version 1.0 Z-Stack Linux Gateway Quick Start Guide Version 1.0 Texas Instruments, Inc. San Diego, California USA Copyright 2014 Texas Instruments, Inc. All rights reserved. Table of Contents 1. INSTALL THE SDK PACKAGE...

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

Implementing Infoblox Data Connector 2.0

Implementing Infoblox Data Connector 2.0 DEPLOYMENT GUIDE Implementing Infoblox Data Connector 2.0 2017 Infoblox Inc. All rights reserved. Implementing Infoblox Data Connector, July 2017 Page 1 of 31 Contents Overview... 3 Prerequisites... 3

More information

Version Installation Guide. 1 Bocada Installation Guide

Version Installation Guide. 1 Bocada Installation Guide Version 19.4 Installation Guide 1 Bocada Installation Guide Copyright 2019 Bocada LLC. All Rights Reserved. Bocada and BackupReport are registered trademarks of Bocada LLC. Vision, Prism, vpconnect, and

More information

APAR PO06620 Installation Instructions

APAR PO06620 Installation Instructions IBM Corporation APAR PO06620 Installation Instructions IBM Counter Fraud Management 1.5.0.5 IBM Counter Fraud Development 3-31-2017 Table of Contents 1 Fix readme... 1 2 Abstract... 1 3 Contents... 1 4

More information

BEA WebLogic. Server. MedRec Clustering Tutorial

BEA WebLogic. Server. MedRec Clustering Tutorial BEA WebLogic Server MedRec Clustering Tutorial Release 8.1 Document Date: February 2003 Revised: July 18, 2003 Copyright Copyright 2003 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This

More information

USER GUIDE StarTrack Shipping (Magento 2) Compatibility:

USER GUIDE StarTrack Shipping (Magento 2) Compatibility: sales@biztechconsultancy.com USER GUIDE StarTrack Shipping (Magento 2) Compatibility: Community Edition: 2.0.x 1 Contents 1. Introduction... 3 2. Prerequisite... 3 3. Installation... 3 3.1. Manual Installation

More information

Tutorial on Basic Android Setup

Tutorial on Basic Android Setup Tutorial on Basic Android Setup EE368/CS232 Digital Image Processing, Spring 2015 Linux Version Introduction In this tutorial, we will learn how to set up the Android software development environment and

More information

The world of BAOS. Easy connectivity for KNX with Bus Access and Object Server. Overview and applications

The world of BAOS. Easy connectivity for KNX with Bus Access and Object Server. Overview and applications The world of BAOS Easy connectivity for KNX with Bus Access and Object Server Overview and applications WEINZIERL ENGINEERING GmbH Achatz 3 DE-84508 Burgkirchen / Alz Germany Phone : +49 (0)8677 / 91 636

More information

Lab: Setting up PL-App with a Raspberry Pi

Lab: Setting up PL-App with a Raspberry Pi Lab Topology Objectives Set up a Raspberry Pi board as a PL-App device Use PL-App Launcher to provision and discover PL-App devices Background Cisco Prototyping Lab is a set of hardware and software components

More information

Oracle Application Express

Oracle Application Express Oracle Apex Oracle Application Express Installation Guide Step by Step on Windows Mohammad Fawzy Mahmoud 2012 1 Oracle Application Express Oracle Apex Installation Guide Step by Step on Windows Install

More information

MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Connector for SharePoint Administrator s Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-1, May, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Connector

More information

DMP 128 Plus C V DMP 128 Plus C V AT. Avaya IP Office Configuration Guide REVISION: 1.2 DATE: JANUARY 9 TH 2018

DMP 128 Plus C V DMP 128 Plus C V AT. Avaya IP Office Configuration Guide REVISION: 1.2 DATE: JANUARY 9 TH 2018 DMP 128 Plus C V DMP 128 Plus C V AT Avaya IP Office Configuration Guide REVISION: 1.2 DATE: JANUARY 9 TH 2018 Revision Log Date Version Notes August 6 th 2017 1.0 First Release: Applies to Firmware 1.01.0004.002

More information

ZL UA Domino Configuration Guide. Version 7.0

ZL UA Domino  Configuration Guide. Version 7.0 ZL UA Domino Email Configuration Guide Version 7.0 ZL Technologies, Inc. Copyright 2010 ZL Technologies, Inc.All rights reserved ZL Technologies, Inc. ( ZLTI, formerly known as ZipLip ) and its licensors

More information

WebDAV. Overview. File Permissions and Management. Authentication Methods

WebDAV. Overview. File Permissions and Management. Authentication Methods WebDAV Overview WebDAV integration provides access to the file system on the staging server similar to FTP/SFTP and can be used in lieu of FTP/SFTP. WebDAV (Web Distributed Authoring and Versioning) is

More information

Table of contents. Zip Processor 3.0 DMXzone.com

Table of contents. Zip Processor 3.0 DMXzone.com Table of contents About Zip Processor 3.0... 2 Features In Detail... 3 Before you begin... 6 Installing the extension... 6 The Basics: Automatically Zip an Uploaded File and Download it... 7 Introduction...

More information

HTML Mashups A mashup that embeds an HTML or JavaScript based Web page directly on a screen.

HTML Mashups A mashup that embeds an HTML or JavaScript based Web page directly on a screen. ABSTRACT Mashups are used to integrate data from SAP's cloud solution with data provided by an online Web service or application. Users can access the content provided by these Web services and applications.

More information

Installing and Upgrading Cisco Network Registrar Virtual Appliance

Installing and Upgrading Cisco Network Registrar Virtual Appliance CHAPTER 3 Installing and Upgrading Cisco Network Registrar Virtual Appliance The Cisco Network Registrar virtual appliance includes all the functionality available in a version of Cisco Network Registrar

More information

Software Development Kit

Software Development Kit Software Development Kit Informatica MDM - Product 360 Version: 8.1.1 07/04/2018 English 1 Table of Contents 1 Table of Contents...2 2 SDK Package...3 3 Prerequisites...3 3.1 Database...3 3.2 Java Development

More information

HS1200N Wireless N Hotspot

HS1200N Wireless N Hotspot HS1200N Wireless N Hotspot Firmware Release Notes Copyright Copyright 2015 NetComm Wireless Limited. All rights reserved. The information contained herein is proprietary to NetComm Wireless. No part of

More information

Upgrading Cisco UCS Director to Release 6.6

Upgrading Cisco UCS Director to Release 6.6 First Published: 2018-04-27 Overview of the Upgrade to Cisco UCS Director, Release 6.6 The upgrade process to Cisco UCS Director, Release 6.6 depends on the current version of the software that is installed

More information