Reference manual. Acapela Group la Lauragaise, BP 758, Labège Cedex, France. T. : +33 (0) F. : +33 (0)

Size: px
Start display at page:

Download "Reference manual. Acapela Group la Lauragaise, BP 758, Labège Cedex, France. T. : +33 (0) F. : +33 (0)"

Transcription

1 Ref. :

2 Page : 2/35 Document revisions Version Date Subject Author(s) A 12/26/2002 Preliminary version (first external review) SB B 08/15/2003 First version RD C 10/09/2003 Add OEMKey property RD D 12/23/2005 Add ServerShutdown method RD MAJOR CHANGE : Component, interfaces, type libraries & classes names E 09/09/2005 Add voice : Youssef Remove voice : Ana Voice identification changes for voice Laura, Lucy, Maria, Chiara F 09/12/2005 First version for Acapela Multimedia 6.0 G 21/12/2005 Added remark about BabTTS-style OEMKey and location of AcaTTS.dll RD MPB LZ

3 Page : 3/35 Table of contents 1. Introduction 5 2. Overview Package contents ActiveX component Documentation C/C++ language header file C/C++ Sample application VB6 Sample application Installation Programming overview 8 3. API Reference IAASpeechCtrl interface Methods ConnectEngine DisconnectEngine Enumerate Load Unload Speak Stop Pause Resume EventMask GetVarAudioData,GetAudioData ServerShutdown Properties Voice(n) CurrentVoice VoiceCount Output Filename Volume Pitch Speed OEMKey Status LastError Events AudioOpen AudioClose...25

4 Page : 4/ TextStart TextStop WordPosition AcaPhoneme MouthPosition AudioData LastError IAAVoiceCtrl interface Properties Cmd Gender Language Speaker Index Frequency Appendix A Language identifiers Constants 34

5 Page : 5/5 1. Introduction Acapela Active Speech is an ActiveX control that allows any Windows application to integrate and use the Acapela TTS. It provides 2 interfaces (IAASpeechCtrl, IAAVoiceCtrl) providing the methods, properties and events needed to easily use the text-to-speech technology.

6 Page : 6/6 2. Overview 2.1.Package contents ActiveX component These files contain the implementation of the API and must be linked to the application. <Program files>\\acapela Multimedia Documentation.doc (this file) is located in: <Program files>\\acapela Multimedia\Doc C/C++ language header file c_aaspeechctrl.h is located in: <Program files>\\acapela Multimedia\sdk\include This file contains the constants definitions and values (see also Constants) used by Acapela Active Speech C/C++ Sample application A C/C++ sample application (project, sources) located in : <Program files>\\acapela Multimedia\sdk\samples\ActiveX\VC VB6 Sample application A VB6 sample application (project, sources) located in : <Program files>\\acapela Multimedia\sdk\samples\ActiveX\VB 2.2.Installation After succesfull installation, the following entries are created in the registry : Class" [HKEY_CLASSES_ROOT\CLSID\{62D734B4-3A0A-484A-BA71-ABF084F0EA2E}\] [HKEY_CLASSES_ROOT\CLSID\{62D734B4-3A0A-484A-BA71-ABF084F0EA2E}\InprocServer32]

7 Page : [HKEY_CLASSES_ROOT\CLSID\{62D734B4-3A0A-484A-BA71-ABF084F0EA2E}\Insertable] [HKEY_CLASSES_ROOT\CLSID\{62D734B4-3A0A-484A-BA71-ABF084F0EA2E}\Programmable] 101" Class" "ThreadingModel"="Apartment" [HKEY_CLASSES_ROOT\CLSID\{C95CC651-9E6A-4508-A5FD-BF9C474695A6}\Programmable]

8 Page : 8/35 [HKEY_CLASSES_ROOT\TypeLib\{2DE7D51F-E0EF-44D3-9BB8-D3E836CE55C9}] 1.0 Type Library" [HKEY_CLASSES_ROOT\TypeLib\{2DE7D51F-E0EF-44D3-9BB8-D3E836CE55C9}\1.0\0] Acapela Active Speech is a self-registered component and can be manually registered by the following command: regsvr32 <path>agaspeechctrl.dll where <path> is the directory that contains the component. Important remark: the files AcaTTS.dll and AcaTTS.ini are expected to be found in the Current directory of the Application using the ActiveX. This way it allows to have different set of voices and settings for different products using the same ActiveX. 2.3.Programming overview The general flow of typical application using Acapela Active Speech is as following: 1. Create an instance (aka object) of IAASpeechCtrl interface 2. Connect the TTS server (Acapela Multimedia) to be used. object.connectengine 3. Unlock the TTS engine (only needed if no computer locked licence is available) Set OEMKey property to a proper value 4. Enumerate the voices available on the TTS Server object.enumerate 5. Start a TTS channel by loading the required voice object.load 6. Perform speech operations object.speak object.resume

9 Page : 9/35 NOTE object.pause object.stop 7. Stop the current TTS channel by unloading the voice object.unload 8. Disconnect from the TTS server object.disconnectengine You must create an instance of IAASpeechCtrl interface for each TTS channel/voice you plan to use (one object per voice).

10 Page : 10/35 3. API Reference 3.1. IAASpeechCtrl interface IAASpeechCtrl is the TTS control interface that controls speech operations. To use more than one voice at a time, you needs to create one instance (aka object) of this interface. In the following, the term TTS channel refers to an instance of the interface with a loaded voice Methods ConnectEngine Connect the host application to an Acapela tts engine. HRESULT ConnectEngine(nConnectionMode, nport, SrvAddress) Return Values nconnectionmode [integer] [in] Connection mode to TTS engine server EAS_AF_LOCAL (1) means local. This is the only relevant value. local tts server (same computer as client). applies to Acapela Multimedia TTS servers nport [integer] [in] Irrelevant, should be set to 0 psrvaddress [string] [in] Irrelevant, should be set to empty string. EAS_SUCCESS in case of success or EAS_ALREADY_CONNECTED host application is already connected to a server EAS_NOT_ENOUGH_MEMORY not enough memory to perform the connection EAS_SRV_NOTRUNNING server is not running

11 Page : 11/35 DisconnectEngine, LastError DisconnectEngine Release the current connection to the server. Disconnection can t be performed if a TTS channel is still active (Unload method must be called before disconnection). HRESULT DisconnectEngine() none Return Values EAS_SUCCESS in case of success or EAS_TTSCHANNEL_STILL_ACTIVE a TTS channel is still active EAS_INVALID_HANDLE invalid dispatch handle (internal error) ConnectEngine, Load, Unload, LastError Enumerate Enumerates all available voices on the TTS server and fills in VoiceCount and voice list array Voice. HRESULT Enumerate() none Return Values EAS_SUCCESS in case of success or EAS_NOT_CONNECTED host application is not connected to a server EAS_NOT_ENOUGH_MEMORY

12 Page : 12/35 not enough memory to perform the operation EAS_SRV_NOTRUNNING server is not running EAS_INVALID_HANDLE invalid dispatch handle (internal error) EAS_NO_VOICE no voice found OEMKey,Voice,VoiceCount, IAAVoiceCtrl,LastError Once the voice enumeration is done, VoiceCount property contains the number of enumerated voices, each enumerated voice is stored in an IAAVoiceCtrl object and the whole voice list (and voice properties) can be accessed thru Voice(n) property that represents an array of IAAVoiceCtrl objects. Remark: the files AcaTTS.dll and AcaTTS.ini are expected to be found in the Current directory of the Application. This way it allows to have different set of voices for different products using the same ActiveX Load Loads a voice, start a TTS channel. HRESULT Load(bstrCmd) bstrcmd [string] [in] Null terminated string that contains the identifier of the voice to load. The voice identifier for a given voice is given by the Cmd property of the IAAVoiceCtrl object (in Voice array) corresponding to the given voice. Return Values EAS_SUCCESS in case of success or EAS_NOT_CONNECTED host application is not connected to a server

13 Page : 13/35 EAS_TTSCHANNEL_STILL_ACTIVE a TTS channel is already active (call Unload before) EAS_SRV_NOTRUNNING server is not running EAS_CONNECT_ERROR unable to connect to server EAS_CONNREJECT server rejects the connection (maximum channels number reached) EAS_VOICE_LIST_ERROR given voice doesn t match a voice enumerated by the server EAS_INVALID_HANDLE invalid server handle (internal error) EAS_VOICE_INIT_ERROR error during initialization of given voice EAS_NOT_ENOUGH_MEMORY not enough memory to perform the operation EAS_CHANNEL_LOCKED channel already used by another user Unload Remark Only one voice can be loaded at a time by an object. To use more than one voice, you should create an instance (object) of Acapela Active Speech per needed voice Unload Unload a previously loaded voice. HRESULT UnLoad() Return Values or none EAS_SUCCESS in case of success

14 Page : 14/35 EAS_NOT_CONNECTED host application is not connected to a server EAS_TTSCHANNEL_NOT_ACTIVE a TTS channel is not active EAS_SRV_NOTRUNNING server is not running EAS_INVALID_HANDLE invalid server handle (internal error) Load Speak Play the provided text on the selected output. HRESULT Speak(bstrText, long ltextid) bstrtext [string] [in] Pointer to a null terminated string that contains the text to be played. ltextid [long integer] [in] text identifier Return Values EAS_SUCCESS in case of success or EAS_TTSCHANNEL_NOT_ACTIVE a TTS channel is not active EAS_EMPTY_TEXT text is empty EAS_NOT_ENOUGH_MEMORY not enough memory to add text EAS_EXEC_STARTED_ERROR can t execute speech output (internal error) EAS_PROCESS_DATA_ERROR

15 Page : 15/35 error during text to speech processing EAS_INVALID_HANDLE invalid server handle (internal error) Stop, Pause, Resume, Output The behaviour of text played depends on the Output type chosen by host application. If Output is set audio output (i.e. output to an audio card device), the audio signal is produced by TTS server at 1x real time. If Output is set to file output or callback output, the audio signal is produced by the TTS server at N x real time according to the capability of the TTS server. Producing audio signal at N x real time means that the host application receives the audio signal in a time corresponding to the real duration of the audio signal divided by N : for ex. with a 4 x real-time tts engine, the audio signal for a text which duration is 1min is produced in 15s. Acapela Multimedia is a real-time only (1X) TTS engine, Acapela Telecom is a N x real time (Nx) TTS engine, N is equivalent to the channel number stored in the (hardware or software) protection key. TTS Events are fired (if enabled) to host application during text play. Events are sent synchronously with the audio signal play to allow word or phoneme synchronization with audio signal output Stop Stop the current text played. HRESULT Stop() none Return Values EAS_SUCCESS in case of success

16 Page : 16/35 or EAS_TTSCHANNEL_NOT_ACTIVE a TTS channel is not active EAS_INVALID_HANDLE invalid server handle (internal error) Speak, Pause, Resume Pause Pause the current text play. HRESULT Pause() none Return Values EAS_SUCCESS in case of success or EAS_TTSCHANNEL_NOT_ACTIVE a TTS channel is not active Resume, Speak, Stop Resume Resume a previously paused text played. HRESULT Resume() none Return Values

17 Page : 17/35 EAS_SUCCESS in case of success or EAS_TTSCHANNEL_NOT_ACTIVE a TTS channel is not active EAS_INVALID_HANDLE invalid server handle (internal error) EAS_CHANNEL_NOTREADY problem with the channel execution EAS_PROCESS_DATA_ERROR error during text to speech processing Pause, Speak, Pause EventMask the TTS events fired to host application during a text played. HRESULT EventMask(ulEvtMask) UlEvtMask [unsigned long integer] [in] a bit field that control enabling/disabling of TTS events; each bit correspond to a given event : bit 0 n/a bit 1 enable(1)/disable(0) word position event (event mask = EVT_WORD_POSITION) bit 2 enable(1)/disable(0) phoneme event (event mask = EVT_PHONEME) bit 3-5 n/a bit 6 enable(1)/disable(0) mouth position event (event mask = EVT_MOUTH_POS) Return values EAS_SUCCESS

18 Page : 18/35 Events,Speak Some events can t be disabled and are always fired (see Events). WordPosition, Phoneme and Mouth Position are automatically disabled when Output is set to file output GetVarAudioData,GetAudioData Get the next available audio signal data in callback output. HRESULT GetVarAudioData(vData) HRESULT GetAudioData(pData, ldatasize); Return Values vdata [variant] [in] variant type buffer that will be filled in with audio data, must have the following characteristics : type : safearray of byte (VT_ARRAY VT_UI1) safearray dim : 1 pdata [byte pointer] be safearray bounds : [0, ldatasize] [in] pointer to buffer that will be filled in with audio data : buffer must large enough to receive the data ldatasize [long integer] [in] buffer size EAS_SUCCESS in case of success or EAS_TTSCHANNEL_NOT_ACTIVE a TTS channel is not active TYPE_E_TYPEMISMATCH unexpected variant type TYPE_E_BUFFERTOOSMALL buffer size too small EAS_AUDIODATA_NOTAVAILABLE

19 Page : 19/35 no available data Output Calling this method has only a meaning when Output is set to callback output. In this case host application received an AudioData event each time an audio signal data is available. The application must then call GetAudioData or GetVarAudioData to get the next available data. The data is destroyed immediately after a call to the method, so the application must insure to copy the data before using it. for developers Applications written with programming languages that can handle memory pointers may use GetAudioData method to get access to audio buffer in control. GetVarAudioData is useful for other programming languages (like Visual Basic) that can only handle data via Automation ServerShutdown Performs a shutdown of the TTS server. HRESULT ServerShutdown(nState) nstate [integer] [in] shutdown state 2 forces server shutdown though there is still an active channel (all active TTS channels are stopped and closed) 1 requests server shutdown, the behaviour depends on the current server state : if no TTS channel is active, server shutdowns itself immediately, else server waits for all TTS channels to be closed before shutdown itself (shutdown can so be cancelled) 0 cancels shutdown request

20 Page : 20/35 Return Values EAS_SUCCESS in case of success or EAS_SRV_NOTRUNNING server is not running EAS_INVALID_HANDLE invalid server handle (internal error) DisconnectEngine After calling this method, you must call DisconnectEngine to release the connection to the server Properties Voice(n) Access to a given enumerated voice list array. Type nindex [integer] [in] index of voice in array [readonly] IAAVoiceCtrl object Enumerate This property is filled in only after a call to Enumerate method CurrentVoice Access to the current loaded voice. Type

21 Page : 21/35 [readonly] IAAVoiceCtrl object Enumerate This property is filled in only after a call to Load method VoiceCount Description Enumerated voices count. Type [readonly] short integer Enumerate, Voice This property is filled in only after a call to Enumerate method. Description Type Value Output Speech output mode. [read/write] short integer low byte contains the output type : AUDIO_OUTPUT 0 FILE_OUTPUT 1 CALLBACK_OUTPUT 2 high byte contains when low byte is set to FILE_OUTPUT, the format of output file : PCM_FORMAT 0

22 Page : 22/35 WAV_FORMAT 1 Filename, Speak, Constants,GetVarAudioData,GetAudioData,Events The format of the audio signal produced by TTS server is : PCM 16bits and frequency depending on the selected voice. In audio output mode, the audio signal produced by the TTS server is played by the control on the audio device (sound card) at 1 x realtime. In file output mode, the audio signal produced by the TTS server is written by the control in the file which name is set by Filename property at N x realtime (see Speak): the format of output file is set by high byte of the property value. In callback output mode, the audio signal produced by the TTS server is sent back to the host application to allow application to handle itself the audio signal: each time a data (audio signal chunk) is available, control fires an AudioData event to the host application that must call GetVarAudioData or GetAudioData to get the data. According to the selected output mode and the event mask (see EventMask), Events are fired to the host application to allow it to perform text synchronization with audio signal play Filename Description Name of output file in file output mode. Type [read/write] null terminated string Output, Speak By default, at initialization the filename is set to AcapelaTTS.wav.

23 Page : 23/ Volume Actual volume of the speech output. Type [read/write] short integer Value 0 to (default volume value at initialisation = 32767) Pitch Actual pitch of the speech output. Type Value [read/write] short integer 10 to 500 (default pitch value at initialisation = 100) Speed Actual rate of the speech output. Type Value [read/write] short integer 30 to 1000 (default speed value at initialisation = 100) OEMKey Software protection key. Type [write] string Value 43 characters long string

24 Page : 24/35 or the BabTTS API license key (much longer) Enumeration depends closely on protection mode. If host application uses software protection instead of hardware protection, software protection must be sent before calling Enumerate method Status Actual control status. Type Value [readonly] short integer bit field bit 0 bit 1 connection to server status 0 : not connected 1 : connected tts channel status 0 : not active 1 : active bit 2 idle state 0 : idle 1 : busy (speech operation in progress) bit 3 bit 4 bit 5 play status 0 : not playing 1 : play in progress pause status 0 : not paused 1 : paused audio status 0 : audio device not opend 1 : audio device opened LastError Last error code produced by a failed call to a method. Type [readonly] long integer Value see Constants LastError (event)

25 Page : 25/35 Some calls to methods or properties don t directly return error codes. To know if the call has or not produced an error, host application must read this property. Error codes are also fired by LastError event Events Some events are fired during a text play. Some of these events can be enabled/disabled thru EventMask method AudioOpen Fired when audio output device is opened. AudioOpen() none EventMask This event is always enabled AudioClose Fired when audio output device is closed AudioClose none EventMask This event is always enabled.

26 Page : 26/ TextStart Fired when text play is started. TextStart(lTextId) ltextid [long integer] This event is always enabled. text identifier : the value passed in parameter ltextid of Speak method that identifies the text that refers to the event. Speak,EventMask TextStop Fired when end of text play is reached. TextStop(lTextId) ltextid [long integer] This event is always enabled. text identifier : the value passed in parameter ltextid of Speak method that identifies the text that refers to the event. Speak,EventMask WordPosition Fired when a word is currently being played.

27 Page : 27/35 WordPosition(lTextId, lwordpos, lbytecount) ltextid [long integer] text identifier : the value passed in parameter ltextid of Speak method that identifies the text that refers to the event. lwordpos [long integer] word position in text identified by ltextid (rank of the first character of word from the beginning of text) lbytecount [long integer] position in bytes in the audio signal from the beginning EventMask, Speak This event is enabled/disabled by EventMask method. It is disabled when output type is set to file output AcaPhoneme Fired when a phoneme is currently being played. WARNING : AcaPhoneme is a new event which replaces the previous Phoneme, with new parameters which correspond to the new technology of the TTS. AcaPhoneme(lTextId, senginephoneme1, senginephoneme2, senginephoneme3, senginephoneme4, sipaphoneme1, lduration, lbytecount) ltextid [long integer] text identifier : the value passed in parameter ltextid of Speak method that identifies the text that refers to the event. senginephoneme1 [short integer] 1 st char of engine phoneme senginephoneme2 [short integer]

28 Page : 28/35 2 nd char of engine phoneme senginephoneme3 [short integer] 1 st char of engine phoneme senginephoneme4 [short integer] 2 nd char of engine phoneme sipaphoneme1 [short integer] 1 st IPA phoneme lduration [long integer] duration of the phoneme in ms lbytecount [long integer] position in bytes in the audio signal from the beginning EventMask, Speak This event is enabled/disabled by EventMask method. It is disabled when output type is set to file output MouthPosition Fired when a phoneme is currently being played and mouth positions have been enabled by the EventMask method. MouthPosition(lTextId, sipaphoneme1, smouthpos1, smouthpos2, smouthpos3, smouthpos4, smouthpos5, smouthpos6, smouthpos7, smouthpos8, lduration, lbytecount) ltextid [long integer] text identifier : the value passed in parameter ltextid of Speak method that identifies the text that refers to the event. sipaphoneme1 [short integer] 1 st IPA phoneme smouthpos1 [short integer] to smouthpos8 [short integer] 8 members of the structure which describes the mouth position (similar as in the SAPI MOUTH structure lduration [long integer]

29 Page : 29/35 duration of the phoneme in ms lbytecount [long integer] position in bytes in the audio signal from the beginning EventMask, Speak This event is enabled/disabled by EventMask method. It is disabled when output type is set to file output AudioData Fired when an audio data is available. This event is only fired when Output is set to callback output. It notices the host application that one or more audio signal data is available. AudioData(lTextId, ldatacount, ldatasize) ltextid [long integer] text identifier : the value passed in parameter ltextid of Speak method that identifies the text that refers to the event. ldatacount [long integer] call number of available data can be > 1 if the host application doesn t GetVarAudioData or GetAudioData method each the event is fired. ldatasize [long integer] size of current notified available data Speak This event is always enabled. The host application is in charge to react as fast as possible to audio data event by calling GetVarAudioData or GetAudioData method to get the

30 Page : 30/35 available data. WordPosition and Phoneme event provides each a parameter (lbytecount) that allows the host application to easily synchronize audio signal data with word position and phonemes LastError Fired when a call to a method or proprety produces an error. LastError(lErrorCode) lerrorcode [long integer] error value (see Constants) LastError (property) This event is always enabled. 3.2.IAAVoiceCtrl interface IAAVoiceCtrl is an interface that gives access to description of a given voice. IEASpeechCtrl interface contains an array of IAAVoiceCtrl objects, that store the description for all enumerated voices (this array is filled in after a call to Enumerate method). Each voice description can be accessed thru Voice(n) property where n is the index of the voice in the array Properties Cmd Voice identifier. Type [readonly]string

31 Page : 31/35 The property s value must be used as parameter of Load method. See Acapela TTS Telecom voices, Acapela TTS Multimedia voices Gender Voice s gender Type [readonly] short integer Value 1 : woman 2 : man Language Voice s language identifier Type [readonly] integer Value See Language identifiers Speaker Voice speaker s name. Type [readonly]string Index Voice s index in array Type [readonly]short integer Value 1 to VoiceCount

32 Page : 32/ Frequency Voice s frequency in Hz (sampling rate) Type [readonly]long integer Value 8000 (8000 samples/sec) (11025 samples/sec) (16000 samples/sec) (22050 samples/sec)

33 Page : 33/35 4. Appendix A 4.1.Language identifiers Here is a list of identifiers that can be returned in Language property of This list corresponds to languages currently supported by Acapela speech products. Identifier Language 5121 Arabic (Algeria) 1025 Arabic (Saudia Arabia) 1029 Czech (Standard) 1030 Danish (Standard) 1043 Dutch (Netherlands) 2067 Dutch (Belgium) 1033 English (United States) 2057 English (United Kingdom) 1036 French (Standard) 1035 Finnish (Standard) 1031 German (Standard) 1039 Icelandic (Standard) 1040 Italian (Standard) 1044 Norwegian (Standard) 1045 Polish (Standard) 1046 Portuguese (Brazil) 2070 Portuguese (Standard) 1049 Russian 1034 Spanish (Standard) 8202 Spanish (Venezuela) 1053 Swedish (Standard) 1055 Turkish (Standard)

34 Page : 34/ Constants TTS engine identifiers ACAPELA_TELECOM_ENGINE 0 ACAPELA_MULTIMEDIA_ENGINE 1 Connection modes EAS_AF_LOCAL 1 EAS_AF_INET 2 Output types AUDIO_OUTPUT 0 FILE_OUTPUT 1 CALLBACK_OUTPUT 2 File format PCM_FORMAT 0 WAV_FORMAT 1 TTS event masks EVT_TEXT 1 EVT_WORD_POSITION 2 EVT_PHONEME 4 Min/max values for TTS params MIN_PITCH 10 MAX_PITCH 500 MIN_SPEED 30 MAX_SPEED 1000 MIN_VOLUME 0 MAX_VOLUME FFFFh Return/error codes EAS_SUCCESS 0 EAS_NOT_CONNECTED 800a0258h EAS_ALREADY_CONNECTED 800a0259h EAS_TTSCHANNEL_NOT_ACTIVE 800a025ah EAS_TTSCHANNEL_STILL_ACTIVE 800a025bh

35 Page : 35/35 EAS_EMPTY_TEXT EAS_UNSUPPORTED_FORMAT EAS_AUDIODATA_NOTAVAILABLE EAS_INVALID_ARRAY EAS_NOT_ENOUGH_MEMORY EAS_INVALID_HANDLE EAS_INVALID_CHANNEL EAS_INVALID_SERVER EAS_NO_VOICE EAS_VOICE_LIST_ERROR EAS_IDVOICE_ERROR EAS_VOICE_INIT_ERROR EAS_PROCESS_DATA_ERROR EAS_EXEC_STARTED_ERROR EAS_INVALID_PARAM EAS_RANGE_PARAM EAS_CHANNEL_LOCKED EAS_CHANNEL_NOTREADY EAS_CONNECT_ERROR EAS_TIMEOUT_INIT EAS_CONNRESET EAS_CONNREJECT EAS_TOOMANY_VOICES EAS_SRV_NOTRUNNING EAS_NOT_IMPLEMENTED_YET 800a025ch 800a025dh 800a025eh 800a025fh 800a0260h 800a0261h 800a0262h 800a0263h 800a0264h 800a0265h 800a0266h 800a0267h 800a0268h 800a0269h 800a026ah 800a026bh 800a026ch 800a026dh 800a026eh 800a026fh 800a0270h 800a0271h 800a0272h 800a0273h 800a0274h

MaintSmart. Enterprise. User. Guide. for the MaintSmart Translator. version 4.0. How does the translator work?...2 What languages are supported?..

MaintSmart. Enterprise. User. Guide. for the MaintSmart Translator. version 4.0. How does the translator work?...2 What languages are supported?.. How does the translator work?......2 What languages are supported?..3 MaintSmart User Enterprise Guide version 4.0 for the MaintSmart Translator 1 MaintSmart Translator - An Overview. How does it work?

More information

Push button sensor 3 Plus - Brief instructions for loading additional display languages Order-No , , 2042 xx, 2043 xx, 2046 xx

Push button sensor 3 Plus - Brief instructions for loading additional display languages Order-No , , 2042 xx, 2043 xx, 2046 xx KNX/EIB Product documentation Issue: 01.07.2011 65yxx220 Push button sensor 3 Plus - Brief instructions for loading additional display languages KNX/EIB Product documentation Contents 1 Product definition...

More information

Date : Jun 14, Ver. 01. InterVideo InstantON. User Manual

Date : Jun 14, Ver. 01. InterVideo InstantON. User Manual Ver. 01 Date : Jun 14, 2005 InterVideo InstantON User Manual 1 Content 1. Install/Repair/Remove...5 1.1. Install InterVideo InstantON...5 1.1.1. Run the InstantON Install file under Windows...5 1.1.2.

More information

SMART Classroom Suite 2009 Installation Guide. Windows Operating Systems

SMART Classroom Suite 2009 Installation Guide. Windows Operating Systems SMART Classroom Suite 2009 Installation Guide Windows Operating Systems Product Registration If you register your SMART product, we ll notify you of new features and software upgrades. Register online

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.3.0 Features Notes The latest INSITE information can be found on the website at http://insite.cummins.com. For technical support, please send an email to servicetoolsupport@cummins.com or call

More information

Acapela TTS Multimedia 6

Acapela TTS Multimedia 6 6 Software Development Kit: Developer Guide Ref. :, info@acapela-group.com > In Belgium: 33 boulevard Dolez, 7000 Mons. Tel +32(0)65 37 42 75 > In France: 3939 La Lauragaise, BP58309, 31683 Labège cedex.

More information

Complete Messaging Solution

Complete Messaging Solution ervice Mailvice Service & Operations Voice Your customers and clients expect their calls to be handled quickly or routed to the appropriate person or department. This is where ITS Telecom and Systems can

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

Intel USB 3.0 extensible Host Controller Driver

Intel USB 3.0 extensible Host Controller Driver Intel USB 3.0 extensible Host Controller Driver Release Notes (5.0.4.43) Unified driver September 2018 Revision 1.2 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

END-USER MANUAL. Sennheiser HeadSetup Pro

END-USER MANUAL. Sennheiser HeadSetup Pro END-USER MANUAL Sennheiser HeadSetup Pro Content 1. Introduction 4 1.1 Product overview 4 1.2 Scope of the document 4 1.3 Intended audience of this document 4 2. System requirement 4 2.1 Hardware requirement

More information

Complete Messaging Solution

Complete Messaging Solution ervice Mailvice Service & Operations Voice Your customers and clients expect their calls to be handled quickly or routed to the appropriate person or department. This is where ITS Telecom and Systems can

More information

Technical Information

Technical Information Building Technologies Division Security Products Technical Information SPC Series SPC Support CD Release Note CD V3.6.6 04/08/2015 Updates since: CD V3.4.5 Release V3.6.6 for SPC versions SPC42xx/43xx/52xx/53xx/63xx.

More information

Microsoft Dynamics 365 for Finance and Operations, Enterprise edition. Table of contents

Microsoft Dynamics 365 for Finance and Operations, Enterprise edition. Table of contents Microsoft Dynamics 365 for Finance and Operations, Enterprise edition Product availability, localization, and translation guide July 2017 Update 1 Dynamics 365 for Finance and Operations, Enterprise edition

More information

Controlling the projector via RS-232C connection. Contents. 1. Introduction Connection Interface... 2

Controlling the projector via RS-232C connection. Contents. 1. Introduction Connection Interface... 2 MODEL TX10U/TW11U Controlling the projector via RS-232C connection Contents 1. Introduction... 2 1.1 Connection... 2 1.2 Interface... 2 1.2.1 Pin assignment of SERIAL terminal (D-SUB 9-pin)... 2 1.2.2

More information

RPM International Inc. Hotline Instructions

RPM International Inc. Hotline Instructions RPM International Inc. Hotline Instructions While compliance matters can often be resolved at the local level, the RPM International Inc. ( RPM ) Hotline provides another way for you to report concerns

More information

Portal Administrator guide

Portal Administrator guide Portal Administrator guide Admin Guide 21 March 2018 Contents About your Portal admin account 3 Your settings 3 User email notifications 3 Calling to telephone networks 3 Edit your organization's account

More information

GV-Center V2 INTRODUCTION GV CENTER V2 VS. GV CENTER V2 PRO

GV-Center V2 INTRODUCTION GV CENTER V2 VS. GV CENTER V2 PRO -1- GV-Center V2 INTRODUCTION While GV Center V2 Pro is a professional version for a large central monitoring network such as alarm services companies or chain stores, GV Center V2 is a standard version

More information

Microsoft Dynamics 365 for Finance and Operations. Table of contents

Microsoft Dynamics 365 for Finance and Operations. Table of contents Microsoft Dynamics 365 for Finance and Operations Product localization and translation availability guide April 2018 update 1 Dynamics 365 for Finance and Operations Product localization and translation

More information

service code Code: 2013 Language

service code Code: 2013 Language service code Code: 2013 Language 1. Service menu code 1. Service menu code Control times can only be altered in the service menu. The code for this is 2013 2. Service level A range of queries can be run

More information

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( )

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( ) Hik-Connect Client Software V3.1.0 0828(Android) V3.1.0 170830(iOS) Release Notes (2017-09-07) Hik-Connect Version 3.1.0: Optimize Login Page Hik-Connect account and email address are displayed default,

More information

GLOBAL NETFLIX PREFERRED VENDOR (NPV) RATE CARD:

GLOBAL NETFLIX PREFERRED VENDOR (NPV) RATE CARD: Global Rate Card Timed Text Origination Rates Audio Description Rates Netflix Scope of Work Guidelines A/V Materials Timed Text Audio Materials Trailers Forced Narratives NPV SLA & KPIs GLOBAL NETFLIX

More information

Manual Cellip 365 Centrex Dashboard Audio Library Recording a Sound File Auto attendant (IVR)...

Manual Cellip 365 Centrex Dashboard Audio Library Recording a Sound File Auto attendant (IVR)... TABLE OF CONTENTS Manual Cellip 365 Centrex... 2 1. Dashboard... 2 2. Audio Library... 2 2.1 Recording a Sound File... 3 3. Auto attendant (IVR)... 3 4. Response group... 6 4.1 Change the name of the response

More information

Changes Guide Premier Elite Series - From V2.11 to V3.00

Changes Guide Premier Elite Series - From V2.11 to V3.00 Changes Guide Premier Elite Series - From V2.11 to V3.00 INS660-2 Contents Premier Elite V2.11 to V3.00 Changes Guide 1. Contents 1. Contents... 2 2. Introduction... 3 3. Bug Fixes... 3 4. New Premier

More information

Section Software

Section Software 4800 Software Language Standard Sets FS-4-8-014-01 4800 STANDARD SET ENGLISH/CROATIAN V1.2 FS-4-8-016-01 4800 STANDARD SET ENGLISH/DANISH V1.2 FS-4-8-004-03 4800 STANDARD SET ENGLISH/DUTCH V1.2 FS-4-8-002-03

More information

ipod touch 16GB - Technical Specifications

ipod touch 16GB - Technical Specifications ipod touch 16GB - Technical Specifications Size and Weight Height: 4.86 inches (123.4 mm) Width: 2.31 inches (58.6 mm) Depth: 0.24 inch (6.1 mm) Weight: 3.04 ounces (86 grams) Capacity 16GB Wireless 802.11a/b/g/n

More information

IP Softphone 2050 User Guide

IP Softphone 2050 User Guide Nortel Communication Server 1000 IP Softphone 2050 User Guide Revision history Revision history July 2008 Standard 02.03. This document is up-issued to support IP Softphone 2050 Release 3.1. February

More information

Multilingual Support Configuration For IM and Presence Service

Multilingual Support Configuration For IM and Presence Service Multilingual Support Configuration For IM and Presence Service Install Locale Installer on IM and Presence Service, page 1 Error Messages, page 3 Localized Applications, page 5 Install Locale Installer

More information

SAP Crystal Reports 2013 Product Availability Matrix (PAM)

SAP Crystal Reports 2013 Product Availability Matrix (PAM) SAP Crystal Reports 2013 Product Availability Matrix (PAM) Created: May 10, 2012 Updated: Feb 22, 2018 Disclaimer: This document is subject to change and may be changed by SAP at any time without notice.

More information

Integrate Speech Technology for Hands-free Operation

Integrate Speech Technology for Hands-free Operation Integrate Speech Technology for Hands-free Operation Copyright 2011 Chant Inc. All rights reserved. Chant, SpeechKit, Getting the World Talking with Technology, talking man, and headset are trademarks

More information

InFocus IN112x, IN114x, IN116x, IN118HDxc, IN119HDx RS232 Control Instructions

InFocus IN112x, IN114x, IN116x, IN118HDxc, IN119HDx RS232 Control Instructions InFocus IN112x, IN114x, IN116x, IN118HDxc, IN119HDx RS232 Control Instructions Serial Communication Configuration To control this projector via RS-232, connect a null modem cable and set the control system

More information

Eaton BladeUPS Firmware Upgrade Instructions. UPS model : Bladeups. Firmware Upgrade Procedure. Date : 02/10/2017. Page 1/page total/15

Eaton BladeUPS Firmware Upgrade Instructions. UPS model : Bladeups. Firmware Upgrade Procedure. Date : 02/10/2017. Page 1/page total/15 UPS model : Bladeups Date : 02/10/2017 Eaton BladeUPS Page 1/page total/15 Contents 1. Download the firmware 2. UPS connection 3. Perform the firmware upgrade 4. Batch file upgrade procedure 5. Firmware

More information

Jabra. Engage 75. User manual

Jabra. Engage 75. User manual Jabra Engage 75 User manual 2018 GN Audio A/S. All rights reserved. Jabra is a trademark of GN Audio A/S. The Bluetooth word mark and logos are registered trademarks owned by the Bluetooth SIG, Inc. and

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.1.2 Features Notes The latest INSITE information can be found on the website at http://insite.cummins.com For technical support, please send an email to servicetoolsupport@cummins.com or call

More information

User Manual MagniLink PCViewer

User Manual MagniLink PCViewer User Manual MagniLink PCViewer LVI Low Vision International Verkstadsgatan 5 Tel: +46 470-727700 info@lvi.se SE-352 46 Växjö Faks: +46 470-727725 www.lvi.se Table of Contents 1 About LVI... 5 2 Introducing

More information

User Manual MagniLink PCViewer

User Manual MagniLink PCViewer User Manual MagniLink PCViewer LVI Low Vision International Verkstadsgatan 5 Tel: +46 470-727700 info@lvi.se SE-352 46 Växjö Faks: +46 470-727725 www.lvi.se Table of Contents 1 About LVI... 5 2 Introducing

More information

Dual-core Intel Atom processor. 2 x 3.5" SATA(II)/2.5" SATA/SSD. 1. The standard system is shipped without HDD.

Dual-core Intel Atom processor. 2 x 3.5 SATA(II)/2.5 SATA/SSD. 1. The standard system is shipped without HDD. VS-2012 Pro Hardware Spec. Processor HDD Capacity Dual-core Intel Atom processor 2 x 3.5" SATA(II)/2.5" SATA/SSD NOTE: 1. The standard system is shipped without HDD. 2. For the HDD compatibility list,

More information

Project Name SmartPSS

Project Name SmartPSS V2.00.1 Language Farsi, Arabic, Russian, Japanese, Korean, Turkish, Vietnamese, Thai, Indonesian, Traditional Chinese, Hebrew, Spanish, Portuguese, French, Dutch, Italian, German, Czech, Slovakia, Hungarian,

More information

Displayer. showing FM-Radio. Basic Functions. 6. Support TXT. 10. Support game

Displayer. showing FM-Radio. Basic Functions. 6. Support TXT. 10. Support game MP4 PLAYER USER MANUAL Displayer Note: VOL button means the round button in the middle. Due to the different firmware versions, some versions are showing Radio Radio and some versions are showing FM-Radio

More information

Dual-core Intel Atom processor. 6 x 3.5" SATA(II)/2.5" SATA/SSD. 1. The standard system is shipped without HDD.

Dual-core Intel Atom processor. 6 x 3.5 SATA(II)/2.5 SATA/SSD. 1. The standard system is shipped without HDD. VS-6020 Pro Hardware Spec. Processor HDD Capacity Dual-core Intel Atom processor 6 x 3.5" SATA(II)/2.5" SATA/SSD NOTE: 1. The standard system is shipped without HDD. 2. For the HDD compatibility list,

More information

You can install the client on the following operating systems:

You can install the client on the following operating systems: Review the options for installation and learn about different methods for installing Cisco UC Integration for Microsoft Lync. Understand the requirements for successful deployments before you start the

More information

Xapity Attachments Administration Guide.

Xapity Attachments Administration Guide. Xapity Attachments Administration Guide www.xapity.com Document Version 1.0 Jab 2017 This document contains information that may change without notice. While every effort has been made to ensure that the

More information

Multilingual Support Configuration For IM and Presence Service

Multilingual Support Configuration For IM and Presence Service Multilingual Support Configuration For IM and Presence Service Locale Installation, page 1 Install Locale Installer on IM and Presence Service, page 3 Error Messages, page 5 Localized Applications, page

More information

Microsoft Academic Select Enrollment

Microsoft Academic Select Enrollment Microsoft Academic Select Enrollment Academic Select Agreement number Reseller or Microsoft affiliate to complete Academic Select Agreement Expiration Date Reseller or Microsoft affiliate to complete Enrollment

More information

Using the FDR for Mac Users

Using the FDR for Mac Users Using the FDR for Mac Users Author(s): Jack Mello version: 1.2 Written: June 7, 2010 Modified: June 21, 2011 ----------------------- Software: - Mac OS X 10.6.7 - Cyberduck Version 3.8 (7920) Using the

More information

Molded Case Circuit Breakers and Disconnect Switches Auxiliary Contacts for NZM(H)6(B)-...

Molded Case Circuit Breakers and Disconnect Switches Auxiliary Contacts for NZM(H)6(B)-... Circuit Breakers, Disconnect Switches, Molded Case Switches 09/064 Moeller Electric Corporation Auxiliary Contacts for. Contacts Type Suffix Price N.O. = normally open N.C. = normally closed when ordering

More information

YesCam View User Manual For Easy Connection YesCam Series

YesCam View User Manual For Easy Connection YesCam Series YesCam View User Manual For Easy Connection YesCam Series Seeing the video from anywhere Version:1.2.4 Date:2015.02.3 1 Table of Content 1. Introduction...4 2. System Requirement...4 3. Install YesCam

More information

You can install the client on the following operating systems: Microsoft Windows 7, 32 bit and 64 bit

You can install the client on the following operating systems: Microsoft Windows 7, 32 bit and 64 bit Review the options for installation and learn about different methods for installing Cisco UC Integration for Microsoft Lync. Understand the requirements for successful deployments before you start the

More information

PORTABLE VIDEO BORESCOPE. User Manual

PORTABLE VIDEO BORESCOPE. User Manual PORTABLE VIDEO BORESCOPE User Manual CONTENTS Product Overview---------------------------------2 First Time Use--------------------------------------3 System Mode---------------------------------------5

More information

KYOCERA Quick Scan v1.0

KYOCERA Quick Scan v1.0 KYOCERA Quick Scan v1.0 Software Information PC Name Version 0731 July 31, 2018 KYOCERA Document Solutions Inc. Product Planning Division 1 Table of Contents 1. Overview... 4 1.1. Background... 4 1.2.

More information

2 x 3.5" SATA I/II hard disk drive (HDD) 1. The system is shipped without hard disk drives. 2. For the HDD compatibility list, please

2 x 3.5 SATA I/II hard disk drive (HDD) 1. The system is shipped without hard disk drives. 2. For the HDD compatibility list, please VS-2008L Hardware Spec. CPU DRAM Flash Memory Hard Disk Drive Marvell 6281 1.2GHz 256MB DDRII RAM 16MB 2 x 3.5" SATA I/II hard disk drive (HDD) NOTE: 1. The system is shipped without hard disk drives.

More information

One-screen Follow-up Reference Guide. Merlin.net Patient Care Network (PCN)

One-screen Follow-up Reference Guide. Merlin.net Patient Care Network (PCN) One-screen Follow-up Reference Guide Merlin.net Patient Care Network (PCN) One-screen Follow-up One-screen follow-up via the Recent Transmissions screen allows you to: View and print selected transmissions

More information

Erasmus+ Support: Licence Management System for Beneficiaries User Guide 18.0

Erasmus+ Support: Licence Management System for Beneficiaries User Guide 18.0 Erasmus+ Support: Licence Management System for Beneficiaries User Guide 18.0 Date 28/11/2017 Version 18.0 Author Service Provider Public Beneficiary Institutions/Organisations Page 1 Table of Contents

More information

Xapity Current Activity Administration Guide.

Xapity Current Activity Administration Guide. Xapity Current Activity Administration Guide www.xapity.com Document Version 1.0 October 2016 This document contains information that may change without notice. While every effort has been made to ensure

More information

Dual-core Intel Atom processor. 1. The system is shipped without HDD. 2. For the HDD compatibility list, please visit

Dual-core Intel Atom processor. 1. The system is shipped without HDD. 2. For the HDD compatibility list, please visit VS-4008 Pro Hardware Spec. CPU HDD Dual-core Intel Atom processor 2.5/ 3.5" SATA x4 NOTE: 1. The system is shipped without HDD. 2. For the HDD compatibility list, please visit http://www.qnap.com/pro_compatibility.asp

More information

The SAP Knowledge Acceleration, website package, can be deployed to any web server, file server, CD-ROM, or a user workstation.

The SAP Knowledge Acceleration, website package, can be deployed to any web server, file server, CD-ROM, or a user workstation. SAP KNOWLEDGE ACCELERATION TECHNICAL SPECIFICATIONS In this guide, you will learn about hardware and software requirements for SAP Knowledge Acceleration (KA). SAP Knowledge Acceleration (KA) is a web-based

More information

DC170_PC170 Command Set

DC170_PC170 Command Set DC170_PC170 Command Set Revisions No Issue Date Version Description Apply Firmware 1 2013/11/25 1.0 First version. DHW102R 2 2014/10/27 1.1 1. Brightness Control: revise the send packet 2. Call Brightness

More information

Molded Case Circuit Breakers and Disconnect Switches Auxiliary Contacts for Type NZMH4-...

Molded Case Circuit Breakers and Disconnect Switches Auxiliary Contacts for Type NZMH4-... Circuit Breakers, 09/054 Moeller Electric Corporation Auxiliary Contacts for Type Contacts Type Suffix Price N.O. = normally open N.C. = normally closed when ordering with basic N.O. N.C. Standard auxiliary

More information

NVRmini 2 Release Note

NVRmini 2 Release Note Release 1.7.6 (2014/01/07) FW NVR 01.07.0006.0002 Camera Package DP v2.19 02.19.0000.0028 Application Install Wizard 1.7.5 Remote Live Viewer 1.7.5 Playback System 1.7.5 Backup System 1.7.5 Verification

More information

Avaya Unified Messenger Telephone User Interface Online Guide

Avaya Unified Messenger Telephone User Interface Online Guide Avaya Unified Messenger Select from the following Introduction Sending voice messages Getting started Recording prompts and greetings Reviewing messages Personalizing your mailbox Replying to messages

More information

Molded Case Circuit Breakers and Disconnect Switches Auxiliary Contacts for NZM(H)9-...

Molded Case Circuit Breakers and Disconnect Switches Auxiliary Contacts for NZM(H)9-... Circuit Breakers, 09/074 Moeller Electric Corporation Auxiliary Contacts for Contacts Type Suffix Price N.O. = normally open N.C. = normally closed when ordering with basic device N.O. N.C. Standard auxiliary

More information

Virtual Blade Configuration Mode Commands

Virtual Blade Configuration Mode Commands Virtual Blade Configuration Mode Commands To configure virtual blades on a WAE device, use the virtual-blade global configuration command. To disable a virtual blade, use the no form of this command. virtual-blade

More information

Real Time Clock. This appendix contains the information needed to install, program, and operate the Real Time Clock (RTC) option.

Real Time Clock. This appendix contains the information needed to install, program, and operate the Real Time Clock (RTC) option. Real Time Clock This appendix contains the information needed to install, program, and operate the Real Time Clock (RTC) option. 1222 Real Time Clock Overview Overview This hardware option is available

More information

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao American Philatelic Society Translation Committee Annual Report 2012 Prepared by Bobby Liao - 1 - Table of Contents: 1. Executive Summary 2. Translation Committee Activities Summary July 2011 June 2012

More information

Interactive Whiteboard Module ViewSync vtouch

Interactive Whiteboard Module ViewSync vtouch Interactive Whiteboard Module ViewSync vtouch vtouch, an interactive whiteboard module compatible with all short throw projectors from any manufacturer, offers educators an easy-to-use interactive projection

More information

Data Sheet Fujitsu Display L27T-1 LED

Data Sheet Fujitsu Display L27T-1 LED Data Sheet Fujitsu Display L27T-1 LED Data Sheet Fujitsu Display L27T-1 LED All-round display: 68.6 cm (27-inch) widescreen Ease of use Simplify your office work with the stylish FUJITSU Display L27T-1

More information

NVIDIA Release 197 Tesla Driver for Windows

NVIDIA Release 197 Tesla Driver for Windows NVIDIA Release 197 Tesla Driver for Windows RN-05247-195v19768 April 2010 Release Notes 01 NVIDIA TESLA DRIVER FOR WINDOWS This edition of Release 197 Notes describes the Release 197 Tesla Drivers for

More information

QuickSpecs. HP Z inch 4K UHD Display. Technical Specifications. Front. 1. Power LED

QuickSpecs. HP Z inch 4K UHD Display. Technical Specifications. Front. 1. Power LED 1. Power LED Front c05814444 DA16114 Worldwide Version 2 January 31, 2018 Page 1 Rear 1. Power Button 7. Power Connector Port 13. USB 3.0 Type-A Ports 2. OSD Button (Viewing Modes) 8. Audio Line Out 14.

More information

Instructions for Upgrading BladeUPS Firmware

Instructions for Upgrading BladeUPS Firmware All Blade UPS in a parallel system must have the same version of firmware. If installing a new UPS module into an existing system, which has a different firmware level, the new UPS will alarm Software

More information

Smart Events Cloud Release February 2017

Smart Events Cloud Release February 2017 Smart Events Cloud Release February 2017 Maintenance Window This is not a site-down release. Users still have access during the upgrade. Modules Impacted The changes in this release affect these modules

More information

Windows Embedded XP Technical Overview

Windows Embedded XP Technical Overview Windows Embedded XP Technical Overview Windows XP Embedded Benefits Security Manageability Innovation Page 2 Windows XP Embedded Benefits Powerful Network Protection Security Manageability Innovation Windows

More information

Simple manual for ML members(mailman)

Simple manual for ML members(mailman) Simple manual for ML members(mailman) Version 4.2 (Mailing List Service) Academic Computing & Communications Center University of Tsukuba 28/11/2016 Index 1. Introduction... 1 2. What is Mailing list?...

More information

Hik-Connect Mobile Client

Hik-Connect Mobile Client Hik-Connect Mobile Client SPEC V3.6.3 Name: Hik-Connect Mobile Client Software Version: V3.6.3 Android: System Requirement: Android 4.1 or Above ios: System Requirement: ios 8.0 or Above Software Information

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.4.0 Features Notes The latest information can be found on the Electronic Service Tools website at https://www.cummins.com/support/electronic-service-tools-support. For technical support, please

More information

Dual-core Intel Atom processor. 4 x 3.5" SATA(II)/2.5" SATA/SSD. 1.The standard system is shipped without HDD.

Dual-core Intel Atom processor. 4 x 3.5 SATA(II)/2.5 SATA/SSD. 1.The standard system is shipped without HDD. VS-4008U-RP Pro Hardware Spec. Processor HDD Capacity Dual-core Intel Atom processor 4 x 3.5" SATA(II)/2.5" SATA/SSD NOTE: 1.The standard system is shipped without HDD. 2.For the HDD compatibility list,

More information

Guide & User Instructions

Guide & User Instructions Guide & User Instructions Revised 06/2012 726 Grant Street Troy Ohio 45373 877.698.3262 937.335.3887 onecallnow.com support@onecallnow.com America s Largest Message Notification Provider Copyright 2009-2012

More information

Avaya Equinox Client (Windows) Release (FP1)

Avaya Equinox Client (Windows) Release (FP1) Avaya Equinox Client (Windows) Release 3.5.5 (FP1) Release Notes Issue 1.0 March 19, 2019 2019 Avaya Inc. All Rights Reserved. Table of Contents Change History... 3 Introduction... 3 Installation... 3

More information

MSRP Price list & order form

MSRP Price list & order form 1 LVI America, Inc. 150 north Michigan Avenue, Ste 1950 Chicago, IL 60601 Phone: (888) 781-7811 E-mail: order@lviamerica.com WWW.LVIAMERICA.COM MSRP Price list & order form Valid from 2018-01-31 Product

More information

2 x 3.5-inch SATA 6Gb/s, SATA 3Gb/s hard drive. 1. The standard system is shipped without HDD. 2. For the HDD compatibility list, please

2 x 3.5-inch SATA 6Gb/s, SATA 3Gb/s hard drive. 1. The standard system is shipped without HDD. 2. For the HDD compatibility list, please VS-2112 Pro+ Hardware Spec. Processor Memory HDD Capacity Dual-core Intel processor 4GB RAM 2 x 3.5-inch SATA 6Gb/s, SATA 3Gb/s hard drive NOTE: 1. The standard system is shipped without HDD. 2. For the

More information

1.1 February B

1.1 February B RELEASE NOTES 1.1 February 2019 3725-61900-001B Polycom Companion Polycom announces the release of the Polycom Companion software version 1.1. This document includes the latest information about new and

More information

Speaker Name: Darren J. Young / Course Title: Introduction to Visual LISP's vl- functions. Course ID: CP42-3

Speaker Name: Darren J. Young / Course Title: Introduction to Visual LISP's vl- functions. Course ID: CP42-3 Las Vegas, Nevada, December 3 6, 2002 Speaker Name: Darren J. Young / dyoung@mcwi.com Course Title: Introduction to Visual LISP's vl- functions Course ID: CP42-3 Course Outline: This course presents long-time

More information

8780 Line Powered Caller ID Speaker Phone INSTRUCTION MANUAL

8780 Line Powered Caller ID Speaker Phone INSTRUCTION MANUAL 8780 Line Powered Caller ID Speaker Phone INSTRUCTION MANUAL IMPORTANT SAFETY INSTRUCTIONS Always follow basic safety precautions when using your telephone equipment to reduce the risk of fire, electrical

More information

Kofax Transformation Modules. Technical Specifications. Version: 6.2.0

Kofax Transformation Modules. Technical Specifications. Version: 6.2.0 Kofax Transformation Modules Technical s Version: 6.2.0 Written by: Product Management KTM Date: May 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., or its

More information

EVAS CAN Bus. Ref : User Guide

EVAS CAN Bus. Ref : User Guide EVAS CAN Bus Ref : 115-311-001 User Guide Contents 1 Characteristics... 3 1.1 Operating characteristics... 3 1.2 Connectors... 3 2 System operation... 4 2.1 Continuous listening mode... 4 2.2 Impulse listening

More information

6 x 3.5-inch SATA 6Gb/s, SATA 3Gb/s hard drive. 1. The standard system is shipped without HDD. 2. For the HDD compatibility list, please visit :

6 x 3.5-inch SATA 6Gb/s, SATA 3Gb/s hard drive. 1. The standard system is shipped without HDD. 2. For the HDD compatibility list, please visit : VS-6112 Pro+ Hardware Spec. Processor Memory HDD Capacity Dual-core Intel processor 4GB RAM 6 x 3.5-inch SATA 6Gb/s, SATA 3Gb/s hard drive NOTE: 1. The standard system is shipped without HDD. 2. For the

More information

Note: TAO OCR is a derivitive of the same OCR engine used in Microsoft's "Seeing AI" application!

Note: TAO OCR is a derivitive of the same OCR engine used in Microsoft's Seeing AI application! TopOCR's Accessible User Interface By simply typing Control-Q, TopOCR can be transformed into a PC-based Reading Machine application for use with document cameras. It has a very easy to learn Visually

More information

Packaging Contents. The following components are included in your W52P/W52H IP DECT phone packages

Packaging Contents. The following components are included in your W52P/W52H IP DECT phone packages W52P User Guide Packaging Contents The following components are included in your W52P/W52H IP DECT phone packages W52P Package! 1 Base Station! 1 Handset! 1 Charge Cradle! 2 Power Adapters (one for the

More information

DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE DINO-LITE SOFTWARE

DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE 59 A professional, reliable software environment is essential when working with computer equipment like an USB microscope. All Dino-Lite USB products are delivered with an in-house

More information

Controlling the projector using a personal computer

Controlling the projector using a personal computer AUDIO OUT AUDIO IN-1 AUDIO IN-2 AUDIO IN-3L AUDIO IN-3R S-VIDEO VIDEO SERIAL MONITOR OUT COMPUTER / COMPONENT VIDEO IN-1 IN-2 USB-B USB-A DLP TM MODEL Projector XD550U/XD560U/WD570U/XD360U-EST/WD380U-EST/XD365U-EST/WD385U-EST

More information

Release Note

Release Note BlueSoleil TM 7.0.348.1 Release Note Oct 27, 2010 IVT CORPORATION 5/F, Fa Zhan Plaza No. 12, Shang Di Xin Xi Zhong Road, Hai Dian District, Beijing, 100085, P. R. China Tel: +86 10 82893060 Fax: +86 10

More information

Xapity Notification Activity Administration Guide.

Xapity Notification Activity Administration Guide. Xapity Notification Activity Administration Guide www.xapity.com Document Version 1.0 October 2016 This document contains information that may change without notice. While every effort has been made to

More information

DC193,V01_PS752,V01 RS-232 command set

DC193,V01_PS752,V01 RS-232 command set DC193,V01_PS752,V01 RS-232 command set History No Issue Date Version Description Apply Firmware DC193,V01: DGH100 1 2017/08/09 1.0 First version. PS752,V01: PVW100 *Notice: 1. The RS-232 command list is

More information

Dell SupportAssist for PCs. User's Guide for Windows 10 in S Mode

Dell SupportAssist for PCs. User's Guide for Windows 10 in S Mode Dell SupportAssist for PCs User's Guide for Windows 10 in S Mode Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

12 Steps to Software Translation Success

12 Steps to Software Translation Success 12 Steps to Software Translation Success www.globalizationpartners.com 12 Steps to Software Translation Success Copyright 2016-2017 Globalization Partners International. All rights reserved. This ebook

More information

RDA DEVELOPMENTS OF NOTE P RESENTED TO CC:DA B Y KATHY GLENNAN, ALA REPRESENTATIVE TO THE RSC J ANUARY 21, 2017

RDA DEVELOPMENTS OF NOTE P RESENTED TO CC:DA B Y KATHY GLENNAN, ALA REPRESENTATIVE TO THE RSC J ANUARY 21, 2017 RDA DEVELOPMENTS OF NOTE P RESENTED TO CC:DA B Y KATHY GLENNAN, ALA REPRESENTATIVE TO THE RSC J ANUARY 21, 2017 SYNCHRONIZING THE OPEN METADATA REGISTRY AND THE RDA TOOLKIT OPEN METADATA REGISTRY & RDA

More information

BLUETOOTH SYSTEM ALTEA/ALTEA XL/ALTEA FREETRACK/LEON OWNER S MANUAL

BLUETOOTH SYSTEM ALTEA/ALTEA XL/ALTEA FREETRACK/LEON OWNER S MANUAL BLUETOOTH SYSTEM ALTEA/ALTEA XL/ALTEA FREETRACK/LEON OWNER S MANUAL Table of Contents 1 Table of Contents Manual structure.................... 2 Introduction to the Bluetooth system.................................

More information

Automatic Reader. Multi Lingual OCR System.

Automatic Reader. Multi Lingual OCR System. Automatic Reader Multi Lingual OCR System What is the Automatic Reader? Sakhr s Automatic Reader transforms scanned images into a grid of millions of dots, optically recognizes the characters found in

More information

Manual for Philips DVP6xx Player Software Upgrade. Contents

Manual for Philips DVP6xx Player Software Upgrade. Contents Manual for Philips DVP6xx Player Software Upgrade Important : Please read and print this for your easy reference before starting the Software Upgrade. Contents 1. Software Upgrade Version Release Notes

More information

SMART Bridgit software

SMART Bridgit software PLEASE THINK BEFORE YOU PRINT Release notes SMART Bridgit software About these release notes These release notes summarize the changes to SMART Bridgit software and its revisions and service packs. Product

More information

Controlling the projector using a personal computer

Controlling the projector using a personal computer MODEL UD740U Controlling the projector using a personal computer This projector can be controlled by connecting a personal computer with RS-232C terminal. PC-controllable functions: Turning the power ON

More information