TIBCO FTL Part of the TIBCO Messaging Suite. Quick Start Guide

Size: px
Start display at page:

Download "TIBCO FTL Part of the TIBCO Messaging Suite. Quick Start Guide"

Transcription

1 TIBCO FTL Part of the TIBCO Messaging Suite Quick Start Guide

2 The TIBCO Messaging Suite TIBCO FTL is part of the TIBCO Messaging Suite. It includes not only TIBCO FTL, but also TIBCO eftl (providing WebSocket support for mobile clients), TIBCO Enterprise Message Server (EMS), Apache Kafka (including support for Apache Kafka to TIBCO FTL connectivity), and MQTT (also including TIBCO FTL connectivity). All of these components are available to help TIBCO Messaging Suite users deploy the best messaging solution for each situation. All of these components can be used together to provide a powerful and complete messaging solution that extends from the data center, across your enterprise, out to mobile devices, and all the way to the most remote IoT device. About the Quick Start Guide This guide is focused on setting up, starting, and running various TIBCO FTL sample programs that demonstrate typical messaging functionality. You should be able to follow the examples and run through most of this guide in about 15 minutes. About FTL TIBCO FTL introduces a powerful new concept called the FTL Server. It provides a unified way to run all major FTL Services in a redundant, active-active manner that is easily deployed in cloud and container-based environments. Services like the Realm Server, persistence, bridges, groups, and others can be easily configured and quickly deployed to support FTL applications. Using the FTL Server model, applications can be rapidly deployed using a server-centric messaging model while keeping available all of the existing high performance, peer-to-peer connectivity options that TIBCO FTL has always provided. The Quick Start Guide includes examples of both types of models to demonstrate basic messaging as well as high performance messaging capabilities. Getting Started This document will help you get started by using TIBCO FTL samples to send and receive messages, use TIBCO FTL persistence for guaranteed message delivery, and help you collect some TIBCO FTL performance statistics using your own hardware and network. TIBCO FTL Quick Start for

3 Initial Configuration To accommodate TIBCO FTL potentially being installed in different locations, the samples in this document use the environment variable TIBCO_HOME to point to the directory where TIBCO FTL is installed. The default installation directory will be /opt/tibco on Linux and MacOS systems and C:\TIBCO on Windows systems. Set this environment variable and make sure it is available for other programs to access. On Linux and MacOS, use the export command to do this: $ export TIBCO_HOME=/opt/tibco On Windows, use the setx command: C:\> setx TIBCO_HOME C:\tibco For convenience purposes, we ll use the term FTL directory when referring to the base TIBCO FTL installation directory (e.g. $TIBCO_HOME/ftl/release_num where release_num is the version number of the TIBCO FTL release). NOTE: In most of this document, we ll use Linux-style commands but if you are using the Windows distribution of TIBCO FTL, you ll find the same scripts with the.bat suffix. For example, if the document refers to a script called setup, you ll find the script setup.bat in your Windows distribution. The examples will also using Linux-style paths so if you are using Windows, you ll want to replace forward slashes with backward slashes and appropriately change the syntax when referring to environment variables from their Linux-style (such as $TIBCO_HOME) to the corresponding Windows format (%TIBCO_HOME% for example). Setting up your PATH for easier execution Whether you are using the Linux, MacOS, or Windows TIBCO FTL distributions, running the examples will be easier if you add the appropriate TIBCO FTL bin and script directories to your PATH. It will simplify running many of the samples and scripts in this document because you won t have to specify full paths or change to different directories to run the various TIBCO FTL services or samples. To do this, you can add the following directories to your PATH: $TIBCO_HOME/ftl/release_num/bin $TIBCO_HOME/ftl/release_num/samples/bin $TIBCO_HOME/ftl/release_num/samples/scripts TIBCO FTL Quick Start for

4 There are Java versions of all of the various example applications located in the $TIBCO_HOME/ftl/release_num/samples/src/java directory. The Java samples require version 1.8 or later of the JRE (Java Runtime Environment); your PATH should also include the appropriate directories to access the JRE if you want to run the Java-based samples. Initializing the TIBCO FTL environment Before running any of the samples or the servers, you need to initialize the TIBCO FTL environment; the quickest way to do this is by running the setup script from the TIBCO FTL package. If you are opening multiple command windows, you will need do this in each command window in order to get the TIBCO FTL environment properly initialized. Navigate to the samples directory in the TIBCO FTL directory (e.g. $TIBCO_HOME/ftl/release_num/samples) and launch the setup script from a command line window. $../setup NOTE: On Linux and MacOS, be sure to include the preceding. ; this will make sure that the appropriate environment variables are set in your current shell. If you execute the setup script without the leading., the changes will not take effect in your current shell. On Windows, all you need to do is run the setup batch file. Starting and Stopping the FTL Server The FTL Server is the primary component which provides TIBCO FTL services and needs to be running before you can run any of the sample applications (or before you run any TIBCO FTL-based application for that matter). One of the key services provided by the FTL Server is the FTL realm service which serves as a repository of the configuration information needed by TIBCO FTL clients to communicate amongst themselves (all cooperating TIBCO FTL applications are part of a specific FTL realm which defines the various applications and connectivity parameters which are used to connect TIBCO FTL-based applications so that messages flow between them in the expected manner). To support the sample applications described in this guide, the TIBCO FTL distribution includes appropriate pre-defined configurations for the FTL Server as well as the FTL realm. The ftlstart command provided will load the configuration information needed to run the various sample applications. TIBCO FTL Quick Start for

5 As you gain more experience with TIBCO FTL, you ll likely want to modify the configuration to try other TIBCO FTL settings and options (such as using different transports to connect applications); in this case, you ll find the configuration provided to be a useful starting point. Starting the FTL Server To start the FTL Server, use the ftlstart command located in the samples/scripts directory. In this case, we ll start the simplest configuration; a single, non-redundant FTL Server running on the local system at a specific port: $ ftlstart ftls_1@localhost:8080 NOTE: The above example will start a single FTL Server named ftls_1 available at localhost port The FTL Server configuration used by ftlstart already has a the configuration for an FTL Server named ftls_1 so be sure to use that name. Any output from the FTL Server and any TIBCO FTL services for this FTL Server will be saved in the $HOME/ftl-server/ftls_1 directory. The ftlstart script will support either one or three three server strings on the command line (in addition to ftls_1, the configuration includes pre-defined FTL Servers ftls_2 and ftls_3 ). For running the examples in this Quick Start Guide, we re running just a single FTL Server but in actual production use you ll typically run three or more servers (usually in odd numbers to support the quorum-consensus model; see the TIBCO FTL Concepts document mentioned later for more details about this type of operation). Confirming the FTL Server is running If the FTL Server is running, you can point a browser to the appropriate host and port specified when you started the FTL Server ( if you followed the example above) and it will display realm configuration settings as well as status information. If you started more than one FTL Server, you can use any of the host and port settings you specified on the command line when you ran ftlstart to access the configuration and status information for the entire FTL realm. If you are not able to get a connection from your web browser, the FTL Server and it s associated realm service are likely not running; check for any error messages or warnings that were displayed at the time you started the FTL Server as well as looking in the appropriate $HOME/ftl-server/server-name directory. TIBCO FTL Quick Start for

6 NOTE: The most common problem when starting the FTL Server is the network port specified already being in use by another process (the examples in this document use port number 8080 but there is no guarantee that this port is actually available on any given system). If this is the case, you ll see an error message in the log output including the string Address already in use. You can specify any available port when starting the FTL Server so long as you specify the same host and port when running the sample applications. So if the network port specified in this guide is not available, it s perfectly OK to choose a different port, start your FTL Server using that port, and use that port when running the sample applications. Stopping the FTL Server After you are done running the samples, you can stop any running TIBCO FTL Servers from the command line by using the ftlstop script. NOTE: Run the ftlstop script with no options for usage information for the different types of configuration supported and how to stop them. In general, you ll want to use the same command line options as specified when you started the FTL Server(s) with the ftlstart script when you stop them using the ftlstop script. Running the samples As part of this Quick Start Guide, we ll cover three common messaging scenarios: Basic Publish-Subscribe Publish-Subscribe with Persistence Performance Measurement (messaging throughput and latency between two applications) Be sure you ve started the FTL Server as described above before running any of the samples; if the FTL Server is not running, the samples will wait and eventually time out with an error. If you changed the port the FTL Server is using, change the port numbers in the commands below to match the port you are actually using. If you are running more than one FTL Server, you can specific any one of the host:port values for the FTL servers on the command line or specify all of them on the command line separated by the character ( localhost:8080 localhost:9090 localhost:10100 for example; in this case, the application will choose one of the FTL Servers to connect to and automatically fall over to another in the event of no response or a disconnection). TIBCO FTL Quick Start for

7 The easiest way to run the various samples is to open multiple command windows and run different applications in different windows. That way, you ll be able to see the output from each application individually and get a clearer picture of what each sample application is doing. Be sure to source the setup file in each window to ensure that the TIBCO FTL environment is appropriately setup. Some of the sections relating to the sample applications will include one or more Going further... subsection; you can skip these areas for now if you want to move quickly through this document and just see the basic TIBCO FTL functionality available but they typically cover some additional capabilities that you may find useful or interesting. Feel free to revisit these sections at a later time to explore more TIBCO FTL functionality using the sample applications. Basic Publish-Subscribe sample In this example, we ll use the tibsendex sample application as a publisher to send messages which will be received by the subscriber in the tibrecvex sample application. In this example, we re demonstrating non-persistent messaging; a subscriber will receive any messages published by associated publishers as and when they are published. If a publisher publishes a message and there are no associated subscribers (or a specific subscriber has not yet been started), those messages will not be received by those subscribers. In a few moments, we ll also demonstrate persistent messaging which allows subscribers to receive messages published even when they were not running, but for now, we ll just focus on immediate message delivery. Open two command windows, source the setup file in each, and run tibrecvex sample application in one of the windows: $ tibrecvex c 10 The -c 10 command line option specifies that the receiver exit after receiving 10 messages. You ll see a final message waiting for message(s) displayed when the subscriber application is ready; at this point, we re ready to receive messages sent by associated publishers. In the other window, run the tibsendex sample application: $ tibsendex c 10 TIBCO FTL Quick Start for

8 As you probably expected, the -c 10 command line option specifies that the sender should exit after sending 10 messages. What did I just see? In the window running tibsendex, you ll see a series of output statements displayed as each message is published../tibsendex TIBCO FTL Version Invoked as:./tibsendex -c 10 sending message 1 sending message 2 sending message 3 sending message 4 sending message 5 sending message 6 sending message 7 sending message 8 sending message 9 sending message 10 To make it easy to follow what s happening, the messages are sent with a 1000ms delay between each message. You can change the number of messages sent using the -c command line option as well as the delay between messages using the -d option. Using the -? option will give you a full list of the available command line options which will give you control of a wide range oftibco FTL options and capabilities, but for now, if you want to change the behavior of tibsendex, stick with the -c and -d. In the window running tibrecvex, you ll see a series of output statements displayed as each message is received. Since both the subscriber and the publisher are running at the same time, the output relating to a message being published by tibsendex will be shown pretty much immediately as being received by tibrecvex../tibrecvex TIBCO FTL Version Invoked as:./tibrecvex -c 10 waiting for message(s) received message 1 message: type long: 1 type string: 'tibsend-endpoint' type opaque: size 6 data: 'opaque' received message 2 message: type long: 2 type string: 'tibsend-endpoint' type opaque: size 6 data: 'opaque' received message 3 TIBCO FTL Quick Start for

9 message: type long: 3 type string: 'tibsend-endpoint' type opaque: size 6 data: 'opaque'... some output not shown... type long: 9 type string: 'tibsend-endpoint' type opaque: size 6 data: 'opaque' received message 10 message: type long: 10 type string: 'tibsend-endpoint' type opaque: size 6 data: 'opaque' For each published message, you ll see 5 lines of output: The cumulative count of the number of messages received thus far (this count is maintained by the subscriber so you ll see this number incremented for each message received so if you have multiple publishers, you ll see it incremented each time a message is received giving you a running count of received messages) A header for the message contents ( message: ) The message contents on a field by field basis type long the message count added by the publisher (since this value is maintained and populated by the publisher, you ll see individual messages containing the same number coming from each publisher) type string the FTL endpoint name the publisher used to send the message type opaque six characters spelling out opaque in 7-bit ASCII Note: The information preceding the field content displays the type of data contained in a specific field in the message (the messages sent by tibsendex have three fields in them as shown above). While FTL can send completely arbitrary message content (typically sent as an opaque field type), the use of typed message fields gives the ability to do content-based addressing which is a very powerful feature in TIBCO FTL which we ll cover in a bit. Going Further Multiple Publishers and/or Subscribers In the example above, we used a single publisher and a single subscriber; feel free to run more of each to see multiple publisher and subscriber interactions. Try increasing the count and changing the delay values on tibsendex to see streams from multiple publishers arriving at a specific subscriber at different cadences. You can watch the TIBCO FTL Quick Start for

10 type long field to see message count from a specific publisher within an aggregated message stream Going Further Using Content Matchers One of the most powerful capabilities of TIBCO FTL is the ability to use the message content itself to control the flow and delivery of messages (referred to as Contentbased Addressing ). Content matchers can be used by subscribers to match specific messages using the actual content of the message, such as the existence of a specific named field (or lack of), all the way down to the contents of a specific named field. You can use the sample applications to see this behavior with tibrecvex by referencing the fields and field content in the message the tibsendex application is sending. For example, the command line below will match only one of the ten messages sent by tibsendex (the specific message where the My-Long field contains an integer value of 6): $ tibrecvex -c 10 m '{"My-Long":6}' NOTE: If you are using Windows, the command line syntax for the matcher is a bit different due to how the characters specifying the matcher are parsed at the command line; specify "{\"My-Long\":6}" (including the outside double quotes). If you re-run the publisher, you ll see publisher output messages sending message but you will only see a single message from the publisher at the subscriber using these options as it only actually receives the message where the My-Long field contains the value 6. You ll have to run the publisher 10 times to cause the subscriber to exit because the content matcher limited the number of received messages to only 1 of the 10 sent by the publisher (you can of course kill the receiver to end it at any time). You can use a content matcher to reduce the message processing code in your subscribing application by having your subscriber only receive messages it is actually interested in so you don t have to include the code to programmatically skip messages your application is not interested in. Going even further, content matchers from subscribers can be automatically shared all the way back to the publishing application and can actually reduce messaging traffic by not even sending messages to specific subscribers which they have indicated they are not interested in receiving (this can depend on the specific protocol used between the publisher and the subscriber but this can be a very powerful optimization capability to reduce message volume and the corresponding network traffic). TIBCO FTL Quick Start for

11 To help better understand Content-based Addressing, check out the video covering this exact topic at the TIBCO FTL Community site Persistent Publish-Subscribe sample In this example, we ll again use the tibsendex sample application acting as a publisher and tibrecvex as a subscriber but we ll include some additional steps and command line options to use persistent message delivery. In this mode, the publishers and subscribers are completely de-coupled and subscribers can recover messages which may have gotten lost between the publisher and the subscriber (due to network failure, resource issues anywhere along the delivery path, or any other failure). Open two command windows, source the setup file in each (or you can just keep using the windows you d used in the previous examples if they are still open). In one of the command windows, start the tibrecvex sample application using a few extra options: the -e option to tell the application to use a specific application endpoint that has been configured for persistence and the -d option which specifies a durable name (used to express interest in a particular message stream by a subscriber see the TIBCO FTL documentation for a complete explanation of how to use persistence including durables, stores, and clusters). $ tibrecvex -c 10 -d mydr -e tibrecv-persistentendpoint In the other command window, start the tibsendex sample application using the -e option as well. Note that we ve increased the number of messages sent from 10 to 20. $ tibsendex -c 20 -e tibsend-persistentendpoint You should see the tibrecvex application receive 10 messages and then exit but the tibsendex application continues to send until it has sent all 20 messages. So what about those 10 additional messages, are they lost? Not with persistence. They ve been retained by an FTL store which is the key component in TIBCO FTL persistence. If we run the tibrecvex application again using the same command line used above, we ll receive the remaining 10 messages even if the tibsendex application has completed sending all 20 messages and exited. Depending on the timing of the sending of the messages and the running of the receiver, you may see messages coming in very quickly at first with messages coming in at the slower cadence of the sender after this initial burst. What you are seeing is the subscriber catching up to the publisher after which you ll see the TIBCO FTL Quick Start for

12 message cadence slow down to reflect the actual sending rate of the publisher (if the publisher is still publishing). With persistence, the receiver was able to receive previously sent messages very quickly and once those have been delivered, it will receive subsequent messages in real-time. What happens if the FTL Server fails while messages are being published using persistence? Since we re only running a single FTL Server, we ll encounter message loss if we lose the FTL Server (or the system it s running on or the network connections to it, etc.) To increase reliability in production scenarios, you ll typically run multiple FTL Servers across multiple systems in order to provide redundancy for the persistence service itself in the event of a failure of a system, the network, or even the FTL Servers themselves; none of which will comprisie your message delivery. Going Further More Persistence Scenarios If you want to see how the persistence service ensures message delivery across subscriber failures and restarts, you can kill and restart the tibrecvex sample application before all of the messages are received and restart it to receive the remaining messages. You probably want to increase the message count to a significantly higher number to give you a little more time to kill the subscriber application before all of the messages have been delivered to the subscriber in order to more easily see this in action. Running the Performance Tests The TIBCO FTL product comes with a set of sample applications that can be used to measure the latency and the throughput on your own hardware. These samples can be run with any of the transports (e.g. shared memory, TCP, multicast, RUDP, etc.) but by default they are run using the shared memory transport for best performance. Before running the samples, please make sure that the FTL Server has been started and running as explained in the previous sections. Latency Tests The latency of a messaging system is a measure of how quickly a given message can be delivered between applications. The tiblatsend and tiblatrecv applications work together to provide a latency value calculated by averaging the time needed to send 5 million messages from the sender to the receiver. Once you have the FTL Server running, start the tiblatrecv application in one command window: TIBCO FTL Quick Start for

13 $ tiblatrecv Start the tiblatsend application in another command window: $ tiblatsend You ll see the results in the tiblatsend window giving you a summary of the total elapsed message delivery time, the number of messages sent, and an average representing the per message latency. Here is an example of the output: tiblatsend TIBCO FTL Version Invoked as: tiblatsend Calibrating tsc timer... done. CPU speed estimated to be 2.20E+09 Hz Sending messages with payload size 16 Sampling latency every messages. Total time: 4.57E+00 sec. for messages One way latency: E-09 sec. You can control the number of messages sent using the -count option as well as change the size of the messages sent using the -size option to simulate your specific messaging requirements. Use the -help option to see the compete set of command line options. Throughput Tests The throughput of a messaging system provides a measurement of the amount of data that can be delivered between applications over a period of time; typically when aiming for high throughput, you ll want to send fewer but larger messages to reduce the impact of permessage overhead on your messaging throughput. The tibthrusend and tibthrurecv applications work together to provide a throughput value by measuring the time needed to send 5 million messages from the sender to the receiver. Once you have the FTL Server running, start the tibthrurecv application in one command window: $ tibthrurecv Start the tibthrusend application in another command window: $ tibthrusend You ll see the results in the tibthrusend window giving you a summary of the number of messages sent (together with the number of batches and the batch size which can be set TIBCO FTL Quick Start for

14 using the -batchsize command line option), the total send and receive times, and the aggregate message send and receive rates. Typical output from tibthrusend would be: tibthrusend TIBCO FTL Version Invoked as: tibthrusend Calibrating tsc timer... done. CPU speed estimated to be 2.20E+09 Hz Sender Report: Requested messages. Sending messages (50000 batches of 100) with payload size 16 Sent 5.00E+06 messages in 2.92E+00 seconds. (1.71E+06 msgs/sec) Receiver Report: Received 5.00E+06 messages in 2.92E+00 seconds. (1.71E+06 messages per second) Received 80.00E+06 bytes in 2.92E+00 seconds. (27.38E+06 bytes per second) Messages per callback: min/max/avg/dev: 1.00E+00 / E+00 / 48.34E+00 / 29.37E+00 Based on this run, the sender sent all 5 million messages in 2.92 seconds (at an average rate of 1.72 million messages per second) and the receiver received these messages in about the same amount of time (at an average rate of 27 million bytes per second). These are pretty typical numbers for mid-range laptop level system with numerous other applications running (probably very much like your system during the work day running your typical development tools together with other applications like browsers and clients) and of course your performance will be greatly impacted by the performance and load of the system you are running on. You can control the number of messages sent using tibthrusend with the -count option (you ll want to keep these values relatively large in order to get representative results) as well as using the -size option to specify the size of the messages in bytes. The default size of 16 bytes is a relative small message and might not be representative of what your applications would be using; go ahead and try different values for --size to see it s impact on throughput using your hardware. Use the -help option to see the compete set of command line options for both tibthrusend and tibthrurecv. Documentation You can access the complete product documentation for TIBCO FTL at products/tibco-ftl-enterprise-edition-version where version is the 3 digit TIBCO FTL version number with each digit separated by dashes. For example, all of the documentation for the TIBCO FTL release is available at TIBCO FTL Quick Start for

15 You ll find the TIBCO FTL Concepts document a good starting point to understand the basics of TIBCO FTL in which will be useful as you get into the TIBCO FTL Administration and TIBCO FTL Development documentation. Where to go next At this point, you ve seen several TIBCO FTL sample programs providing basic messaging semantics including pub-sub and persistence for guaranteed message delivery as well as collecting some performance metrics using your own hardware. The source code for all of those samples (and more) are included as part of the TIBCO FTL distribution in the samples/src/c, samples/src/java, and samples/golang/src/tibco.com/ftlsample directories. Feel free to review the source code, make modifications, rebuild the applications, and run the modified versions. A good next step would be to start actually using TIBCO FTL to get familiar with the APIs and build some messaging applications. The TIBCO FTL Tutorials take a step-by-step approach towards building solid TIBCO FTL applications including describing various options and properties, exception handling, programming paradigms, and basic use of the UI for configuration and monitoring. The TIBCO FTL Tutorials are typically extended in each subsequent TIBCO FTL release; you ll always be able to get the latest version of the tutorials from the TIBCO FTL Community site at Getting support Support for the TIBCO FTL Community Edition is available at the TIBCO Community portal for TIBCO FTL located at You ll find information about new releases, how-to articles, videos, and other information. You can also post questions or comments and get feedback directly from the TIBCO FTL team. TIBCO FTL Enterprise Edition customers have access to all of that plus TIBCO s awardwinning 24 hour support programs. In addition, Enterprise Edition customers have access to several additional FTL capabilities such as the comprehensive monitoring dashboards and high performance connectivity options like RDMA support. TIBCO FTL Quick Start for

ANSYS v14.5. Manager Installation Guide CAE Associates

ANSYS v14.5. Manager Installation Guide CAE Associates ANSYS v14.5 Remote Solve Manager Installation Guide 2013 CAE Associates What is the Remote Solve Manager? The Remote Solve Manager (RSM) is a job queuing system designed specifically for use with the ANSYS

More information

NetApp Sizing Guidelines for MEDITECH Environments

NetApp Sizing Guidelines for MEDITECH Environments Technical Report NetApp Sizing Guidelines for MEDITECH Environments Brahmanna Chowdary Kodavali, NetApp March 2016 TR-4190 TABLE OF CONTENTS 1 Introduction... 4 1.1 Scope...4 1.2 Audience...5 2 MEDITECH

More information

CANopen Programmer s Manual Part Number Version 1.0 October All rights reserved

CANopen Programmer s Manual Part Number Version 1.0 October All rights reserved Part Number 95-00271-000 Version 1.0 October 2002 2002 All rights reserved Table Of Contents TABLE OF CONTENTS About This Manual... iii Overview and Scope... iii Related Documentation... iii Document Validity

More information

Infoblox and Ansible Integration

Infoblox and Ansible Integration DEPLOYMENT GUIDE Infoblox and Ansible Integration Ansible 2.5 April 2018 2018 Infoblox Inc. All rights reserved. Ansible Deployment Guide April 2018 Page 1 of 12 Contents Overview... 3 Introduction...

More information

DRG-Series. Digital Radio Gateway. Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement

DRG-Series. Digital Radio Gateway. Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement DRG-Series Digital Radio Gateway Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement DRG-Series Digital Radio Gateway Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio

More information

Modular Metering System ModbusTCP Communications Manual

Modular Metering System ModbusTCP Communications Manual Modular Metering System Manual Revision 7 Published October 2016 Northern Design Metering Solutions Modular Metering System ModbusTCP 1 Description The multicube modular electricity metering system simultaneously

More information

DRG-Series. Digital Radio Gateway. Icom IDAS Conventional Wireline IP (Tier-2) (IC-FR5000/IC-FR6000 IDAS VHF/UHF Repeaters) Digital Radio Supplement

DRG-Series. Digital Radio Gateway. Icom IDAS Conventional Wireline IP (Tier-2) (IC-FR5000/IC-FR6000 IDAS VHF/UHF Repeaters) Digital Radio Supplement DRG-Series Digital Radio Gateway Icom IDAS Conventional Wireline IP (Tier-2) (IC-FR5000/IC-FR6000 IDAS VHF/UHF Repeaters) Digital Radio Supplement DRG-Series Digital Radio Gateway Icom IDAS Conventional

More information

INTRODUCTION WHY CI/CD

INTRODUCTION WHY CI/CD +1 919-667-9958 WHITEPAPER CONTINUOUS INTEGRATION & DELIVERY WITH ANSIBLE INTRODUCTION Ansible is a very powerful open source automation language. What makes it unique from other management tools, is that

More information

INTRODUCTION CONTENTS BEGINNER S GUIDE: CONTROL WITH RED HAT ANSIBLE TOWER

INTRODUCTION CONTENTS BEGINNER S GUIDE: CONTROL WITH RED HAT ANSIBLE TOWER BEGINNER S GUIDE: CONTROL WITH RED HAT ANSIBLE TOWER CONTENTS The challenge of maintaining control... 2 A better way to run Ansible... 3 Ansible Tower and integration in a large enterprise... 4 Three ways

More information

Ansible Tower on the AWS Cloud

Ansible Tower on the AWS Cloud Ansible Tower on the AWS Cloud Quick Start Reference Deployment Tony Vattathil Solutions Architect, AWS Quick Start Reference Team April 2016 Last update: May 2017 (revisions) This guide is also available

More information

Study Guide. Expertise in Ansible Automation

Study Guide. Expertise in Ansible Automation Study Guide Expertise in Ansible Automation Contents Prerequisites 1 Linux 1 Installation 1 What is Ansible? 1 Basic Ansible Commands 1 Ansible Core Components 2 Plays and Playbooks 2 Inventories 2 Modules

More information

Ansible Tower Quick Install

Ansible Tower Quick Install Ansible Tower Quick Install Release Ansible Tower 3.0 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Preparing for the Tower Installation 2 1.1 Installation and Reference guide.....................................

More information

PaperCut VCA Cash Acceptor Manual

PaperCut VCA Cash Acceptor Manual PaperCut VCA Cash Acceptor Manual Contents 1 Introduction... 2 2 How PaperCut interfaces with the VCA... 2 3 Setup Phase 1: Device/Hardware Setup... 3 3.1 Networking/Firewall Configuration... 3 3.2 IP

More information

Product Overview. Dream Report. OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting.

Product Overview. Dream Report. OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Dream Report OCEAN DATA SYSTEMS The Art of Industrial Intelligence User Friendly & Programming Free Reporting. Dream Report for DGH Modules Dream Report Product Overview Applications Compliance Performance

More information

PaperCut PaperCut Payment Gateway Module - CASHNet emarket Checkout - Quick Start Guide

PaperCut PaperCut Payment Gateway Module - CASHNet emarket Checkout - Quick Start Guide PaperCut PaperCut Payment Gateway Module - CASHNet emarket Checkout - Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing,

More information

OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Product Overview. Dream Report

OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Product Overview. Dream Report Dream Report OCEAN DATA SYSTEMS The Art of Industrial Intelligence User Friendly & Programming Free Reporting. Dream Report Product Overview Applications Compliance Performance Quality Corporate Dashboards

More information

Programming with network Sockets Computer Science Department, University of Crete. Manolis Surligas October 16, 2017

Programming with network Sockets Computer Science Department, University of Crete. Manolis Surligas October 16, 2017 Programming with network Sockets Computer Science Department, University of Crete Manolis Surligas surligas@csd.uoc.gr October 16, 2017 Manolis Surligas (CSD, UoC) Programming with network Sockets October

More information

2 Textual Input Language. 1.1 Notation. Project #2 2

2 Textual Input Language. 1.1 Notation. Project #2 2 CS61B, Fall 2015 Project #2: Lines of Action P. N. Hilfinger Due: Tuesday, 17 November 2015 at 2400 1 Background and Rules Lines of Action is a board game invented by Claude Soucie. It is played on a checkerboard

More information

Contents. Prerequisites 1. Linux 1. Installation 1. What is Ansible? 1. Basic Ansible Commands 1. Ansible Core Components 2. Plays and Playbooks 8

Contents. Prerequisites 1. Linux 1. Installation 1. What is Ansible? 1. Basic Ansible Commands 1. Ansible Core Components 2. Plays and Playbooks 8 Contents Prerequisites 1 Linux 1 Installation 1 What is Ansible? 1 Basic Ansible Commands 1 Ansible Core Components 2 Plays and Playbooks 2 Inventories 2 Modules 2 Variables 3 Ansible Facts 3 Ansible config

More information

DRG-Series. Digital Radio Gateway. Kenwood NXDN Donor Radio (Tier-2) Interfacing Omnitronics DRG with Kenwood NXDN Donor Digital Radios (Tier-2)

DRG-Series. Digital Radio Gateway. Kenwood NXDN Donor Radio (Tier-2) Interfacing Omnitronics DRG with Kenwood NXDN Donor Digital Radios (Tier-2) DRG-Series Digital Radio Gateway Kenwood NXDN Donor Radio (Tier-2) Interfacing Omnitronics DRG with Kenwood NXDN Donor Digital Radios (Tier-2) Digital Radio Supplement DRG-Series Supplement Kenwood NXDN

More information

DH HAIR MAKEUP. USER MANUAL updated May, ScriptE Systems, LLC

DH HAIR MAKEUP. USER MANUAL updated May, ScriptE Systems, LLC DH HAIR MAKEUP USER MANUAL updated May, 2017 ScriptE Systems, LLC READING THIS MANUAL 4 GETTING STARTED 4 CREATE A FILE 5 NAVIGATING THROUGH WINDOWS DH HAIR MAKEUP 5 ADD CHARACTERS & CHARACTER NUMBERS

More information

LeCroy UWBSpekChek WiMedia Compliance Test Suite User Guide. Introduction

LeCroy UWBSpekChek WiMedia Compliance Test Suite User Guide. Introduction LeCroy UWBSpekChek WiMedia Compliance Test Suite User Guide Version 3.10 March, 2008 Introduction LeCroy UWBSpekChek Application The UWBSpekChek application operates in conjunction with the UWBTracer/Trainer

More information

"Terminal RG-1000" Customer Programming Software. User Guide. August 2016 R4.3

Terminal RG-1000 Customer Programming Software. User Guide. August 2016 R4.3 "Terminal RG-1000" Customer Programming Software User Guide August 2016 R4.3 Table of Contents Table of Contents Introduction 2 3 1.1 Software installation 3 1.2 Connecting the RG-1000 GATEWAYs to the

More information

DRG-Series. Digital Radio Gateway. Hytera DMR USB Donor (Tier-2) Digital Radio Supplement

DRG-Series. Digital Radio Gateway. Hytera DMR USB Donor (Tier-2) Digital Radio Supplement DRG-Series Digital Radio Gateway Hytera DMR USB Donor (Tier-2) Digital Radio Supplement DRG-Series Digital Radio Gateway Hytera DMR USB Donor (Tier-2) Digital Radio Supplement 2015 Omnitronics Pty Ltd.

More information

Cloud Based LightSwitch Edgar Lopez Garcia Professor Kastner CSE 145 Spring 2016

Cloud Based LightSwitch Edgar Lopez Garcia Professor Kastner CSE 145 Spring 2016 Cloud Based LightSwitch Edgar Lopez Garcia Professor Kastner CSE 145 Spring 2016 Abstract This paper discusses the research, implementation, and contributions achieved from the Cloud Based LightSwitch

More information

RF Wireless Serial Device Server

RF Wireless Serial Device Server RF-SDS RF Wireless Serial Device Server The RF-SDS subassembly is a radio transceiver acting as a Serial Device Server, which externally connects a remote serial RF transceiver to an Ethernet network (TCP/IP).

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 3.2.2 Red Hat, Inc. Mar 08, 2018 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 5 4 Examine the Tower Dashboard 7 5 The Settings

More information

PEAK GAMES IMPLEMENTS VOLTDB FOR REAL-TIME SEGMENTATION & PERSONALIZATION

PEAK GAMES IMPLEMENTS VOLTDB FOR REAL-TIME SEGMENTATION & PERSONALIZATION PEAK GAMES IMPLEMENTS VOLTDB FOR REAL-TIME SEGMENTATION & PERSONALIZATION CASE STUDY TAKING ACTION BASED ON REAL-TIME PLAYER BEHAVIORS Peak Games is already a household name in the mobile gaming industry.

More information

DataCAD Softlock License Activation and Management

DataCAD Softlock License Activation and Management DataCAD Softlock License Activation and Management DataCAD uses a software-based license management technology called a softlock, in lieu of the hardware-based USB key, or hardlock used by older versions.

More information

AUTOMATION ACROSS THE ENTERPRISE

AUTOMATION ACROSS THE ENTERPRISE AUTOMATION ACROSS THE ENTERPRISE WHAT WILL YOU LEARN? What is Ansible Tower How Ansible Tower Works Installing Ansible Tower Key Features WHAT IS ANSIBLE TOWER? Ansible Tower is a UI and RESTful API allowing

More information

Building the Server Software for Eliminate

Building the Server Software for Eliminate Building the Server Software for Eliminate Introduction Stephen Detwiler Director of Engineering, ngmoco:) James Marr Lead Engineer R&D, ngmoco:) Introduction Build the definitive FPS for iphone in only

More information

Kodiak Corporate Administration Tool

Kodiak Corporate Administration Tool AT&T Business Mobility Kodiak Corporate Administration Tool User Guide Release 8.3 Table of Contents Introduction and Key Features 2 Getting Started 2 Navigate the Corporate Administration Tool 2 Manage

More information

HCA Tech Note 102. Checkbox Control. Home Mode aka Green Mode

HCA Tech Note 102. Checkbox Control. Home Mode aka Green Mode Checkbox Control There is a lot you can do in HCA to achieve many functions within your home without any programs or schedules. These features are collectively called Checkbox control as many of the items

More information

Configuring OSPF. Information About OSPF CHAPTER

Configuring OSPF. Information About OSPF CHAPTER CHAPTER 22 This chapter describes how to configure the ASASM to route data, perform authentication, and redistribute routing information using the Open Shortest Path First (OSPF) routing protocol. The

More information

6 System architecture

6 System architecture 6 System architecture is an application for interactively controlling the animation of VRML avatars. It uses the pen interaction technique described in Chapter 3 - Interaction technique. It is used in

More information

OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Product Overview. Dream Report

OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Product Overview. Dream Report Dream Report Product Overview Dream Report OCEAN DATA SYSTEMS The Art of Industrial Intelligence User Friendly & Programming Free Reporting. Applications Compliance Performance Quality Corporate Dashboards

More information

XLR PRO Radio Frequency (RF) Modem. Getting Started Guide

XLR PRO Radio Frequency (RF) Modem. Getting Started Guide XLR PRO Radio Frequency (RF) Modem Getting Started Guide XLR PRO Radio Frequency (RF) Modem Getting Started Guide 90002203 Revision Date Description A September 2014 Initial release. B March 2014 Updated

More information

Installation guide. Activate. Install your Broadband. Install your Phone. Install your TV. 1 min. 30 mins

Installation guide. Activate. Install your Broadband. Install your Phone. Install your TV. 1 min. 30 mins Installation guide 1 Activate Install your Broadband Install your TV 4 Install your Phone 1 min 0 mins 0 mins 5 mins INT This guide contains step-by-step instructions on how to: 1 Activate Before we do

More information

LPR SETUP AND FIELD INSTALLATION GUIDE

LPR SETUP AND FIELD INSTALLATION GUIDE LPR SETUP AND FIELD INSTALLATION GUIDE Updated: May 1, 2010 This document was created to benchmark the settings and tools needed to successfully deploy LPR with the ipconfigure s ESM 5.1 (and subsequent

More information

DataCAD 18 Softlock. Universal Installer. Installation. Evaluation

DataCAD 18 Softlock. Universal Installer. Installation. Evaluation DataCAD 18 Softlock DataCAD 18 uses a software-based license management option, referred to as a softlock, in lieu of the hardware-based USB license key, or hardlock used by older versions. Each DataCAD

More information

Blackfin Online Learning & Development

Blackfin Online Learning & Development Presentation Title: Introduction to VisualDSP++ Tools Presenter Name: Nicole Wright Chapter 1:Introduction 1a:Module Description 1b:CROSSCORE Products Chapter 2: ADSP-BF537 EZ-KIT Lite Configuration 2a:

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

Visualize 3D CATIA V5 to JT Composites Add-On Module

Visualize 3D CATIA V5 to JT Composites Add-On Module Visualize 3D CATIA V5 to JT Composites Add-On Module USER GUIDE Revision: 1.0 Issued: 10/04/2018 Contents Overview of Visualize 3D CATIA V5 to JT Composites Add-on Module... 2 Primary Product Features...2

More information

DRG-Series. Digital Radio Gateway. Motorola MotoTRBO DMR. Interfacing Omnitronics DRG with Motorola MotoTRBO DMR Digital Radios

DRG-Series. Digital Radio Gateway. Motorola MotoTRBO DMR. Interfacing Omnitronics DRG with Motorola MotoTRBO DMR Digital Radios DRG-Series Digital Radio Gateway Motorola MotoTRBO DMR Interfacing Omnitronics DRG with Motorola MotoTRBO DMR Digital Radios Digital Radio Supplement DRG-Series Supplement Interfacing Omnitronics DRG with

More information

OSPF Nonstop Routing. Finding Feature Information. Prerequisites for OSPF NSR

OSPF Nonstop Routing. Finding Feature Information. Prerequisites for OSPF NSR The feature allows a device with redundant Route Processors (RPs) to maintain its Open Shortest Path First (OSPF) state and adjacencies across planned and unplanned RP switchovers. The OSPF state is maintained

More information

FAQ and Solutions. 02 May TM and copyright Imagicle spa

FAQ and Solutions. 02 May TM and copyright Imagicle spa FAQ and Solutions 02 May 2018 TM and copyright 2010-2018 Imagicle spa Table of Contents FAQ and Solutions...1/11 SkyStone and network security settings...1/11 Upgrade procedure to support Skype 7.32...2/11

More information

Installation guide. Activate. Install your TV. Uninstall. 1 min 10 mins. 30 mins

Installation guide. Activate. Install your TV. Uninstall. 1 min 10 mins. 30 mins Installation guide 1 Activate 2 Uninstall 3 Install your TV 1 min 10 mins 30 mins INT This guide contains step-by-step instructions on how to: 1 Activate Before we do anything else, reply GO to the text

More information

PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW

PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW There are a lot of steps in the development process, so to help you jump exactly where you need to be, here are the different topics we ll cover in this

More information

Ansible Tower Quick Install

Ansible Tower Quick Install Ansible Tower Quick Install Release Ansible Tower 3.2.0 Red Hat, Inc. Nov 15, 2017 CONTENTS 1 Preparing for the Tower Installation 2 1.1 Installation and Reference Guide....................................

More information

Figure 1: Electronics Workbench screen

Figure 1: Electronics Workbench screen PREFACE 3 Figure 1: Electronics Workbench screen When you concentrate on the concepts and avoid applying by rote a memorized set of steps you are studying for mastery. When you understand what is going

More information

RTTY: an FSK decoder program for Linux. Jesús Arias (EB1DIX)

RTTY: an FSK decoder program for Linux. Jesús Arias (EB1DIX) RTTY: an FSK decoder program for Linux. Jesús Arias (EB1DIX) June 15, 2001 Contents 1 rtty-2.0 Program Description. 2 1.1 What is RTTY........................................... 2 1.1.1 The RTTY transmissions.................................

More information

QUIZ : oversubscription

QUIZ : oversubscription QUIZ : oversubscription A telco provider sells 5 Mpbs DSL service to 50 customers in a neighborhood. The DSLAM connects to the central office via one T3 and two T1 lines. What is the oversubscription factor?

More information

COPYRIGHTED MATERIAL. Learning to Program. Part. In This Part

COPYRIGHTED MATERIAL. Learning to Program. Part. In This Part Part In This Part I Learning to Program Chapter 1: Programming for World of Warcraft Chapter 2: Exploring Lua Basics Chapter 3: Basic Functions and Control Structures Chapter 4: Working with Tables Chapter

More information

ATLAS. P25 Systems. LMR communications made simple.

ATLAS. P25 Systems. LMR communications made simple. P25 Systems LMR communications made simple. We make your critical communication system safe and simple to use. IS THE MOST MODERN & FLEXIBLE P25 SYSTEM Our patented Latitude technology makes the P25 application

More information

MESA Cyber Robot Challenge: Robot Controller Guide

MESA Cyber Robot Challenge: Robot Controller Guide MESA Cyber Robot Challenge: Robot Controller Guide Overview... 1 Overview of Challenge Elements... 2 Networks, Viruses, and Packets... 2 The Robot... 4 Robot Commands... 6 Moving Forward and Backward...

More information

Shadow Robot Documentation

Shadow Robot Documentation Shadow Robot Documentation Release 1.4.0 Ugo Cupcic Jun 12, 2018 Contents 1 Workspaces 3 2 Updating your workspace 5 3 Installing for a real robot 7 3.1 Configuration...............................................

More information

Networks of any size and topology. System infrastructure monitoring and control. Bridging for different radio networks

Networks of any size and topology. System infrastructure monitoring and control. Bridging for different radio networks INTEGRATED SOLUTION FOR MOTOTRBO TM Networks of any size and topology System infrastructure monitoring and control Bridging for different radio networks Integrated Solution for MOTOTRBO TM Networks of

More information

BUILDING A KILLER TRANSLATOR WEBSITE

BUILDING A KILLER TRANSLATOR WEBSITE BUILDING A KILLER TRANSLATOR WEBSITE YOUR STEP-BY-STEP GUIDE TO AWESOMENESS OK, so you want to be a translator. Or maybe you ve been working for a while and you re looking to up your game a little. You

More information

AGENTLESS ARCHITECTURE

AGENTLESS ARCHITECTURE ansible.com +1 919.667.9958 WHITEPAPER THE BENEFITS OF AGENTLESS ARCHITECTURE A management tool should not impose additional demands on one s environment in fact, one should have to think about it as little

More information

SAP Dynamic Edge Processing IoT Edge Console - Administration Guide Version 2.0 FP01

SAP Dynamic Edge Processing IoT Edge Console - Administration Guide Version 2.0 FP01 SAP Dynamic Edge Processing IoT Edge Console - Administration Guide Version 2.0 FP01 Table of Contents ABOUT THIS DOCUMENT... 3 Glossary... 3 CONSOLE SECTIONS AND WORKFLOWS... 5 Sensor & Rule Management...

More information

PaperCut PaperCut Payment Gateway Module - Nelnet Business Solutions Commerce Manager Quick Start Guide

PaperCut PaperCut Payment Gateway Module - Nelnet Business Solutions Commerce Manager Quick Start Guide PaperCut PaperCut Payment Gateway Module - Nelnet Business Solutions Commerce Manager Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide

More information

CANopen Programmer s Manual

CANopen Programmer s Manual CANopen Programmer s Manual Part Number 95-00271-000 Revision 7 November 2012 CANopen Programmer s Manual Table of Contents TABLE OF CONTENTS About This Manual... 6 1: Introduction... 11 1.1: CAN and

More information

CANopen Programmer s Manual

CANopen Programmer s Manual CANopen Programmer s Manual Part Number 95-00271-000 Revision 5 October, 2008 CANopen Programmer s Manual Table of Contents TABLE OF CONTENTS About This Manual... 7 Overview and Scope... 7 Related Documentation...

More information

Project Example: wissen.de

Project Example: wissen.de Project Example: wissen.de Software Architecture VO/KU (707.023/707.024) Roman Kern KMI, TU Graz January 24, 2014 Roman Kern (KMI, TU Graz) Project Example: wissen.de January 24, 2014 1 / 59 Outline 1

More information

Version 9.1. Installation & Configuration Guide

Version 9.1. Installation & Configuration Guide Version 9.1 SmartPTT PLUS November 2016 Table of Contents Table of Contents Introduction 2 Installation of the SmartPTT software 2 General SmartPTT Radioserver Configuration 6 SmartPTT Dispatcher Configuration

More information

Let s dive in and get your site up and running!

Let s dive in and get your site up and running! Hi there, welcome to Flywheel! We re thrilled to help you build, launch, and manage your WordPress site, and ultimately, help you scale your business. With this ebook, you ll learn everything you need

More information

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols Josh Broch, David Maltz, David Johnson, Yih-Chun Hu and Jorjeta Jetcheva Computer Science Department Carnegie Mellon University

More information

medlab Two Channel Invasive Blood Pressure OEM board EG 02000

medlab Two Channel Invasive Blood Pressure OEM board EG 02000 medlab Two Channel Invasive Blood Pressure OEM board EG 02000 Technical Manual Copyright Medlab 2003-2014 1 Version 2.02 01.04.2014 Contents: Mechanical dimensions, overview 3 Specifications 5 Connector

More information

Copley ASCII Interface Programmer s Guide

Copley ASCII Interface Programmer s Guide Copley ASCII Interface Programmer s Guide PN/95-00404-000 Revision 4 June 2008 Copley ASCII Interface Programmer s Guide TABLE OF CONTENTS About This Manual... 5 Overview and Scope... 5 Related Documentation...

More information

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications AT-XTR-7020A-4 Multi-Channel Micro Embedded Transceiver Module The AT-XTR-7020A-4 radio data transceiver represents a simple and economical solution to wireless data communications. The employment of an

More information

M-16DX 16-Channel Digital Mixer

M-16DX 16-Channel Digital Mixer M-16DX 16-Channel Digital Mixer Workshop Using the M-16DX with a DAW 2007 Roland Corporation U.S. All rights reserved. No part of this publication may be reproduced in any form without the written permission

More information

PaperCut PaperCut Payment Gateway Module - Heartland Quick Start Guide

PaperCut PaperCut Payment Gateway Module - Heartland Quick Start Guide PaperCut PaperCut Payment Gateway Module - Heartland Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up and testing

More information

Houston Radar LLC. Installation and User Manual For. Doppler Radar DR-1500

Houston Radar LLC. Installation and User Manual For. Doppler Radar DR-1500 Houston Radar LLC Installation and User Manual For Doppler Radar DR-1500 Houston Radar LLC 13814 Sherburn Manor Dr. Cypress.TX Http://www.Houston-Radar.com Email: sales@houston-radar.com Contact: (281)

More information

ARS AUGMENTED REALITY SERIES

ARS AUGMENTED REALITY SERIES REQUIRED HARDWARE This tutorial focuses on installing and calibrating the software, but doesn t cover the details of the hardware setup. (Note: Do not plug the Kinect or projector unit until instructed

More information

OSPF Mechanism to Exclude Connected IP Prefixes from LSA Advertisements

OSPF Mechanism to Exclude Connected IP Prefixes from LSA Advertisements OSPF Mechanism to Exclude Connected IP Prefixes from LSA Advertisements This document describes the Open Shortest Path First (OSPF) mechanism to exclude IP prefixes of connected networks from link-state

More information

Term Definition Introduced in:

Term Definition Introduced in: 60 Minutes of Access Secrets Key Terms Term Definition Introduced in: Calculated Field A field that displays the results of a calculation. Introduced in Access 2010, this field allows you to make calculations

More information

ME218C 2018 Communications Protocol. Revision # 1 5/7/18 Initial Draft /10/18 Meet w/ Karl /11/18 Update State Diagrams to Reflect Unpair

ME218C 2018 Communications Protocol. Revision # 1 5/7/18 Initial Draft /10/18 Meet w/ Karl /11/18 Update State Diagrams to Reflect Unpair ME218C 2018 Communications Protocol Revision # 1 5/7/18 Initial Draft 1.1 5/10/18 Meet w/ Karl 1.2 5/11/18 Update State Diagrams to Reflect Unpair 1.3 5/17/18 Standardizing Ship Pairing Addresses 1.4 5/28/18

More information

DXXX Series Servo Programming...9 Introduction...9 Connections HSB-9XXX Series Servo Programming...19 Introduction...19 Connections...

DXXX Series Servo Programming...9 Introduction...9 Connections HSB-9XXX Series Servo Programming...19 Introduction...19 Connections... DPC-11 Operation Manual Table of Contents Section 1 Introduction...2 Section 2 Installation...4 Software Installation...4 Driver Installastion...7 Section 3 Operation...9 D Series Servo Programming...9

More information

DragonLink Advanced Transmitter

DragonLink Advanced Transmitter DragonLink Advanced Transmitter A quick introduction - to a new a world of possibilities October 29, 2015 Written by Dennis Frie Contents 1 Disclaimer and notes for early release 3 2 Introduction 4 3 The

More information

Product at a glance: The Preclick Photo Organizer, v 1.2

Product at a glance: The Preclick Photo Organizer, v 1.2 Product: Product at a glance: The Preclick Photo Organizer, v 1.2 Positioning: Target User: PRECLICK PHOTO ORGANIZER Fastest and easiest way to organize, preserve, print and share your digital photos Newly

More information

LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide

LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide M-5578/0516 M-5578/0516 Section TABLE OF CONTENTS 1 Introduction... 1 2 Quick Guide on Getting Started... 2 Mounting the LVTX-10 Series

More information

Distributed Intelligence in Autonomous Robotics. Assignment #1 Out: Thursday, January 16, 2003 Due: Tuesday, January 28, 2003

Distributed Intelligence in Autonomous Robotics. Assignment #1 Out: Thursday, January 16, 2003 Due: Tuesday, January 28, 2003 Distributed Intelligence in Autonomous Robotics Assignment #1 Out: Thursday, January 16, 2003 Due: Tuesday, January 28, 2003 The purpose of this assignment is to build familiarity with the Nomad200 robotic

More information

Wireless No-Probe Temp Sensor User Guide VERSION 1.3 NOVEMBER 2018

Wireless No-Probe Temp Sensor User Guide VERSION 1.3 NOVEMBER 2018 Wireless No-Probe Temp Sensor User Guide VERSION 1.3 NOVEMBER 2018 TABLE OF CONTENTS 1. QUICK START... 2 2. OVERVIEW... 2 2.1. Sensor Overview...2 2.2. Revision History...3 2.3. Document Conventions...3

More information

ArcGIS Geocoding What s New and the Road Ahead. Jeff Rogers Brad Niemand

ArcGIS Geocoding What s New and the Road Ahead. Jeff Rogers Brad Niemand ArcGIS Geocoding What s New and the Road Ahead Jeff Rogers Brad Niemand Agenda Overview - ArcGIS Platform Geocoding - ArcGIS Geocoding Solutions What s New - On-Premises Geocoding Solutions - Desktop Geocoding

More information

Enhancing System Architecture by Modelling the Flash Translation Layer

Enhancing System Architecture by Modelling the Flash Translation Layer Enhancing System Architecture by Modelling the Flash Translation Layer Robert Sykes Sr. Dir. Firmware August 2014 OCZ Storage Solutions A Toshiba Group Company Introduction This presentation will discuss

More information

C Commands. Send comments to

C Commands. Send comments to This chapter describes the Cisco NX-OS Open Shortest Path First (OSPF) commands that begin with C. UCR-583 clear ip ospf neighbor clear ip ospf neighbor To clear neighbor statistics and reset adjacencies

More information

AES 7705i MultiNet Receiver System Initial Installation and Setup Guide

AES 7705i MultiNet Receiver System Initial Installation and Setup Guide AES 7705i MultiNet Receiver System Initial Installation and Setup Guide AES Corporation 285 Newbury Street. Peabody, Massachusetts 01960-1315 USA Tel: USA (978) 535-7310. Fax: USA (978) 535-7313 Copyright

More information

PaperCut PaperCut Payment Gateway Module - Realex Realauth Redirect Quick Start Guide

PaperCut PaperCut Payment Gateway Module - Realex Realauth Redirect Quick Start Guide PaperCut PaperCut Payment Gateway Module - Realex Realauth Redirect Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting

More information

DopplerPSK Quick-Start Guide for v0.10

DopplerPSK Quick-Start Guide for v0.10 DopplerPSK Quick-Start Guide for v0.10 Program Description DopplerPSK is an experimental program for transmitting Doppler-corrected PSK31 on satellite uplinks. It uses an orbital propagator to estimate

More information

Affiliate Millions - How To Create A Cash-Erupting Volcano Using Viral Video

Affiliate Millions - How To Create A Cash-Erupting Volcano Using Viral Video Michael Cheney s Affiliate Millions 1 Now it s time to talk about how to create a cash-erupting volcano using viral video. What on earth does that mean? Basically I m going to show you how you can use

More information

DocuSign for Sugar 7 v1.0. Overview. Quick Start Guide. Published December 5, 2013

DocuSign for Sugar 7 v1.0. Overview. Quick Start Guide. Published December 5, 2013 Quick Start Guide DocuSign for Sugar 7 v1.0 Published December 5, 2013 Overview This guide provides information on installing and signing documents with DocuSign for Sugar7. The Release Notes for DocuSign

More information

4.5.1 Mirroring Gain/Offset Registers GPIO CMV Snapshot Control... 14

4.5.1 Mirroring Gain/Offset Registers GPIO CMV Snapshot Control... 14 Thank you for choosing the MityCAM-C8000 from Critical Link. The MityCAM-C8000 MityViewer Quick Start Guide will guide you through the software installation process and the steps to acquire your first

More information

best practice guide Ruckus SPoT Best Practices SOLUTION OVERVIEW AND BEST PRACTICES FOR DEPLOYMENT

best practice guide Ruckus SPoT Best Practices SOLUTION OVERVIEW AND BEST PRACTICES FOR DEPLOYMENT best practice guide Ruckus SPoT Best Practices SOLUTION OVERVIEW AND BEST PRACTICES FOR DEPLOYMENT Overview Since the mobile device industry is alive and well, every corner of the ever-opportunistic tech

More information

Understanding PMC Interactions and Supported Features

Understanding PMC Interactions and Supported Features CHAPTER3 Understanding PMC Interactions and This chapter provides information about the scenarios where you might use the PMC, information about the server and PMC interactions, PMC supported features,

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 3.1.3 Red Hat, Inc. Feb 27, 2018 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 5 4 Examine the Tower Dashboard 7 5 The Settings

More information

What is CCD Commander?

What is CCD Commander? Matt Thomas What is CCD Commander? Multi-target imaging automation tool Controls all aspects of the imaging system Camera (Imaging and Guiding); Mount (Fork or GEM) Dome/Roll-of-roof; Focuser; Rotator;

More information

Product Specification for model TT Transducer Tester Rev. B

Product Specification for model TT Transducer Tester Rev. B TT Rev B April 20, 2010 Product Specification for model TT Transducer Tester Rev. B The Rapid Controls model TT Rev B transducer tester connects to multiple types of transducers and displays position and

More information

Ansible. Go directly to project site 1 / 36

Ansible. Go directly to project site 1 / 36 Ansible Go directly to project site 1 / 36 What is it and why should I be using it? 2 / 36 What is it? Ansible is a radically simple IT automation platform that makes your applications and systems easier

More information

User Guide: PTT Application - Android. User Guide. PTT Application. Android. Release 8.3

User Guide: PTT Application - Android. User Guide. PTT Application. Android. Release 8.3 User Guide PTT Application Android Release 8.3 March 2018 1 1. Introduction and Key Features... 6 2. Application Installation & Getting Started... 7 Prerequisites... 7 Download... 8 First-time Activation...

More information

Version 9.2. SmartPTT PLUS. Capacity Max Configuration Guide

Version 9.2. SmartPTT PLUS. Capacity Max Configuration Guide Version 9.2 Configuration Guide Januar 2018 Contents Contents 1 3 1.1 Configuring 5 1.2 Configuring Trunk Controller 9 1.3 Configuring MNIS Data Gateway 15 1.4 Configuring MNIS VRC Gateway 22 1.5 Configuring

More information