LeC 2 "Let'em Click" (Version 2.0)

Size: px
Start display at page:

Download "LeC 2 "Let'em Click" (Version 2.0)"

Transcription

1 OPERATING MANUAL LeC 2 "Let'em Click" (Version 2.0) Version 12/09 Contents 1. Basic Explanation and Operation of the Software 2. The Script Editor 3. Task Planner 4. Web Server 5. Possible Problems and their Solution 1. Basic Explanation and Operation of the Software "LeC 2" is a programme for Windows 2000, XP and Vista for controlling serial 8-fold relay circuit boards (Conrad order no and/or ). For this, the programme offers several possibilities, such as a main menu, script editor and web server. They will be explained in detail in these instructions. "LeC 2" can not be opened several times, because all PCBs can be controlled through an interface (serial or USB by "USB to RS232 converter IC, Conrad order no ).

2 1.1 The Main Menu After the programme is started, the start-up-screen will appear first and the PCB(s) will be initialised. Also, the relay PCB software version will be indicated after successful initialisation. Afterwards, the programme will run in the background, and a symbol will appear in the status bar next to the time. Clicking left opens the main menu, clicking right opens a popup menu that will also give you access to the different functions. If you open the programme for the first time, you will see a message asking you to adjust the serial connection and the configuration window will open. By default, the programme always assumes the first connection (COM1). In the main menu, you can directly switch the relays. You may select a PCB through the tabs. The relay names can be taken from the relay card and relay number. You may select the relay name in the configuration dialogue. Web server, task planner and script editor can be opened under "Functions". Right-clicking on the symbol in the task bar also calls these functions.

3 1.2 The Configuration Dialogue Here you can make the "LeC 2" settings. You can also determine names for the relays. When the dialogue is closed through "OK", the names are saved. Setting "Visible after Launch": When this option is selected, the main menu is opened when "LeC 2" is started. Setting "Activate systemwide Hotkeys": If you do not always have to open the main menu, "LeC 2" offers some system-wide hotkeys (shortcuts) for switching the relays. When the hotkeys are active, the relays can be switched (no matter which Windows programme you are currently in). The shortcuts are the following: "Shift" and F1 to F8: Switch relay on/off "Shift" and F9: Go one PCB back "Shift" and F10: Go one PCB forward "Shift" and F11: Display/hide main menu Setting "All Relays off when close LeC 2 : All relays on all PCBs are switched off when "LeC 2" is exited.

4 "COM port" connection settings: In this box, the serial connection to which the relay PCBs are connected is set. Where no relay PCBs are recognised at the connection, you will receive an error message and the configuration dialogue will open. Check if the relay PCB is externally powered up and if it is connected properly. The fields for changing the relay names are not available if no PCBs were recognized. If a new connection is selected, you need to "reconnect", to accept it in the connection protocol. Setting "Auto reconnect : When the connection to the relay PCBs is interrupted, an attempt to re-establish the connection is made every 60 seconds.

5 1.3 The Connection Protocol The connection protocol logs the connection between "LeC 2" and the relay PCBs. You may also manually re-establish the connections if an error occurred. Device may also be saved to a file.

6 2. The Script Editor The "LeC 2" script functions can be used to automate switching processes. In the following, the "LeC 2" script language commands are described.

7 2.1 Script Commands Sendbyte: Sends a byte to the relay PCB. The first parameter after the command indicates the PCB, the 2nd parameter the command byte. Enter, e.g. "Sendbyte 1 1" for the first relay on the first PCB (with a space between commands and parameters!). When the first parameter indicated is 0, a broadcast is sent. For "Sendbyte 0 1", the first relay is switched on all PCBs. The command byte is handed directly to the PCB, and you need to convert from decimal to binary numbers by yourself (see section 2.2). Sendbin: Sends a binary byte to the relay PCB. The first parameter indicates the PCB. Then the relay bits are given from the right to the left. "Sendbin " switches on the eighth relay on the first PCB and switches all the other relays off. Set: The set command is the easiest but most comprehensive command. The first parameter after the command is the PCB number again. For reasons of compatibility with the preceding PCB version (Motorola micro controller), "Set" cannot use "0" (Broadcast) as an address. The second parameter is the relay number. The 3rd parameter can be "on", "off" or "toggle" (reverse status). The command Set only affects the relay indicated. All other relays remain unchanged. Sleep: "Sleep" can be used to insert a pause. The pause is indicated in seconds. Goto: "Goto" can be used to programme "endless programmes" to keep repeating certain switching sequences. As a parameter, state the line to which the programme should jump each time. The script will only stop when interrupted or when "LeC 2" is exited. Server: The "Server" command can be used to switch the "LeC 2" web server on and off. Thus, the web server can be switched on and off at certain times in connection with the task planner. Use either "start" or "stop" as a parameter. Taskplaner: The "Taskplaner" command can be used to switch the "LeC 2" task planner on and off. Use either "start" or "stop" as a parameter. Close: Use "close" to exit "LeC 2" without confirmation. All settings are saved and the programme is exited at once. When the setting "All relays off when close LeC 2" is selected, all relays are switched off first. The parameters are divided with spaces You may start any comments with a "{" character at the beginning of the line, and close it with "}" (do not enter quotes). Comments may also be written after a command, with a space to separate them. For examples, see the example scripts under "Samples" in the "LeC 2" installation path.

8 2.2 Editor Window In the editor window, you will be able to write, save, open and execute "LeC 2"-scripts. When a script is executed, any error messages are displayed under the editor. Furthermore, the editor has a code completion function that is called automatically. Right-click opens the editing menu, which can be used to open the help file manually through "Open script help" (Ctrl+h). 2.3 Help for Using the Script Editor for the First Time To become familiar with the script editor operation, proceed as follows: Open the script editor and enter the following script: { Running Light Example 1 } Sendbyte 0 0 { Broadcast: Switch off all relays on all PCBs } Sendbyte 1 1 { Only relay 1 on PCB 1 is on } Sendbyte 1 2 { Only relay 2 on PCB 1 is on } Sendbyte 1 4 { Only relay 3 on PCB 1 is on } Sendbyte 1 8 { Only relay 4 on PCB 1 is on } Sendbyte 1 16 { Only relay 5 on PCB 1 is on } Sendbyte 1 32 { Only relay 6 on PCB 1 is on } Sendbyte 1 64 { Only relay 7 on PCB 1 is on } Sendbyte { Only relay 1 on PCB 1 is on } Sendbyte 1 0 { All relays on PCB 1 are off } Now click on "execute script" (F9). Now you programmed a simple running light. For explanation, this is the table for calculating the values for the "Sendbyte" command: Bit Relay 1 Relay 2 Relay 3 Relay 4 Relay 5 Relay 6 Relay 7 Relay 8 Value Example On (1) Off (0) Off (0) On (1) On (1) Off (0) Off (0) On (1) When adding the different relay number values from the example: = 153 To send the example, enter "Sendbyte 1 153, with 1 being the PDB number.

9 The "Sendbin" command works the other way around: { Running Light Example 2 } Sendbin { Broadcast: Switch off all relays on all PCBs } Sendbin { Only relay 1 on PCB 1 is on } Sendbin { Only relay 2 on PCB 1 is on } Sendbin { Only relay 3 on PCB 1 is on } Sendbin { Only relay 4 on PCB 1 is on } Sendbin { Only relay 5 on PCB 1 is on } Sendbin { Only relay 6 on PCB 1 is on } Sendbin { Only relay 7 on PCB 1 is on } Sendbin { Only relay 8 on PCB 1 is on } Sendbin { All relays on PCB 1 are off} Here the relays are directly set or deleted with "0" or "1". The order is from the right to the left. When only "Sendbin 1 101" is indicated, the first and third relays of the 1st circuit board are activated.

10 The "Set" command can also be used to reverse the status of individual relays: { This script shows the Set command } { First parameter: PCB } { Second parameter: Relay number 1-8 } { Third parameter: on, off, toggle } Sendbyte 0 0 {Switch off all relays on all PCBs } Sleep 1 { Wait for one second } Set 1 1 on { Switch on the first relay on relay card 1 } Set 1 2 on { Switch on the second relay on relay card 1 } Set 1 3 on { Switch on the third relay on relay card 1 } Set 1 4 on { etc. } Set 1 5 on Set 1 6 on Set 1 7 on Set 1 8 on Sleep 5 { Wait for five seconds } Set 1 1 off { switch off the first relay on relay card 1 } Set 1 2 off { switch off the second relay on relay card 1 } Set 1 3 off { switch off the third relay on relay card 1 } Set 1 4 off { etc. } Set 1 5 off Set 1 6 off Set 1 7 off Set 1 8 off Sleep 5 { Wait for five seconds } Set 1 1 toggle { Toggle the state of the first relay on relay card 1 } Set 1 2 toggle { Toggle the state of the second relay on relay card 1 } Set 1 3 toggle { Toggle the state of the third relay on relay card 1 } Set 1 4 toggle { etc. } Set 1 5 toggle Set 1 6 toggle Set 1 7 toggle Set 1 8 toggle Sendbyte 1 0 { All relays on PCB 1 are off } { Programme end }

11 The "Sleep" command enters a short break (in seconds) in the programme. Observe that the execution speed of the programme may vary according to computer, relay PCBs and selected command due to its underlying principle (for cascading, see relay PCB instructions). For longer breaks, break the programme into several parts and start them through the task planner.

12 3. Task Planner Use the task planner to plan the execution of "LeC 2" scripts at certain times. You may choose between once, daily, weekly and monthly execution. You may plan up to a maximum of 50 tasks. One-time tasks are automatically removed from the list after they are started. No tasks are executed while the script editor is open! Also do not use any endless loops ("goto") in the scripts or to schedule tasks directly after one another. E.g. when a one-time task is scheduled at the same time as a weekly one, the task that is farther towards the top of the list will be executed. The time column gives "O" (once) for once, "D" (day) for daily, "W" (week) for weekly and "M" (month) for monthly tasks. When adding a task, the time of the day is added for daily execution, the weekday is also added for weekly execution (with 1 being Monday and 7 Sunday) and time and day for monthly execution. If you want to delete one or all tasks, select the task from the list and open the editing menu with the right mouse button.

13 4. Web Server The "LeC 2" web server can be used to control the relay PCBs through the local network or even through the internet. Under port, select the TCP/IP port on which the server is to reply. If you do not know what this means, keep 80 as the default setting. To protect the server, you need to select a user name and password. User name and password must have more than 5 characters for the server to be activated. Otherwise, an error message will be returned. To change settings, the server must first be deactivated. Select a sufficiently secure password and another user name than the default one. Only clear the web server for the internet when you are clear on the risk involved. Conrad Electronic shall not be liable for any damage caused by the web server. When starting "LeC 2", the server is started automatically if it was activated when it was exited. For testing, press "Server test" and the web interface will be opened in your standard browser.

14 4.1 Web Interface The "LeC 2" web interface can be used with a browser (e.g. Internet Explorer, Firefox). When it is opened, the login dialogue will be displayed first. Enter your login information for access. The interface is similar to the "LeC 2" main menu, but it is operated a bit differently: A PCB can be selected with the "Select Board" dropdown menu. Press "Switch Board" for confirmation. Switching the PCB also has some local effects! The web server switches the PCB selected in the server in the main menu. To switch the relays, select the selection fields and click "Switch relays". The page is now reloaded and the selected relays will switch. If you want to discard your selection, click "Reset selection". You may also switch on/off all relays on the current PCB as in the main menu or to switch on/off all relays on all PCBs. You may also call all log files and display the server screen content as an image. When no PCBs are initialised, access will be limited to certain functions. The connection can be re-established with "Reconnect boards".

15 The current task list is also displayed as in the main menu. The currently active task is highlighted in red. To close the current session, just close the browser window.

16 5. Possible Problems and their Removal Usually, there should be no problems when working with "LeC 2". If there should still be any error, this section may help you. Otherwise, ask your technical questions under: Germany: Tel. no.: / Fax. no.: / tkb@conrad.de Mon. to Thur. 8.00am to 4.30pm Fri. 8.00am to 2.00pm Problem "Programme does not react" Does the programme currently attempt to reconnect? Due to the underlying principle, the relay PCB initiation will take a while. Also check the "reconnect automatically" setting. If this option is activated, the programme automatically tries to reconnect every 60 seconds. When operated via USB with a "USB converter": Was the USB cable removed or does the virtual interface no longer exist? Read the operating instructions of the USB converter for help on the correct installation.

17 These operating instructions are a publication by Conrad Electronic SE, Klaus-Conrad-Str. 1, D Hirschau ( All rights including translation reserved. Reproduction by any method, e.g. photocopy, microfilming, or the capture in electronic data processing systems require the prior written approval by the editor. Reprinting, also in part, is prohibited. These operating instructions represent the technical status at the time of printing. Changes in technology and equipment reserved. Copyright 2009 by Conrad Electronic SE. 01_1209_01

GEIGER COUNTER "Gamma Check Pro"

GEIGER COUNTER Gamma Check Pro GEIGER COUNTER "Gamma Check Pro" OPERATING INSTRUCTIONS FOR THE SOFTWARE Item no. 1377508 VERSION 11/15 TABLE OF CONTENTS Page 1. Functions of the Software... 3 2. Software/Driver Installation... 3 3.

More information

USER GUIDE. Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6

USER GUIDE. Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6 KRAMER ELECTRONICS LTD. USER GUIDE Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6 Contents 1 Connecting to the Kramer Device via the Ethernet Port 1 1.1 Connecting the Ethernet Port Directly

More information

domovea remote access tebis

domovea remote access tebis domovea remote access tebis SUMMARY SUMMARY Page 1. INTRODUCTION... 2 1.1 PURPOSE OF THE DOCUMENT... 2 1.2 PRELIMINARIES... 2 2.... 3 2.1 CONNECTING TO THE DOMOVEA.COM PORTAL... 3 2.2 CREATING A PERSONAL

More information

WebEx Integration to Lotus Notes. Users Guide

WebEx Integration to Lotus Notes. Users Guide WebEx Integration to Lotus Notes Users Guide 072310 Copyright 1997 2010 Cisco and/or its affiliates. All rights reserved. WEBEX, CISCO, Cisco WebEx, the CISCO logo, and the Cisco WebEx logo are trademarks

More information

TriCore Secure Web Email Gateway User Guide 1

TriCore Secure Web Email Gateway User Guide 1 TriCore Secure Web Email Gateway User Guide This document provides information about TriCore Secure Web Email Gateway. This document is for users who are authorized to send and receive encrypted email

More information

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009 State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,

More information

FrontDesk Installation And Configuration

FrontDesk Installation And Configuration Chapter 2 FrontDesk Installation And Configuration FrontDesk v4.1.25 FrontDesk Software Install Online Software Activation Installing State Related Databases Setting up a Workstation Internet Transfer

More information

User's Guide. EXACT Scheduler. Scheduling EXACT events for one-time or repeat actions. Scheduler rev 1, 22/07/2013 page 1 of 19

User's Guide. EXACT Scheduler. Scheduling EXACT events for one-time or repeat actions. Scheduler rev 1, 22/07/2013 page 1 of 19 User's Guide EXACT Scheduler Scheduling EXACT events for one-time or repeat actions Scheduler rev 1, 22/07/2013 page 1 of 19 Copyright 2013 Software of Excellence International. All rights reserved The

More information

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001 HP External Hard Disk Drive Backup Solution by Seagate User Guide November 2004 (First Edition) Part Number 373652-001 Copyright 2004 Hewlett-Packard Development Company, L.P. The information contained

More information

Job Streaming User Guide

Job Streaming User Guide Job Streaming User Guide By TOPS Software, LLC Clearwater, Florida Document History Version Edition Date Document Software Trademark Copyright First Edition 08 2006 TOPS JS AA 3.2.1 The names of actual

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION Publication: 81-9059-0703-0, Rev. C www.pesa.com Phone: 256.726.9200 Thank You for Choosing PESA!! We appreciate your confidence in our products. PESA produces

More information

Application & Quick-Start Guide

Application & Quick-Start Guide Model: CRMWIC Web Intelligent Controller 1 This document will illustrate various ways to connect and use a CRM-WIC as well as programming examples. When connecting CRM-WIC, the installer has several interface

More information

Important Notes for WinConnect Server VS Software Installation:

Important Notes for WinConnect Server VS Software Installation: Important Notes for WinConnect Server VS Software Installation: 1. Only Windows Vista Business, Windows Vista Ultimate, Windows 7 Professional, Windows 7 Ultimate, Windows Server 2008 (32-bit & 64-bit),

More information

DIGICLIENT 8.0 Remote Agent Software

DIGICLIENT 8.0 Remote Agent Software DIGICLIENT 8.0 Remote Agent Software MODEL: D17800 Series Instruction Manual English Version 1.0 Copyright 2007 Digimerge Technologies Inc Table of Contents Table of Contents About the DigiClient 8.0...

More information

SOFTWARE INSTALLATION INSTRUCTIONS

SOFTWARE INSTALLATION INSTRUCTIONS AUDITGARD LGA Electronic Combination Lock SOFTWARE INSTALLATION INSTRUCTIONS Implementation Package The AuditGard Software implementation package includes: 707013 AuditGard Software Install CD 42145 Programming/Audit

More information

Manual English KOI Desktop App 2.0.x

Manual English KOI Desktop App 2.0.x Manual English KOI Desktop App 2.0.x KOI Kommunikation, Organisation, Information Comm-Unity EDV GmbH 2010 Contents Introduction... 3 Information on how to use the documentation... 3 System requirements:...

More information

FINS Gateway For OMRON PLCs

FINS Gateway For OMRON PLCs 1 Purpose This Technical Note describes how to set up a remote collaboration. A remote collaboration consists in configuring, programming or monitoring a PLC from a remote location, without the need of

More information

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

Deposit Direct. Getting Started Guide

Deposit Direct. Getting Started Guide Deposit Direct Getting Started Guide Table of Contents Before You Start... 3 Installing the Deposit Direct application for use with Microsoft Windows Vista... 4 Running Programs in Microsoft Windows Vista...

More information

TCP/IP MODULE CA-ETHR-A INSTALLATION MANUAL

TCP/IP MODULE CA-ETHR-A INSTALLATION MANUAL TCP/IP MODULE CA-ETHR-A INSTALLATION MANUAL w w w. c d v g r o u p. c o m CA-ETHR-A: TCP/IP Module Installation Manual Page Table of Contents Introduction...5 Hardware Components... 6 Technical Specifications...

More information

Installation. The product model shown in this QIG is TD-W8961ND, as an example.

Installation. The product model shown in this QIG is TD-W8961ND, as an example. Installation The product model shown in this QIG is TD-W8961ND, as an example. Please use only wired network connections to configure the router. Power down all your network devices, including your computer(s)

More information

SPC-1. Single Point Controller. Operation Manual

SPC-1. Single Point Controller. Operation Manual SPC-1 Single Point Controller Operation Manual NOTICE: PPM Technology Limited shall not be liable for errors that may appear herein or for incidental or consequential damages in connection with or arising

More information

Job Scheduler User Guide IGSS Version 11.0

Job Scheduler User Guide IGSS Version 11.0 Job Scheduler User Guide IGSS Version 11.0 The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products contained therein.

More information

ViewPower. User s Manual. Management Software for Uninterruptible Power Supply Systems

ViewPower. User s Manual. Management Software for Uninterruptible Power Supply Systems ViewPower User s Manual Management Software for Uninterruptible Power Supply Systems Table of Contents 1. ViewPower Overview... 2 1.1. Introduction...2 1.2. Structure...2 1.3. Applications...2 1.4. Features...2

More information

Easy Setup Guide for the Sony Network Camera

Easy Setup Guide for the Sony Network Camera -878-191-11 (1) Easy Setup Guide for the Sony Network Camera For setup, a computer running the Microsoft Windows Operating System is required. For monitoring camera images, Microsoft Internet Explorer

More information

COMBOGARDPRO. 39E Electronic Combination Lock SOFTWARE INSTALLATION INSTRUCTIONS

COMBOGARDPRO. 39E Electronic Combination Lock SOFTWARE INSTALLATION INSTRUCTIONS COMBOGARDPRO 39E Electronic Combination Lock SOFTWARE INSTALLATION INSTRUCTIONS IMPLEMENTATION PACKAGE The ComboGard Pro Software implementation package includes: 707012 ComboGard Pro Software Install

More information

OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES

OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES OFFICE KEYBOARD (MT1210 & MT1405) OFFICE FEATURES Thank you for purchasing OFFICE KEYBOARD. This User s manual contains all information that helps you to operate your keyboard. Please keep the software

More information

SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual

SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual Version 1.0 - January 20, 2015 CHANGE HISTORY Version Date Description of Changes 1.0 January 20, 2015 Initial Publication

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Using Flow Control with the HEAD Recorder

Using Flow Control with the HEAD Recorder 03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,

More information

Monitoring Network DMN

Monitoring Network DMN Monitoring Network DMN User Manual Table of contents Table of contents... 2 1. Product features and capabilities... 3 2. System requirements... 5 3. Getting started with the software... 5 3-1 Installation...

More information

TOSHIBA GA-1310. Printing from Windows

TOSHIBA GA-1310. Printing from Windows TOSHIBA GA-1310 Printing from Windows 2009 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45081979 04 February 2009 CONTENTS 3 CONTENTS

More information

Uni Sales Analysis CRM Extension for Sage Accpac ERP 5.5

Uni Sales Analysis CRM Extension for Sage Accpac ERP 5.5 SAGE ACCPAC OPTIONS Sage Accpac Options Uni Sales Analysis CRM Extension for Sage Accpac ERP 5.5 User Guide 2008 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and all Sage

More information

1-Port Wireless USB 2.0 Print Server Model # APSUSB201W. Quick Installation Guide. Ver. 2A

1-Port Wireless USB 2.0 Print Server Model # APSUSB201W. Quick Installation Guide. Ver. 2A 1-Port Wireless USB 2.0 Print Server Model # APSUSB201W Quick Installation Guide Ver. 2A Section 1 Step 1Connect one end of the Ethernet cable to the RJ-45 port of the Print Server and attach the other

More information

ENTBUS PLUS SOFTWARE FOR ENERGY MONITORING AND RECORDING INSTALLATION AND OPERATING MANUAL

ENTBUS PLUS SOFTWARE FOR ENERGY MONITORING AND RECORDING INSTALLATION AND OPERATING MANUAL ENTBUS PLUS SOFTWARE FOR ENERGY MONITORING AND RECORDING INSTALLATION AND OPERATING MANUAL Foreword Entbus services manage the collection of information and storing this information in the database. Services

More information

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples Networking General networking Networking overview A network is a collection of devices such as computers, printers, Ethernet hubs, wireless access points, and routers connected together for communication

More information

Only smart people read the manual.

Only smart people read the manual. Only smart people read the manual. Contents Getting Started... 1 Installing the FreeAgent Tools... 1 Using the FreeAgent Tools Icons... 9 Using the System Tray Icon... 10 Disconnecting the FreeAgent Drive...

More information

ScotEID Desktop Quick Start Guide

ScotEID Desktop Quick Start Guide ScotEID Desktop Quick Start Guide Last updated 16/01/2013 Table of Contents Table of Contents Supported Readers Installation Java Runtime Environment ScotEID Desktop Configuration General Default Lot ScotEID

More information

WS_FTP Professional 12

WS_FTP Professional 12 WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files

More information

Charter Business Phone. Online Control Panel Getting Started Guide. Document Version 1.0

Charter Business Phone. Online Control Panel Getting Started Guide. Document Version 1.0 Charter Business Phone Online Control Panel Getting Started Guide Document Version 1.0 Table of Contents 1 About This Guide...4 2 Overview...5 2.1 Online Control Panel and Call Manager... 5 3 Manual and

More information

Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424

Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424 Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424 Scan to PC Desktop includes Image Retriever, which is designed to monitor a specified folder on a networked file server or local drive

More information

ivms-4200 Intelligent Video Management System Quick Start Guide

ivms-4200 Intelligent Video Management System Quick Start Guide ivms-4200 Intelligent Video Management System Quick Start Guide Notices The information in this documentation is subject to change without notice and does not represent any commitment on behalf of HIKVISION.

More information

Section 8 Scheduler. Alcatel-Lucent OmniVista 4760 Network Management System

Section 8 Scheduler. Alcatel-Lucent OmniVista 4760 Network Management System Alcatel-Lucent OmniVista 4760 Network Management System Section 8 Scheduler Alcatel-Lucent OmniVista 4760 Network Management System All Rights Reserved Alcatel-Lucent 2011 Legal notice: Alcatel, Lucent,

More information

Installation and Operation Manual Portable Device Manager, Windows version

Installation and Operation Manual Portable Device Manager, Windows version Installation and Operation Manual version version About this document This document is intended as a guide for installation, maintenance and troubleshooting of Portable Device Manager (PDM) and is relevant

More information

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode EOS Step-by-Step Setup Guide Wireless File Transmitter FTP Mode Infrastructure Setup Windows XP 2012 Canon U.S.A., Inc. All Rights Reserved. Reproduction in whole or in part without permission is prohibited.

More information

LH110 Series DVR: Frequently Asked Questions

LH110 Series DVR: Frequently Asked Questions www.lorextechnology.com LH110 Series DVR: Frequently Asked Questions Q: Can I remotely access the DVR using Apple Safari on Mac? A: Remote viewing using Apple Safari on Mac is only available on 4-channel

More information

Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0

Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0 Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0 Copyright, 1999-2007 Virtual Integrated Design, All rights reserved. 1 Contents: 1. The Main Window. 2. The Port Setup Window. 3.

More information

OnDemand. Getting Started Guide

OnDemand. Getting Started Guide OnDemand Getting Started Guide Copyright Copyright 2009 ACS Technologies Group, Inc. All rights reserved. Reproduction of any part of this publication by mechanical or electronic means, including facsimile

More information

TICO-EN. TiXML-Console TICO. User Manual V1.4.0.8

TICO-EN. TiXML-Console TICO. User Manual V1.4.0.8 TICO-EN TiXML-Console TICO User Manual V1.4.0.8 2008 Tixi.Com GmbH, Berlin Publication close: September 2008, v.1.4.0.8 This manual is protected by copyright. Any further sale is prohibited without the

More information

Manual. Sealer Monitor Software. Version 0.10.7

Manual. Sealer Monitor Software. Version 0.10.7 Manual Sealer Monitor Software Version 0.10.7 Contents 1 Introduction & symbols 1 2 Installation 2 2.1 Requirements 2 2.2 Installation process 2 3 Menu & Tooblar 5 3.1 File menu 5 3.2 Print menu 6 3.3

More information

Manual Software SPECTRO3-MONITORING V5.0

Manual Software SPECTRO3-MONITORING V5.0 Manual Software SPECTRO3-MONITORING V5.0 (PC software for Microsoft Windows XP, VISTA, 7) for color sensors of the SPECTRO-3 series This manual describes the installation and operation of the SPECTRO3-MONITORING

More information

A L ERT. Quick Start With

A L ERT. Quick Start With A L ERT Quick Start With I NSTAL L ATION To launch the installation of Micromedia Solution, insert the installation CD-ROM in the CD/DVD drive. If the installation program does not start automatically

More information

Installing the Panini Universal Scanner Driver

Installing the Panini Universal Scanner Driver Installing the Panini Universal Scanner Driver The following steps should be followed for installation of a Panini scanner. The user installing the scanner on his/her PC should have local administrative

More information

XStream Remote Control: Configuring DCOM Connectivity

XStream Remote Control: Configuring DCOM Connectivity XStream Remote Control: Configuring DCOM Connectivity APPLICATION BRIEF March 2009 Summary The application running the graphical user interface of LeCroy Windows-based oscilloscopes is a COM Automation

More information

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode EOS Step-by-Step Setup Guide Wireless File Transmitter FTP Mode Infrastructure Setup Windows 7 2012 Canon U.S.A., Inc. All Rights Reserved. Reproduction in whole or in part without permission is prohibited.

More information

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode EOS Step-by-Step Setup Guide Wireless File Transmitter FTP Mode Ad Hoc Setup Windows XP 2012 Canon U.S.A., Inc. All Rights Reserved. Reproduction in whole or in part without permission is prohibited. 1

More information

MT4-MT4 Bridge User Guide

MT4-MT4 Bridge User Guide MT4-MT4 Bridge User Guide Table of Contents Overview... 2 MT4-MT4 Bridge... 4 Trades tab... 4 Accounts tab... 6 Symbols tab... 8 Configuration tab... 8 Glossary... 9 Overview 2 MT4-MT4 Bridge links two

More information

2. Manage the power of the target device

2. Manage the power of the target device Please have "MagicConnect user account list" that we sent you upon delivery time be ready at your hand Here, we take OS: Windows 7 Ultimate, Display method: category as a sample for describing this Quick

More information

S7 for Windows S7-300/400

S7 for Windows S7-300/400 S7 for Windows S7-300/400 A Programming System for the Siemens S7 300 / 400 PLC s IBHsoftec has an efficient and straight-forward programming system for the Simatic S7-300 and ern controller concept can

More information

Operation and Maintenance Terminal (OMT 1.2) User s Manual for use with MPW2100-23

Operation and Maintenance Terminal (OMT 1.2) User s Manual for use with MPW2100-23 Operation and Maintenance Terminal (OMT 1.2) User s Manual for use with MPW2100-23 1. Outline 1.1 Operation and Maintenance Terminal The OMT is powerful software when it is incorporated with the repeaters;

More information

PTPhoneManager II. User guide

PTPhoneManager II. User guide COMMUNICATION AT ITS BEST PTPhoneManager II User guide Communications A member of PEIKER group DOCUMENT PEI TEL Communications GmbH - PTPhoneManager II - 2 - T ABLE OF CONTENTS Table of contents Table

More information

Frequently Asked Questions for logging in to Online Banking

Frequently Asked Questions for logging in to Online Banking Frequently Asked Questions for logging in to Online Banking Why don t I recognize any of the phone numbers on the Secure Code page? I can t remember my password; can I reset it myself? I know I have the

More information

Installing and Using USB Programming Cables EASY-USB-CAB EASY800-USB-CAB EU4A-RJ45-USB-CAB1

Installing and Using USB Programming Cables EASY-USB-CAB EASY800-USB-CAB EU4A-RJ45-USB-CAB1 Application note 01/13 AN_USBDriverInst_EN Installing and Using USB Programming Cables EASY-USB-CAB EASY800-USB-CAB EU4A-RJ45-USB-CAB1 All brand and product names are trademarks or registered trademarks

More information

Table of Contents GETTING STARTED... 3. Enter Password Dialog...3 Using Online Help...3 System Configuration Menu...4

Table of Contents GETTING STARTED... 3. Enter Password Dialog...3 Using Online Help...3 System Configuration Menu...4 Table of Contents DV2000 Configuration - Service Release 3.0 GETTING STARTED... 3 Enter Password Dialog...3 Using Online Help...3 System Configuration Menu...4 SYSTEM CONFIGURATION OVERVIEW... 5 Using

More information

FreeAgent DockStar Network Adapter User Guide

FreeAgent DockStar Network Adapter User Guide FreeAgent DockStar Network Adapter User Guide FreeAgent DockStar Network Adapter User Guide 2010 Seagate Technology LLC. All rights reserved. Seagate, Seagate Technology, the Wave logo, and FreeAgent are

More information

genie app and genie mobile app

genie app and genie mobile app genie app and genie mobile app User Manual 350 East Plumeria Drive San Jose, CA 95134 USA June 2012 202-10933-02 v1.0 2012 NETGEAR, Inc. All rights reserved No part of this publication may be reproduced,

More information

Print Server Application Guide. This guide applies to the following models.

Print Server Application Guide. This guide applies to the following models. Print Server Application Guide This guide applies to the following models. TL-WR842ND TL-WR1042ND TL-WR1043ND TL-WR2543ND TL-WDR4300 CONTENTS Chapter 1. Overview... 1 Chapter 2. Before Installation...

More information

RcWare SoftPLC Modbus server mapping editor User manual

RcWare SoftPLC Modbus server mapping editor User manual RcWare SoftPLC Modbus server mapping editor User manual 1 Contents 1 Contents... 2 2 Why SoftPLC as a Modbus server... 3 3 Installation and setup of the Modbus mapping editor... 4 4 Creating and editing

More information

Fiery E100 Color Server. Welcome

Fiery E100 Color Server. Welcome Fiery E100 Color Server Welcome 2011 Electronics For Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45098226 27 June 2011 WELCOME 3 WELCOME This Welcome

More information

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc.

NDA-30141 ISSUE 1 STOCK # 200893. CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000. NEC America, Inc. NDA-30141 ISSUE 1 STOCK # 200893 CallCenterWorX-Enterprise IMX MAT Quick Reference Guide MAY, 2000 NEC America, Inc. LIABILITY DISCLAIMER NEC America, Inc. reserves the right to change the specifications,

More information

Virtual CD v10. Network Management Server Manual. H+H Software GmbH

Virtual CD v10. Network Management Server Manual. H+H Software GmbH Virtual CD v10 Network Management Server Manual H+H Software GmbH Table of Contents Table of Contents Introduction 1 Legal Notices... 2 What Virtual CD NMS can do for you... 3 New Features in Virtual

More information

FastTrak TX4000, FastTrak S150 TX2plus, FastTrak S150 TX4 PROMISE ARRAY MANAGEMENT ( PAM) User Manual

FastTrak TX4000, FastTrak S150 TX2plus, FastTrak S150 TX4 PROMISE ARRAY MANAGEMENT ( PAM) User Manual FastTrak TX4000, FastTrak S150 TX2plus, FastTrak S150 TX4 PROMISE ARRAY MANAGEMENT ( PAM) User Manual Version 1.1 Promise Array Management Copyright 2003 Promise Technology, Inc. Copyright by Promise Technology,

More information

MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros.

MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. Record a macro 1. On the Developer tab, in the Code group, click Record Macro. 2. In

More information

Job Aid: Creating Additional Remote Access Logins

Job Aid: Creating Additional Remote Access Logins This job aid describes the steps required to add an additional remote access login to the Avaya S8300, S8500, and S8700 Series Media Servers. These logins may be used to establish a Point to Point Protocol

More information

a) Network connection problems (check these for existing installations)

a) Network connection problems (check these for existing installations) How do I resolve issues with a Client not connecting to the Best Practice server instance? This FAQ is intended to answer common questions about resolving issues with a Best Practice client not connecting

More information

SWISSQUOTE MT4 TERMINAL

SWISSQUOTE MT4 TERMINAL SWISSQUOTE MT4 TERMINAL Table of content 1. Downloading the Swissquote MT4 Terminal 2 2. Launching the Swissquote MT4 Terminal 3 3. The Swissquote MT4 Terminal User Interface 4 4. How to place a Trade

More information

Carry it Easy. User Guide

Carry it Easy. User Guide Carry it Easy User Guide User Manual Version 3.2 2004-2010 CoSoSys Ltd. Carry it Easy User Manual Table of Contents Table of Contents... I 1. Introduction... 1 2. System Requirements... 1 3. Installation...

More information

Browser Client 2.0 Admin Guide

Browser Client 2.0 Admin Guide Browser Client is a web-based application that allows users to point their browser at a URL and view live video from a set of Intellex units. Browser Client 2.0 is compatible with Intellex 3.2 software.

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

PCLaw Scheduled Backup

PCLaw Scheduled Backup Contents About PCLaw Scheduled Backup Enabling Connection Settings Creating a Backup Schedule Viewing Backup Logs PCLaw Scheduled Backup About PCLaw Scheduled Backup Use PCLaw Scheduled Backup to automate

More information

Metasys System Direct Connection and Dial-Up Connection Application Note

Metasys System Direct Connection and Dial-Up Connection Application Note Metasys System Direct Connection and Dial-Up Connection Application Note Code No. LIT-1201639 Software Release 5.1 Issued August 27, 2013 Supersedes October 4 2010 Refer to the QuickLIT website for the

More information

iloq S10 Locking Service User's Guide

iloq S10 Locking Service User's Guide iloq S10 Locking Service User's Guide INTRODUCTION This document is a user's guide to the iloq Manager program. It covers all the basic tasks of locking system maintenance, including maintenance of locking

More information

Help. F-Secure Online Backup

Help. F-Secure Online Backup Help F-Secure Online Backup F-Secure Online Backup Help... 3 Introduction... 3 What is F-Secure Online Backup?... 3 How does the program work?... 3 Using the service for the first time... 3 Activating

More information

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode EOS Step-by-Step Setup Guide Wireless File Transmitter FTP Mode Ad Hoc Network Windows 7 2012 Canon U.S.A., Inc. All Rights Reserved. Reproduction in whole or in part without permission is prohibited.

More information

Using SSH Secure Shell Client for FTP

Using SSH Secure Shell Client for FTP Using SSH Secure Shell Client for FTP The SSH Secure Shell for Workstations Windows client application features this secure file transfer protocol that s easy to use. Access the SSH Secure FTP by double-clicking

More information

Tic, Tie & Calculate Quick Start Guide. Quick Start Guide

Tic, Tie & Calculate Quick Start Guide. Quick Start Guide Quick Start Guide 1 Table of Contents Quick Start Guide... 3 Welcome to Tic, Tie & Calculate... 3 Features Overview... 3 Important Installation Notes... 3 Installation... 4 Step 1: Receive Account Creation

More information

Web Power Switch III User s Guide Revision LPC-3

Web Power Switch III User s Guide Revision LPC-3 Web Power Switch III User s Guide Revision LPC-3 Web Power Switch III Features Congratulations on your purchase. The Web Power Switch III is a cost-effective AC power switch for remote control and reboot.

More information

Toolbar User Guide. Release 17.0

Toolbar User Guide. Release 17.0 Toolbar User Guide Release 17.0 Cox Communications Policies Terms and Conditions Customer Obligations/911 Disclaimer Refer to item (8) of the Cox Communications Policies, Terms and Conditions, Customer

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Viewing Paycheck Information Online - LSUSH Off Campus

Viewing Paycheck Information Online - LSUSH Off Campus Viewing Paycheck Information Online - LSUSH Off Version Date: March 2013 COPYRIGHT & TRADEMARKS Copyright 1998, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark

More information

UFR II Driver Guide. UFR II Driver Ver. 2.20 ENG

UFR II Driver Guide. UFR II Driver Ver. 2.20 ENG UFR II Driver Guide UFR II Driver Ver. 2.20 Please read this guide before operating this product. After you finish reading this guide, store it in a safe place for future reference. ENG 0 Ot UFR II Driver

More information

Iridium Extreme TM Satellite Phone. Data Services Manual

Iridium Extreme TM Satellite Phone. Data Services Manual Iridium Extreme TM Satellite Phone Data Services Manual Table of Contents 1 OVERVIEW... 1 2 HOW IT WORKS... 1 3 BEFORE INSTALLING... 2 4 USB DRIVER INSTALLATION... 3 5 MODEM INSTALLATION AND CONFIGURATION...

More information

Sendspace Wizard Desktop Tool Step-By-Step Guide

Sendspace Wizard Desktop Tool Step-By-Step Guide Sendspace Wizard Desktop Tool Step-By-Step Guide Copyright 2007 by sendspace.com This publication is designed to provide accurate and authoritative information for users of sendspace, the easy big file

More information

PigCHAMP Knowledge Software. Enterprise Edition Installation Guide

PigCHAMP Knowledge Software. Enterprise Edition Installation Guide PigCHAMP Knowledge Software Enterprise Edition Installation Guide Enterprise Edition Installation Guide MARCH 2012 EDITION PigCHAMP Knowledge Software 1531 Airport Rd Suite 101 Ames, IA 50010 Phone (515)

More information

QIAsymphony Management Console User Manual

QIAsymphony Management Console User Manual April 2012 QIAsymphony Management Console User Manual For use with software version 4.0 Sample & Assay Technologies Trademarks QIAGEN, QIAsymphony, Rotor-Gene (QIAGEN Group). InstallShield (Informer Technologies,

More information

Connecting the DG-102S VoIP Gateway to your network

Connecting the DG-102S VoIP Gateway to your network Contents of Package: DG-102S VoIP Station Gateway Power adapter CD-ROM, including User s Manual Quick Install Guide Requirements: RS-232 Console Cable Two RJ-45 CAT-5 Straight-Through Cables For more information

More information

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux)

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux) Installation of SE S AM E BARCODE virtual machine distribution (Windows / Mac / Linux) Introduction A "virtual machine" is a fake computer within a true one. An underlying software (here VirtualBox) is

More information

Installation. Note The product model shown in this QIG is TD-W8951ND, as an example.

Installation. Note The product model shown in this QIG is TD-W8951ND, as an example. Installation The product model shown in this QIG is TD-W8951ND, as an example. Please use only wired network connections to configure the router. Power down all your network devices, including your computer(s)

More information