MPPC module. Function Specifications (mppcum1a) Version 1.0. K29-B60901e

Size: px
Start display at page:

Download "MPPC module. Function Specifications (mppcum1a) Version 1.0. K29-B60901e"

Transcription

1 K29-B60901e MPPC module Function Specifications (mppcum1a) Version 1.0

2 1 Introduction This specification document describes API needed to create application software for controlling an MPPC module. This specification document is written assuming you have experience with software development on Windows and also has an adequate understanding about USB architecture. When developing application software, we recommend checking the USB standards (USB1.1 / 2.0) by accessing the following website: [ System requirements ] Operation checks were performed for the device driver and DLL on the following system, but operation on other systems is not guaranteed. Microsoft Windows XP Professional SP3 (32 bit) OS Microsoft Windows Vista Business SP1, SP2 (32 bit) Microsoft Windows 7 Professional no SP, SP1 (32 bit/64 bit) A personal computer (PC) that meets the above system requirements must be used to operate the device driver and DLL. Although there are no other special requirements, we recommend using a PC with a high performance CPU and sufficient memory size. [ Development files ] The following DLL and function definition file are required to develop application software. Each file is contained on the CD-ROM: \Sample\ that comes with this product. mppcum1a.dll DLL for controlling an MPPC module. Copy this file into the same folder in which the application software will be stored or in the Windows system folder. mppcum1a.vb Function definition file for Visual Basic.NET. Copy this file into the project folder and add this to the project. mppcum1a.cs Function definition file for Visual C#.NET. Copy this file into the project folder and add this to the project. To allow the use of types in a namespace so that you do not have to qualify the use of a type in that namespace. Define following Using directive, if necessary. using MPPCmodule; [ Sample project files ] Project files for the sample application are included on the CD-ROM: \Sample\ that comes with this product. Use those files as references for developing your own programs. The project files were developed under the following environments..net Framework 3.5 SP1 Microsoft Visual Basic 2008 Express Edition Microsoft Visual C# 2008 Express Edition Microsoft Chart Controls for Microsoft.NET Framework 3.5 Microsoft Chart Controls Add-on for Microsoft Visual Studio 2008 * Specifications are subject to change without prior notice.

3 2 Release Notes Date Version Description November, First edition

4 3 List of Function MPPC_OpenDevice...4 MPPC_OpenTargetDevice...5 MPPC_CloseDevice...6 MPPC_CheckDevice...7 MPPC_OpenPipe...8 MPPC_ClosePipe...9 MPPC_ReadTypeNumber...10 MPPC_ReadUnitId MPPC_Initialize...12 MPPC_GetProperty...13 MPPC_SetProperty...14 MPPC_GetThreshold...15 MPPC_SetThreshold...16 MPPC_GetThresholdVoltage...17 MPPC_SetThresholdVoltage...18 MPPC_GetTemperature...19 MPPC_GetPeltierControl...20 MPPC_SetPeltierControl...21 MPPC_GetPeltierStatus...22 MPPC_GetCounterData...23 MPPC_GetCounterDataCooled...25

5 4 MPPC_OpenDevice Obtains the device handle to the MPPC module. Function MPPC_OpenDevice() As Integer System.IntPtr MPPC_OpenDevice( None INVALID_HANDLE_VALUE The target MPPC module does not exist. Other values Device handle Obtains the device handle to the MPPC module. The device handle is used to control the MPPC module. This function cannot identify the target MPPC module if two or more MPPC modules with the same vender ID and product ID are connected. When connecting two or more MPPC modules, use the MPPC_OpenTargetDevice When quitting the application you created, always use the MPPC_CloseDevice function to release the device handle that was obtained. Windows system may develop trouble if the MPPC module is disconnected from the PC without releasing the device handle.

6 5 MPPC_OpenTargetDevice Obtains the device handle to the MPPC module by specifying the unit ID (serial No.). Function MPPC_OpenTargetDevice( ByVal UnitID As String ) As Integer System.IntPtr MPPC_OpenTargetDevice( string UnitID UnitID Specify the unit ID of the target MPPC module. Unit ID is an ASCII character string (maximum of 8 bytes). INVALID_HANDLE_VALUE The target MPPC module does not exist. Other values Device handle Obtains the device handle to the MPPC module by specifying the unit ID. The device handle is used to control the MPPC module. When the unit ID is unknown, connect only one MPPC module to the PC and obtain the device handle with the MPPC_OpenDevice Then, use the MPPC_ReadUnitId function to obtain and check the device information (unit ID). When quitting the application you created, always use the MPPC_CloseDevice function to release the device handle that was obtained. Windows system may develop trouble if the MPPC module is disconnected from the PC without releasing the device handle.

7 6 MPPC_CloseDevice Releases the device handle to the MPPC module. Sub MPPC_CloseDevice( ByVal As Integer ) void MPPC_CloseDevice( System.IntPtr Specify the device handle that was obtained with the MPPC_OpenDevice function or MPPC_OpenTargetDevice None Releases the device handle obtained with the MPPC_OpenDevice function or MPPC_OpenTargetDevice Always first release the device handle when quitting the application. Windows system may develop trouble if the MPPC module is disconnected from the PC without releasing the device handle. However, the pipe handle obtained with the MPPC_OpenPipe function must be released with the MPPC _ClosePipe function before calling up this

8 7 MPPC_CheckDevice Checks the status of the connected MPPC module. Function MPPC_CheckDevice( ByVal As Integer ushort MPPC_CheckDevice( System.IntPtr Specify the device handle that was obtained with the MPPC_OpenDevice function or MPPC_OpenTargetDevice MPPC_CHECK_NORMAL MPPC module is operating normally. MPPC_CHECK_INVALID MPPC_CHECK_REMOVE MPPC module was disconnected. Checks the status of the connected MPPC module.

9 8 MPPC_OpenPipe Obtains the pipe handle to the MPPC module. Function MPPC_OpenPipe( ByVal As Integer ) As Integer System.IntPtr MPPC_OpenPipe( System.IntPtr Specify the device handle that was obtained with the MPPC_OpenDevice function or MPPC_OpenTargetDevice INVALID_HANDLE_VALUE Failed to obtain the pipe handle. Other values Pipe handle Obtains the pipe handle to the MPPC module. This pipe handle is used for data acquisition (bulk-in transfer). When quitting the application, always use the MPPC_ClosePipe function to release the pipe handle that was obtained. Windows system may develop trouble if the MPPC module is disconnected from the PC without releasing the pipe handle.

10 9 MPPC_ClosePipe Releases the pipe handle that was obtained. Sub MPPC_ClosePipe( ByVal PipeHandle As Integer ) void MPPC_ClosePipe( System.IntPtr PipeHandle PipeHandle Specify the pipe handle that was obtained with the MPPC_OpenPipe None Releases the pipe handle obtained with the MPPC_OpenPipe When quitting the application, always run this function before releasing the device handle with the MPPC_CloseDevice Windows system may develop trouble if the MPPC module is disconnected from the PC without releasing the pipe handle.

11 10 MPPC_ReadTypeNumber Obtains the type No. from the MPPC module. Function MPPC_ReadTypeNumber( ByVal As Integer, ByVal TypeNumber As System.Text.StringBuilder ushort MPPC_ReadTypeNumber( System.IntPtr, System.Text.StringBuilder TypeNumber TypeNumber Specify the leading element to the area where the MPPC module type No. is to be stored. Type No. is an ASCII character string (maximum of 16 bytes). Succeeded in obtaining the type No. Failed to obtain the type No. Obtains the type No. from the MPPC module.

12 11 MPPC_ReadUnitId Obtains the unit ID (serial No.) from the MPPC module. Function MPPC_ReadUnitID( ByVal As Integer, ByVal UnitID As System.Text.StringBuilder ushort MPPC_ReadUnitID( System.IntPtr, System.Text.StringBuilder UnitID UnitId Specify the leading element to the area where the MPPC module unit ID is to be stored. Unit ID is an ASCII character string (maximum of 8 bytes). Succeeded in obtaining the unit ID. Failed to obtain the unit ID. Obtains the unit ID from the MPPC module.

13 12 MPPC_Initialize Initializes the MPPC module. Function MPPC_Initialize( ByVal As Integer ushort MPPC_Initialize( System.IntPtr Succeeded in initializing the MPPC module. Failed to initialize the MPPC module. Initializes the MPPC module. After obtaining the device handle, initialize the MPPC module with the MPPC_Initialize The MPPC module becomes controllable after initialization.

14 13 MPPC_GetProperty Obtains the gate time and data size that are set for the MPPC module. Function MPPC_GetProperty( ByVal As Integer, ByRef GateTime As UInteger, ByRef DataSize As UShort ushort MPPC_GetProperty( System.IntPtr, out uint GateTime, out ushort DataSize GateTime Specify the variable of unsigned int type (4 bytes). The currently set gate time will be stored in this variable. DataSize Specify the variable of unsigned short type (2 bytes). The currently set data size will be stored in this variable. Succeeded in acquiring the settings. Failed to acquire the settings. Obtains the gate time and data size that are set for the MPPC module. If succeeded, the settings will be stored in the specified variable.

15 14 MPPC_SetProperty Sets the gate time and data size for the MPPC module. Function MPPC_SetProperty( ByVal As Integer, ByVal GateTime As UInteger, ByVal DataSize As UShort ushort MPPC_SetProperty( System.IntPtr, uint GateTime, ushort DataSize GateTime Specify (4 bytes) the gate time [µs]. Setting range is from 100 to 1,000,000 (100 µs to 1 second). DataSize Specify the data size (2 bytes) to be obtained. Setting range is from 1 to Succeeded in changing settings. Failed to change settings. MPPC_INVALID_VALUE Specified setting is out of range. Sets the gate time and data size to be obtained for the MPPC module. As default, the gate time is set to 1,000 µs (1 ms), and the data size to 100. In the USB communication (bulk-in transfer) with the MPPC module, the data is sent as a group in order to increase the data transfer efficiency. This is to avoid speed reduction caused by overhead. Set the data size so that the following relation is satisfied. (gate time) (data size) 20ms ( 50ms recommended)

16 15 MPPC_GetThreshold Obtains the comparator threshold level (p.e.) that is set for the MPPC module. Function MPPC_GetThreshold( ByVal As Integer, ByRef Level As UShort ushort MPPC_GetThreshold( System.IntPtr, out ushort Level Level Specify the variable of unsigned short type (2 bytes). The currently set comparator threshold (index) will be stored in this variable. Succeeded in acquiring the setting. Failed to acquire the setting. Obtains the comparator threshold (p.e.) that is set for the MPPC module. If succeeded, the setting (index) will be stored in the specified variable. Setting (index) VTH_05 (0) VTH_15 (1) VTH_25 (2) VTH_35 (3) VTH_45 (4) VTH_55 (5) VTH_65 (6) VTH_75 (7) VTH_OVER (40) Threshold level 0.5p.e. 1.5p.e. 2.5p.e. 3.5p.e. 4.5p.e. 5.5p.e. 6.5p.e. 7.5p.e. Disable

17 16 MPPC_SetThreshold Sets a comparator threshold level (p.e.) for the MPPC module. Function MPPC_SetThreshold( ByVal As Integer, ByVal Level As UShort ushort MPPC_SetThreshold( System.IntPtr, ushort Level Level Specify (2 bytes) the comparator threshold level (index). Succeeded in changing setting. Failed to change setting. MPPC_INVALID_VALUE Specified setting is out of range. Sets a comparator threshold level (p.e.) for the MPPC module. The following values can be set. Note that the counter function and comparator output will stop if the threshold is specified Disable (40). The same is true when higher than 4500 mv is set as the second argument in the MPPC_SetThresholdVoltage Setting (index) VTH_05 (0) VTH_15 (1) VTH_25 (2) VTH_35 (3) VTH_45 (4) VTH_55 (5) VTH_65 (6) VTH_75 (7) VTH_OVER (40) Threshold level 0.5p.e. 1.5p.e. 2.5p.e. 3.5p.e. 4.5p.e. 5.5p.e. 6.5p.e. 7.5p.e. Disable

18 17 MPPC_GetThresholdVoltage Obtains the comparator threshold (voltage) that is set for the MPPC module. The unit is mv. Function MPPC_GetThresholdVoltage( ByVal As Integer, ByRef Voltage As UShort ushort MPPC_GetThresholdVoltage( System.IntPtr, out ushort Voltage Voltage Specify the variable of unsigned short type (2 bytes). The currently set comparator threshold level (voltage) will be stored in this variable. Succeeded in acquiring the setting. Failed to acquire the setting. MPPC_NON_SUPPORT The MPPC module is not supported by this Obtains the comparator threshold (voltage) that is set for the MPPC module. If succeeded, the setting (mv) will be stored in the specified variable.

19 18 MPPC_SetThresholdVoltage Sets a comparator threshold level (voltage) for the MPPC module. The unit is mv. Function MPPC_SetThresholdVoltage( ByVal As Integer, ByVal Voltage As UShort ushort MPPC_SetThresholdVoltage( System.IntPtr, ushort Voltage Voltage Specify (2 bytes) the comparator threshold level (voltage). Succeeded in changing setting. Failed to change setting. MPPC_INVALID_VALUE Specified setting is out of range. Sets a comparator threshold (voltage) for the MPPC module. Setting range is from 0 to 4999 mv. Note that the counter function and comparator output will stop if the threshold is set higher than 4500 mv. The same is true when Disable (40) is specified as the second argument in the MPPC_SetThreshold

20 19 MPPC_GetTemperature Obtains temperature data from the temperature sensor installed in the MPPC module. The temperature obtained from the temperature sensor is the Internal temperature. Function MPPC_GetTemperature( ByVal As Integer, ByRef Temperature As Double ushort MPPC_GetTemperature( System.IntPtr, out double Temperature Temperature Specify the variable of double type. Temperature data will be stored in this variable. Succeeded in obtaining the temperature data. Failed to obtain the temperature data. Obtains temperature data from the temperature sensor installed in the MPPC module. If succeeded, the temperature data will be stored in the specified variable.

21 20 MPPC_GetPeltierControl Obtains the cooling control status (Enable / Disable) of the MPPC module. This function is only for cooled type MPPC modules. Function MPPC_GetPeltierControl( ByVal As Integer, ByRef ControlFlags As UShort ushort MPPC_GetPeltierControl( System.IntPtr, out ushort ControlFlag ControlFlags Specify the variable of unsigned short type (2 bytes). The cooling control status (Enable / Disable) will be stored in this variable. Succeeded in acquiring the setting. Failed to acquire the setting. MPPC_NON_SUPPORT The MPPC module is not supported by this This function is only for cooled type MPPC modules. Use this function to obtain the cooling control status (Enable / Disable) of the MPPC module. ENABLE(1) indicates the MPPC module is being cooled, and DISABLE(0) indicates the cooling is stopped.

22 21 MPPC_SetPeltierControl Sets the cooling control status (Enable / Disable) of the MPPC module. This function is only for cooled type MPPC modules. Function MPPC_SetPeltierControl( ByVal As Integer, ByVal ControlFlags As UShort ushort MPPC_SetPeltierControl( System.IntPtr, ushort ControlFlag ControlFlags Specify ENABLE(1) to start cooling or DISABLE(0) to stop cooling. Succeeded in changing setting. Failed to change setting. MPPC_INVALID_VALUE Specified setting is invalid. MPPC_NON_SUPPORT The MPPC module is not supported by this MPPC_ERROR_TEMP Internal temperature exceeded the operating temperature range. This function is only for cooled type MPPC modules. Use this function to set the cooling control status (Enable / Disable) of the MPPC module. Specify ENABLE(1) to start cooling or DISABLE(0) to stop cooling. Before starting measurement, start cooling with this If the Internal temperature is outside the operating temperature range (0 to +35 C), this function returns MPPC_ERROR_TEMP. Cooling will not start in this case.

23 22 MPPC_GetPeltierStatus Obtains the cooling status of the MPPC module. This function is only for cooled type MPPC modules. Function MPPC_GetPeltierStatus( ByVal As Integer ushort MPPC_GetPeltierStatus( System.IntPtr Cooling is stable. Failed to obtain the cooling status. MPPC_NON_SUPPORT The MPPC module is not supported by this MPPC_UNSTABLE_STATE Cooling is unstable. MPPC_PELTIER_DISABLE Cooling is stopped. MPPC_PELTIER_TIMEOUT A time-out error occurred after starting cooling. (This error will not be cleared until the power to the MPPC module is turned off.) MPPC_ERROR_MODULE An error occurred in the cooler. (This error will not be cleared until the power to the MPPC module is turned off.) MPPC_ERROR_TEMP Internal temperature exceeded the operating temperature range. This function is only for cooled type MPPC modules. Use this function to obtain the cooling status of the MPPC module. After starting cooling with the MPPC_SetPeltierControl function, check the cooling status of the MPPC module with this If the cooling is stable, will be returned. If the returned value is MPPC_UNSTABLE_STATE, the cooling temperature is not yet reached. Wait for a while and then recheck the cooling status using this If the cooling does not become stable within the specified time (approx. 2 minutes), MPPC_PELTIER_TIMEOUT will be returned. If an error occurred in the cooler, MPPC_ERROR_MODULE will be returned.

24 23 MPPC_GetCounterData Acquires data from the MPPC module. Use this function to obtain data from non-cooled type MPPC modules. Function MPPC_GetCounterData( ByVal As Integer, ByVal PipeHandle As Integer, ByVal Size As UShort, ByVal DataArea() As UInteger ushort MPPC_GetCounterData( System.IntPtr, System.IntPtr PipeHandle, ushort Size, uint[] DataArea PipeHandle Specify the pipe handle obtained with the MPPC_OpenPipe DataSize Specify the data size that was specified as DataSize with the MPPC_SetProperty DataArea Specify the leading element to the buffer (DataSize 4 bytes) where the acquired data is to be stored. Data is 4 bytes. The data read out of the MPPC module will be stored in the specified buffer. Succeeded in obtaining the data. Failed to obtain the data. MPPC_INVALID_VALUE Specified value is invalid. MPPC_NOT_UPDATED Data of the specified data size is not provided (data is being acquired). Acquires data from the MPPC module. Acquires the data equal to the data size specified with the MPPC_SetProperty function and then stores it in the specified buffer (DataArea). The data size specified as DataSize should be the same value as the size specified with the MPPC_SetProperty If a different size is specified, the acquired data is not guaranteed. In the USB communication (bulk-in transfer) with the MPPC module, the data is sent as a group in order to increase the data transfer efficiency. This is to avoid speed reduction caused by overhead. Set the data size so that the following relation is satisfied. (gate time) (data size) 20ms ( 50ms recommended)

25 24 The time needed for the MPPC_GetCounterData function to be processed (from when the function is called to when the control is returned) is about 13 to 20 ms, depending on the system environment used. This means that under the conditions not satisfying the above relation, the acquired data might be erased (overwritten by new data) in the MPPC module. [Example] If the gate time is set to 1000 µs and the data size to 50 Since 1000 µs 50 = 50 ms, new data is provided every 50 ms in the MPPC module. If no data is acquired within 50 ms after new data is updated, the data retained in the MPPC module will be erased, and new data will be provided. Because of this, the application must access the MPPC module at an interval shorter than 50 ms in order to acquire data. When data is acquired, it will be stored in the specified buffer. If new data is not provided in the MPPC module, MPPC_NOT_UPDATED will be returned. In this case, wait for a while and then recall this function to acquire data. If failed to acquire data, will be returned. The data in the specified buffer is uncertain.

26 25 MPPC_GetCounterDataCooled Acquires data from the MPPC module. Also returns an error when the cooling status becomes abnormal. Use this function to acquire data from cooled type MPPC modules. Function MPPC_GetCounterDataCooled( ByVal As Integer, ByVal PipeHandle As Integer, ByVal DataSize As UShort, ByVal Data() As UInteger ushort MPPC_GetCounterDataCooled( System.IntPtr, System.IntPtr PipeHandle, ushort Size, uint[] DataArea PipeHandle Specify the pipe handle obtained with the MPPC_OpenPipe DataSize Specify the data size that was specified as DataSize with the MPPC_SetProperty DataArea Specify the leading element to the buffer (DataSize 4 bytes) where the acquired data is to be stored. Data is 4 bytes. The data read out of the MPPC module will be stored in this buffer. Succeeded in obtaining the data. Failed to obtain the data. MPPC_INVALID_VALUE Specified value is invalid. MPPC_NOT_UPDATED Data of the specified data size is not provided (data is being acquired). MPPC_NON_SUPPORT The MPPC module is not supported by this MPPC_UNSTABLE_STATE Cooling is unstable. MPPC_PELTIER_DISABLE Cooling is stopped. MPPC_ERROR_MODULE An error occurred in the cooler. (This error will not be cleared until the power to the MPPC module is turned off.) MPPC_ERROR_TEMP Internal temperature exceeded the operating temperature range.

27 26 This function is only for cooled type MPPC modules. Acquires data from the MPPC module. Acquires the data equal to the data size specified with the MPPC_SetProperty function and then stores it in the specified buffer (DataArea). The data size specified as DataSize should be the same value as the size specified with the MPPC_SetProperty If a different size is specified, the acquired data is not guaranteed. In the USB communication (bulk-in transfer) with the MPPC module, the data is sent as a group in order to increase the data transfer efficiency. This is to avoid speed reduction caused by overhead. Set the data size so that the following relation is satisfied. (gate time) (data size) 20ms ( 50ms recommended) The time needed for the MPPC_GetCounterDataCooled function to be processed (from when the function is called to when the control is returned) is about 13 to 20 ms, depending on the system environment used. This means that under the conditions not satisfying the above relation, the acquired data might be erased (overwritten by new data) in the MPPC module. [Example] If the gate time is set to 1000 µs and the data size to 50 Since 1000 µs 50 = 50 ms, new data is provided every 50 ms in the MPPC module. If no data is acquired within 50 ms after new data is updated, the data retained in the MPPC module will be erased, and new data will be provided. Because of this, the application must access the MPPC module at an interval shorter than 50 ms in order to acquire data. When data is acquired, it will be stored in the specified buffer. If new data is not provided in the MPPC module, MPPC_NOT_UPDATED will be returned. In this case, wait for a while and then recall this function to acquire data. If failed to acquire data, will be returned. The data in the specified buffer is uncertain. If an error occurred in the cooler, MPPC_ERROR_MODULE will be returned.

28 27 Appendix A. [ Return value list ] Symbol Value Description INVALID_HANDLE_VALUE -1 The target MPPC module does not exist. 0 Normal end. 1 Abnormal end. 2 MPPC_INVALID_VALUE 3 Specified value is invalid. MPPC_NOT_UPDATED 4 Specified data size is not provided. (Data is being acquired). MPPC_NON_SUPPORT 5 MPPC module is not supported by this MPPC_UNSTABLE_STATE 11 Cooling is unstable. MPPC_PELTIER_DISABLE 12 Cooling is stopped. MPPC_PELTIER_TIMEOUT * 13 Time-out error occurred after stating cooling. MPPC_ERROR_MODULE * 14 Error occurred in the cooler. MPPC_ERROR_TEMP 15 Operating temperature range was exceeded. MPPC_CHECK_NORMAL 21 MPPC module is operating normally. MPPC_CHECK_INVALID 22 MPPC_CHECK_REMOVE 23 MPPC module is disconnected. * If MPPC_PELTIER_TIMEOUT or MPPC_ERROR_MODULE occurs, emmediately quit the application that is operating and disconnect the MPPC module from the PC. These errors will not be cleared until the power to the MPPC module is turned off.

System Monitoring Library Windows driver software for Classembly Devices

System Monitoring Library Windows driver software for Classembly Devices IFCPMGR.WIN System Monitoring Library Windows driver software for Classembly Devices www.interface.co.jp Contents Chapter 1 Introduction 3 1.1 Overview...3 1.2 Features...3 Chapter 2 Product Specifications

More information

INST.NO. INE-919. DI5000 Setting Software

INST.NO. INE-919. DI5000 Setting Software INST.NO. INE919 DI5000 Setting Software Table of contents 1. Introduction... 1 2. System Requirement... 3 21 Operation Condition of the Software... 3 3 How to Setup... 4 31. Installation... 4 311. New

More information

STD_CU43USBSW_V1.0E. CUnet (MKY43) USB Unit. CU-43USB Software Manual

STD_CU43USBSW_V1.0E. CUnet (MKY43) USB Unit. CU-43USB Software Manual STD_CU43USBSW_V1.0E CUnet (MKY43) USB Unit CU-43USB Software Manual Introduction This document describes API included with CU-43USB unit. Before using the product, please check the latest information on

More information

int result; int waitstat; int stat = PmcaAsyncGetGain(&result); // stat receives request id

int result; int waitstat; int stat = PmcaAsyncGetGain(&result); // stat receives request id PMCA COM API Programmer's Guide PMCA COM is an Application Programming Interface Library for the Amptek Pocket Multichannel Analyzers MCA8000 and MCA8000A. PMCA COM runs on personal computers under any

More information

Key Switch Control Software Windows driver software for Touch Panel Classembly Devices

Key Switch Control Software Windows driver software for Touch Panel Classembly Devices IFKSMGR.WIN Key Switch Control Software Windows driver software for Touch Panel Classembly Devices Help for Windows www.interface.co.jp Contents Chapter 1 Introduction 3 1.1 Overview... 3 1.2 Features...

More information

System Monitoring Library Windows Driver Software for Industrial Controllers

System Monitoring Library Windows Driver Software for Industrial Controllers IFPMGR.WIN System Monitoring Library Windows Driver Software for Industrial ontrollers Help for Windows www.interface.co.jp ontents hapter 1 Introduction...4 1.1 Overview... 4 1.2 Features... 4 hapter

More information

Thank you for choosing Loadstar Sensors. Need additional help? Call us at or us at

Thank you for choosing Loadstar Sensors. Need additional help? Call us at or  us at LoadVUE User Guide LoadVUE LoadVUE Lite Thank you for choosing Loadstar Sensors. Need additional help? Call us at 510-623-9600 or email us at support@loadstarsensors.com LoadVUE is compatible with Windows

More information

INSTALLING THE PS3 XBOX READY SOFTWARE:

INSTALLING THE PS3 XBOX READY SOFTWARE: INSTALLING THE PS3 XBOX READY SOFTWARE: 1. Insert the Installation CD to CD-ROM drive and execute Ready_Setup.exe NOTE: If it is the first time for the target USB disk using under this software, the software

More information

BTH-1208LS Wireless Multifunction DAQ Device

BTH-1208LS Wireless Multifunction DAQ Device Wireless Multifunction DAQ Device Features Eight 11-bit single-ended (SE) or four 12-bit differential (DIFF) analog input channels Acquires data over Bluetooth or USB connection Maximum sampling rate of

More information

Smart Monitor ZG2 User s Manual

Smart Monitor ZG2 User s Manual Smart Monitor ZG2 User s Manual Smart Sensors ZG2 Series 2D Profile Measuring Sensors CONTENTS SMART MONITOR ZG2 USER S MANUAL...1 SECTION 1 PREPARATIONS...2 Installing the Smart Monitor ZG2 on a Computer...

More information

MW100 CAN Bus Module Configuration Tool (MX118-CAN-M30/S1) User s Manual

MW100 CAN Bus Module Configuration Tool (MX118-CAN-M30/S1) User s Manual MW100 CAN Bus Module Configuration Tool (MX118-CAN-M30/S1) User s Manual 1 Contents Before Using the Software... 3 Explanation of Functions... 3 MX118 Part Names and Functions... 3 Operation Guide... 4

More information

Operating Manual MPI-300 NCS-M Parameter Tool

Operating Manual MPI-300 NCS-M Parameter Tool SENSORS FOR FOOD AND LIFESCIENCE. Operating Manual MPI-300 NCS-M Parameter Tool MPI-300 30013 / 1.2 / 2018-02-14 / AR / EU Operating Manual MPI-300 2 Table of contents 1 Application... 3 2 System Requirements...

More information

USB Instruments EasyLogger for PS40M10 "Swordfish" Help

USB Instruments EasyLogger for PS40M10 Swordfish Help USB Instruments EasyLogger for PS40M10 "Swordfish" Help I EasyLogger for PS40M10 Help Table of Contents Part I Introduction 3 1 Welcome to... EasyLogger for PS40M10 3 2 EasyLogger... Features 4 Part II

More information

Wavy for PAS&PWR Ver. 5.0

Wavy for PAS&PWR Ver. 5.0 Kikuchi 07 22 08 Operation Manual Sequence Creation Software Kobayashi 07 22 08 Wavy for PAS&PWR Ver. 5.0 Version 5.0 Prepared: July 22, 2008 KIKUSUI ELECTRONICS CORPORATION IB01809 1 1/34 Note Before

More information

Test Point Interface For EDR Enhanced Third Party Interface Driver User s Manual TestPoint Version 4.01 with 32-bit support

Test Point Interface For EDR Enhanced Third Party Interface Driver User s Manual TestPoint Version 4.01 with 32-bit support Test Point Interface For EDR Enhanced Third Party Interface Driver User s Manual TestPoint Version 4.01 with 32-bit support Eagle Technology Cape Town, South Africa Copyright 2002 www.eagle.co.za Third

More information

Mini-Circuits Programming Manual For the. USB RF Switch Matrices

Mini-Circuits Programming Manual For the. USB RF Switch Matrices Mini-Circuits Programming Manual For the USB RF Switch Matrices 20/5/2012 Page 1 Contents Item Description Page 1 Overview 3 2 Operating in a Windows Environment.... 4-8 2.1 Software supported by ActiveX

More information

RT USB3000 Technical Description and User Manual. Revision 4.1.

RT USB3000 Technical Description and User Manual. Revision 4.1. RT USB3000 Technical Description and User Manual. Revision 4.1. 1. GENERAL INFORMATION...2 2. SPECIFICATIONS...3 3. OPERATING MODES...7 3.1. ADC MODE...7 3.2. DAC MODE...7 3.3. LOGIC ANALYZER MODE...8

More information

P 2 S t a t u s l o g g e r for Win d o w s U S E R S G U I D E

P 2 S t a t u s l o g g e r for Win d o w s U S E R S G U I D E P 2 S t a t u s l o g g e r for Win d o w s U S E R S G U I D E 1 The P2 status logger is an inspection tool which allows users to performing "easy firmware search" and "automated information update in

More information

KingSCADA Quick Start Manual How to create a new project

KingSCADA Quick Start Manual How to create a new project KingSCADA Quick Start Manual How to create a new project KingSCADA Hardware Requirements (recommended): Processor Pentium IV and above CPU speed 2GHz and above 32 bit CPU 2GB RAM and above 20G HDD and

More information

EEPROM Emulation with the ez80f91 MCU. Discussion

EEPROM Emulation with the ez80f91 MCU. Discussion Application Note EEPROM Emulation with the ez80f91 MCU AN015803-0608 Abstract This Application Note describes a method to utilize a portion of Zilog s ez80acclaimplus! MCU s Flash memory to emulate the

More information

111 Highland Drive Putnam, CT USA PHONE (860) FAX (860) SM32Pro SDK

111 Highland Drive Putnam, CT USA PHONE (860) FAX (860) SM32Pro SDK SM32Pro SDK Spectrometer Operating Software USER MANUAL SM301/SM301EX Table Of Contents Warranty And Liability...3 Quick Start Installation Guide...4 System Requirements...5 Getting Started...6 Using the

More information

LAP-B(PCI/C-PCI) GPF LAP-B Communications Driver Software for for Windows. Help for Windows.

LAP-B(PCI/C-PCI) GPF LAP-B Communications Driver Software for for Windows. Help for Windows. LAP-B(PCI/C-PCI) GPF-4115 LAP-B Communications Driver Software for for Windows Help for Windows www.interface.co.jp Contents Chapter 1 Introduction 4 1.1 Overview4 1.2 Features.4 Chapter 2 Product Specifications

More information

DPC-0225 Storage Protection Management Software

DPC-0225 Storage Protection Management Software Storage Protection Management Software DPC-0225 Storage Protection Management Software Ver.1.10 Help for Windows www.interface.co.jp Contents Chapter 1 Introduction 3 1.1 Overview...3 1.2 Features...3

More information

Read section 8 of this document for detailed instructions on how to use this interface spec with LibUSB For OSX

Read section 8 of this document for detailed instructions on how to use this interface spec with LibUSB For OSX CP2130 INTERFACE SPECIFICATION 1. Introduction The Silicon Labs CP2130 USB-to-SPI bridge is a device that communicates over the Universal Serial Bus (USB) using vendor-specific control and bulk transfers

More information

MW100 Setting for Data Communications via Modbus Protocol. Connect to Ethernet. Enter Ethernet settings. Enter Server Settings

MW100 Setting for Data Communications via Modbus Protocol. Connect to Ethernet. Enter Ethernet settings. Enter Server Settings User s Manual Setting for Data Communications via Modbus Protocol Overview This is an explanation of the procedure for entering settings for Modbus communications with the DAQMASTER. This manual descries

More information

KMS CAN Bus Interface Manual. Firmware Version December 2015

KMS CAN Bus Interface Manual. Firmware Version December 2015 KMS CAN Bus Interface Manual Firmware Version 1.3.0 December 2015 Contents 1 Introduction... 3 2 Using the CAN Bus Interface... 3 3 Protocol Description... 3 3.1 Acquire 32-bit Sensor Data... 4 3.2 Acquire

More information

TM Printer Service and Support Utility for Windows Version 2.xx User s Manual (English)

TM Printer Service and Support Utility for Windows Version 2.xx User s Manual (English) TM Printer Service and Support Utility for Windows Version 2.xx User s Manual (English) Rev. B Table of Contents Introduction...1 Purpose of This Manual and Target Users... 1 Composition of This Manual...

More information

DPF-0401 Windows driver software for USB expansion I/O products

DPF-0401 Windows driver software for USB expansion I/O products Interface USB Driver (I/O-CD) DPF-0401 Windows driver software for USB expansion I/O products Help for Windows www.interface.co.jp Contents Chapter 1 Introduction...3 1.1 Overview... 3 1.2 Corresponding

More information

testo Comfort Software Basic 5

testo Comfort Software Basic 5 99 Washington Street Melrose, MA 02176 Phone 781-665-1400 Toll Free 1-800-517-8431 Visit us at www.testequipmentdepot.com testo Comfort Software Basic 5 Instruction manual 2 1 Contents 1 Contents 1 Contents...

More information

USB-910H API DLL and Include File Reference Manual

USB-910H API DLL and Include File Reference Manual USB-910H API DLL and Include File Reference Manual APPLICABLE ADAPTERS This Application Note applies to the following Keterex products: KXUSB-910H. AN2101 Application Note INTRODUCTION The Keterex USB-910H

More information

Acquiring the Software As of January 1 st, 2015 the J1939 software is available for download at the following website:

Acquiring the Software As of January 1 st, 2015 the J1939 software is available for download at the following website: Overview The following document is a basic guide to C. E. Niehoff & Co.'s (CEN) J1939 software application for Windows (beta version 0.1.3.88 at time of writing) that enables customer access to charging

More information

FP-RTD-122. Introduction CALIBRATION PROCEDURE. Version 2.0

FP-RTD-122. Introduction CALIBRATION PROCEDURE. Version 2.0 CALIBRATION PROCEDURE FP-RTD-122 Version 2.0 Introduction This document contains step-by-step instructions for calibrating the National Instruments FP-RTD-122 module. The procedure contains the following

More information

Operation Manual for USB Autoscope Lite. Contents. USB Autoscope Lite Operation Manual

Operation Manual for USB Autoscope Lite. Contents. USB Autoscope Lite Operation Manual Operation Manual for USB Autoscope Lite Please read this manual thoroughly before attempting to operate the device. Contents 1. Purpose...2 2. Technical characteristics of the USB Autoscope Lite...2 2.1

More information

USB-L111. User's Guide. Vision:1.0. Standard Motion.NET USB Master Card

USB-L111. User's Guide. Vision:1.0. Standard Motion.NET USB Master Card USB-L111 Standard Motion.NET USB Master Card User's Guide Vision:1.0 Copyright 2004 SYN-TEK Technologies Inc. All Rights Reserved. The product, including the product itself, the accessories, the software,

More information

USB-500 Series Getting Started Contents

USB-500 Series Getting Started Contents USB-500 Series Getting Started Contents System requirements and recommendations... 2 USB-501-PRO Safety Agreement... 2 Installing the software... 3 Installing USB-500 Series Data Loggers... 4 Running the

More information

SOFTWARE INSTRUCTIONS DIGITAL SPEAKER PROCESSOR DP-SP3

SOFTWARE INSTRUCTIONS DIGITAL SPEAKER PROCESSOR DP-SP3 SOFTWARE INSTRUCTIONS DIGITAL SPEAKER PROCESSOR DP-SP3 Thank you for purchasing TOA s Digital Speaker Processor. Please carefully follow the instructions in this manual to ensure long, trouble-free use

More information

M5600/U5600 Software Manual Wireless Pressure Transducers (Rev 2.0)

M5600/U5600 Software Manual Wireless Pressure Transducers (Rev 2.0) M5600/U5600 Software Manual (Rev 2.0) TE CONNECTIVITY SENSORS /// M5600/U5600 SOFTWARE MANUAL 04/2016 Page 1 Contents 1 Introduction Description 3 2 Manual Smartphone/Tablet Software Installation and Operation

More information

EL731 DEVICENET INTERFACE

EL731 DEVICENET INTERFACE 3714 Kinnear Place Saskatoon, SK Canada S7P 0A6 Ph: (306) 373-5505 Fx: (306) 374-2245 www.littelfuse.com/relayscontrols EL731 DEVICENET INTERFACE Revision 0-B-121614 Copyright 2014 Littelfuse Startco All

More information

BioTac C Library Manual for Cheetah

BioTac C Library Manual for Cheetah BioTac C Library Manual for Cheetah Version 1.1.0 Chia- Hsien (Gary) Lin Tomonori Yamamoto Jeremy Fishel April 5, 2012 Released 1 Table of Contents 1 Introduction... 3 2 General Data Types... 3 3 Functions...

More information

Web monitoring tool (UTY-AMGX) Copyrights 2010 Fujitsu General Limited, Sales Division, All rights reserved.

Web monitoring tool (UTY-AMGX) Copyrights 2010 Fujitsu General Limited, Sales Division, All rights reserved. Web monitoring tool (UTY-AMGX) 1 Product feature Difference of UTY-AMGX and UTY-ASGX Main feature Update version for Web monitoring tool 2 Difference of UTY-AMGX or UTY-ASGX Background Model Web Monitoring

More information

Wavy for PLZ-4W Ver. 4.0

Wavy for PLZ-4W Ver. 4.0 Operation Manual Sequence Creation Software Wavy for PLZ-4W Ver. 4.0 Version 4.0 Prepared: June 21, 2006 KIKUSUI ELECTRONICS CORPORATION 1/35 Note Before contacting us to request repair, inspection, or

More information

A variety of ECONseries modules provide economical yet flexible solutions. Waveform Generation

A variety of ECONseries modules provide economical yet flexible solutions. Waveform Generation ECONseries BUS: USB Type: Economy, Mini-Instruments ECONseries Economy USB Mini-Instruments Flexible Yet Economical A variety of low-cost ECONseries modules are available to provide flexible yet economical

More information

xponent Version 4.2 RELEASE NOTES

xponent Version 4.2 RELEASE NOTES xponent Version 4.2 RELEASE NOTES Copyright Luminex Corporation, 1996-2013. All rights reserved. Part Number: 89-30000-00-462 Disclaimer Subject to change without notice. Although prepared to ensure accuracy,

More information

Daily Monthly Report Software EcoMeasure III. User manual (Detailed version) Model MES3-SW1-DR-EN

Daily Monthly Report Software EcoMeasure III. User manual (Detailed version) Model MES3-SW1-DR-EN Daily Monthly Report Software EcoMeasure III Model User manual (Detailed version) Make sure to read this user manual before using the product. Please ensure that this manual is delivered to the end user

More information

OTO Photonics. Sidewinder TM Series Datasheet. Description

OTO Photonics. Sidewinder TM Series Datasheet. Description OTO Photonics Sidewinder TM Series Datasheet Description SW (Sidewinder TM ) Series spectrometer,built with the InGaAs type sensor and high performance 32bits RISC controller in, is specially designed

More information

EL731 PROFIBUS INTERFACE

EL731 PROFIBUS INTERFACE Tel: +1-800-832-3873 E-mail: techline@littelfuse.com www.littelfuse.com/el731 EL731 PROFIBUS INTERFACE Revision 0-A-032816 Copyright 2016 Littelfuse Startco All rights reserved. Document Number: PM-1011-EN

More information

USB 1608G Series USB Multifunction Devices

USB 1608G Series USB Multifunction Devices USB Multifunction Devices Features 16-bit high-speed USB devices Acquisition rates ranging from 250 ks/s to 500 ks/s differential (DIFF) or 16 singleended (SE) analog inputs (softwareselectable) Up to

More information

EL-USB-RT API Guide V1.0

EL-USB-RT API Guide V1.0 EL-USB-RT API Guide V1.0 Contents 1 Introduction 2 C++ Sample Dialog Application 3 C++ Sample Observer Pattern Application 4 C# Sample Application 4.1 Capturing USB Device Connect \ Disconnect Events 5

More information

EasyMP Monitor Operation Guide Ver.4.31

EasyMP Monitor Operation Guide Ver.4.31 EasyMP Monitor Operation Guide Ver.4.31 Notations Used in This Guide The following table shows the symbols used in this manual, along with descriptions of what they mean. Attention s Indicates procedures

More information

EW SERIES SUPPORT SOFTWARE (FOR EW2C-H-NP, EW2C-H-CC) OWNER'S MANUAL (Ver. 1.0)

EW SERIES SUPPORT SOFTWARE (FOR EW2C-H-NP, EW2C-H-CC) OWNER'S MANUAL (Ver. 1.0) X435178 Ver1.0 EW SERIES SUPPORT SOFTWARE (FOR EW2C-H-NP, EW2C-H-CC) OWNER'S MANUAL (Ver. 1.0) Contents 1. Software 1-1 Overview 2 1-2 System Requirements 2 2. Before You Begin 2-1 Preparation 3 2-2 Connecting

More information

D8000 SERIES QUICK START GUIDE

D8000 SERIES QUICK START GUIDE D8000 SERIES QUICK START GUIDE Version 1.0 Overview The D8000 series modules require a DC Voltage power supply, a USB cable and an unused computer USB port for proper operation. Connecting the D8000 series

More information

Operating Instructions

Operating Instructions Providing presentation solutions V iewer Software Program Operating Instructions NIPPON AVIONICS CO., LTD. 1 This manual describes the functions and operations for conducting presentations using ip Viewer.

More information

EasyMP Monitor Operation Guide Ver.4.31

EasyMP Monitor Operation Guide Ver.4.31 EasyMP Monitor Operation Guide Ver.4.31 2 Notations Used in This Guide The following table shows the symbols used in this manual, along with descriptions of what they mean. s Indicates a page where detailed

More information

IEC61850 communication solution WinCC Channel

IEC61850 communication solution WinCC Channel IEC61850 communication solution WinCC Channel Documentation Date: 15.04.2015 Version: 2.03 IEC 61850 communication solution Page 1 of 33 Change history Datum Version Author Changes 19.11.2010 00.1 Mr.

More information

NI-DAQmx Basic Course NITS John Shannon

NI-DAQmx Basic Course NITS John Shannon NI-DAQmx Basic Course NITS 2005 John Shannon Agenda Intro to DAQMX Difference between traditional / DaqMX MAX and DAQ Assistance Analog Input / Output Property Nodes Buffered / Continuous Acquisition Analog

More information

Install Manual. P2 Software ENGLISH M0509AT5091 -FJ VQT2G26-4

Install Manual. P2 Software ENGLISH M0509AT5091 -FJ VQT2G26-4 Install Manual P2 Software M0509AT5091 -FJ ENGLISH VQT2G26-4 Contents Operating Precautions When Using Windows 1. Before Installing................................................... 3 2. Precautions in

More information

The note describes the software installation procedure and the operating mode.

The note describes the software installation procedure and the operating mode. AN130405 Luminosity Sensor Demonstration Introduction This application note describes the PC software setup to use the luminosity demonstration program. The demonstration requires a Luminosity Sensor with

More information

Application program usage. Functional description

Application program usage. Functional description Application program usage Product family: Product type: Manufacturer: Name: Order-No.: Controller Controller Siemens Functional description IP Controller N350E 5WG1 350-1EB01 The IP Controller N350E is

More information

iqinterface User Manual Documentation

iqinterface User Manual Documentation iqinterface User Manual Documentation Release 1.1.0.9 Andrey Zagrebin July 06, 2015 Contents 1 Introduction 3 1.1 Get Started................................................ 3 2 Physical connection 5

More information

Features. High-precision Analog input board (Low Profile size) for PCI Express AI-1616L-LPE AI-1616L-LPE 1. Ver.1.01

Features. High-precision Analog input board (Low Profile size) for PCI Express AI-1616L-LPE AI-1616L-LPE 1. Ver.1.01 High-precision Analog input board (Low Profile size) for PCI Express AI-1616L-LPE *Specifications, colors and design of the products are subject to change without notice. This product is a multi-function,

More information

IC-601. Color Centro

IC-601. Color Centro IC-601 Color Centro Contents 1 Introduction 1.1 Welcome... 1-2 1.1.1 Composition of User's Guide... 1-2 1.1.2 User's Guide... 1-2 1.2 Conventions used in this manual... 1-3 1.2.1 Symbols used in this manual...

More information

CS708 Lecture Notes. Visual Basic.NET Object-Oriented Programming. Implementing Client/Server Architectures. Part (I of?) (Lecture Notes 5A)

CS708 Lecture Notes. Visual Basic.NET Object-Oriented Programming. Implementing Client/Server Architectures. Part (I of?) (Lecture Notes 5A) CS708 Lecture Notes Visual Basic.NET Object-Oriented Programming Implementing Client/Server Architectures Part (I of?) (Lecture Notes 5A) Professor: A. Rodriguez CHAPTER 1 IMPLEMENTING CLIENT/SERVER APPLICATIONS...

More information

SD Mode SD Memory Card Driver Firmware Integration Technology

SD Mode SD Memory Card Driver Firmware Integration Technology APPLICATION NOTE RX Family R01AN4233EJ0202 Rev.2.02 Introduction This application note describes the SD Mode SD Memory Card driver which uses Firmware Integration Technology (FIT). This driver controls

More information

This section provides an overview of developing with the BillQuick Software Development Kit.

This section provides an overview of developing with the BillQuick Software Development Kit. BillQuickSDK Introduction This section provides an overview of developing with the BillQuick Software Development Kit. System Requirements Getting Started with the BillQuick SDK What s in the Software

More information

SDK-S User Manual K-21-A ( ) 1 Copyright 2013 B&W Tek, Inc.

SDK-S User Manual K-21-A ( ) 1 Copyright 2013 B&W Tek, Inc. SDK-S User Manual 290020026-K-21-A 2013-05-06) 1 Copyright 2013 B&W Tek, Inc. Important Changes & Compatibility 5 Introduction 5 Version 5 Installation 6 USB 3.0/2.0/1.1 Interface Spectrometers 11 USB

More information

vcan API USER GUIDE v1.0 Date : 18th December 2016

vcan API USER GUIDE v1.0 Date : 18th December 2016 vcan API USER GUIDE v1.0 Date : 18 th December 2016 Chapter 1. Overview The vcan CAN Bus Analyzer API (Application Programming Interface) is designed to allow the vcan CAN BUS analyzer devices to be easily

More information

Getting started. Creating a simple IOlog SS3000 modules Modbus Rtu application

Getting started. Creating a simple IOlog SS3000 modules Modbus Rtu application Getting started Creating a simple IOlog SS3000 modules Modbus Rtu application Document revision Date Edition Comments 01/07/2010 1.0 - Sielco Sistemi srl via Roma, 24 I-22070 Guanzate (CO) http://www.sielcosistemi.com

More information

IDEA 3.4 Upgrade Instructions

IDEA 3.4 Upgrade Instructions Purpose: Procedure to upgrade an existing IDEA installation to IDEA 3.4. Overview: The upgrade procedure consists of uninstalling any previous version of IDEA and drivers. Then installing the new IDEA

More information

USB-L111. USB-L111 User Manual TPM. Version: V M05. To properly use the product, read this manual thoroughly is necessary.

USB-L111. USB-L111 User Manual TPM. Version: V M05. To properly use the product, read this manual thoroughly is necessary. USB-L111 USB-L111 User Manual Version: V1.0 2012M05 To properly use the product, read this manual thoroughly is necessary. Part No.: 81-0211100-010 1 Revision History Date Revision Description 2011/8/5

More information

Artemis SDK. Copyright Artemis CCD Limited October 2011 Version

Artemis SDK. Copyright Artemis CCD Limited October 2011 Version Artemis SDK Copyright Artemis CCD Limited October 2011 Version 3.55.0.0 Introduction The Artemis Software Development Kit (SDK) provides easy access to the functions in the Artemis camera driver DLL. Using

More information

EE 109 Lab 8a Conversion Experience

EE 109 Lab 8a Conversion Experience EE 109 Lab 8a Conversion Experience 1 Introduction In this lab you will write a small program to convert a string of digits representing a number in some other base (between 2 and 10) to decimal. The user

More information

Versions. Q.station Q.station T. Q.station D. Q.station DT x x

Versions. Q.station Q.station T. Q.station D. Q.station DT x x Most important features: Very high data rates up to 100 khz each channel 100 khz at 16 channels, 10 khz at 128 channels 64 Q.bloxx modules connectable Ethernet interface for configuration and data output

More information

USB 1608G Series USB Multifunction Devices

USB 1608G Series USB Multifunction Devices USB Multifunction Devices Features 16-bit high-speed USB devices Acquisition rates ranging from 250 ks/s to 500 ks/s differential (DIFF) or 16 singleended (SE) analog inputs (softwareselectable) Up to

More information

OtO Photonics. Sidewinder TM Series Datasheet. Description

OtO Photonics. Sidewinder TM Series Datasheet. Description OtO Photonics Sidewinder TM Series Datasheet Description SW (Sidewinder TM ) Series spectrometer,built with the InGaAs type sensor and high performance 32bits RISC controller in, is specially designed

More information

Model JI-300 I2C Host Adapter

Model JI-300 I2C Host Adapter Model JI-300 I2C Host Adapter User s Manual Jupiter Instruments Version 1.1 10/25/2007 Edition JI-300 1 4/5/07 TABLE OF CONTENTS 1. INTRODUCTION 4 1.1 Front Panel Description 5 1.2 Rear Panel Description

More information

Perform Manual System Restore Xp Recovery Console

Perform Manual System Restore Xp Recovery Console Perform Manual System Restore Xp Recovery Console chkdsk in Windows XP Recovery Console If you can't boot the operating system, you can run the tool from Command Prompt either by booting your computer.

More information

Data editing software EZED3

Data editing software EZED3 HL-17149 Data editing software EZED3 OPERATING MANUAL Thank you for purchasing an Oriental Motor product. This Operating Manual describes product handling procedures and safety precautions. Please read

More information

SOFTWARE DC4D MONITOR

SOFTWARE DC4D MONITOR THQtronic SOFTWARE DC4D MONITOR Communication between PC and DigiLSU can be achieved only with the cable USB-TTL from FTDI. Reference TTL-232R-5V-AJ is sold as an option. DC4D Monitor is the same application

More information

NISSAN ECU FLASH REPROGRAMMER FOR WINDOWS (Ver. 1.00) INSTRUCTION MANUAL

NISSAN ECU FLASH REPROGRAMMER FOR WINDOWS (Ver. 1.00) INSTRUCTION MANUAL NISSAN ECU FLASH REPROGRAMMER FOR WINDOWS (Ver. 1.00) INSTRUCTION MANUAL !! NOTE and CAUTION!! Thank you for purchasing the TECHTOM Flash Reprogrammer. Please read and follow the instructions carefully

More information

ZS-6220 Series USB-PIO Adapter

ZS-6220 Series USB-PIO Adapter ZS-6220 Series USB-PIO Adapter User s Manual Zip code: 183-0027 2-13-37, Honmachi, Fuchu, Tokyo, Japan TEL: +81-(0)42-368-2126 FAX: +81-(0)42-364-0067-1 - Table of contents 1. Outline... 3 2. Fearture...

More information

DCAMAPI Library for LabVIEW

DCAMAPI Library for LabVIEW DCAMAPI Library for LabVIEW June 2004 Version 2.3 Overview...4 System Requirement...4 Installation...5 DCAMAPI Functions...6 Initialize and Finalize Functions...6 DCAM_INIT.VI... 6 DCAM_OPEN.VI... 6 DCAM_CLOSE.VI...

More information

DTSX3000 Communications(Modbus) Guide

DTSX3000 Communications(Modbus) Guide User s Manual DTSX3000 Communications(Modbus) Guide First Edition Blank Page < Introduction > i Introduction About this Manual Thank you for purchasing the DTSX3000 Distributed Temperature Sensor. This

More information

OEM API Specification

OEM API Specification OEM API Specification For Wasatch Photonics OEM Spectrometers WasatchDevices.com Revised 2016-08-26 Page 1 Revision Log Revision Date By Reason 1.0 2016-08-29 J. Traud Initial Release Contents General

More information

Wavy for PAX Ver. 4.0

Wavy for PAX Ver. 4.0 Operation Manual Sequence Creation Software Wavy for PAX Ver. 4.0 SPEC70289 Version 4.0 Prepared: June 21, 2006 KIKUSUI ELECTRONICS CORPORATION 1/34 Contents Note Before contacting us to request repair,

More information

Q Series - Q.station 101 Test Controller

Q Series - Q.station 101 Test Controller Q Series - Q.station 101 Test Controller The Q.series has been designed for demanding measurements found in today s most industrial measuring and testing environments. The range of applications starts

More information

Firmware Update Instruction Manual

Firmware Update Instruction Manual Firmware Update Instruction Manual This manual explains the procedures for downloading the GR DIGITAL II firmware from the Ricoh website and updating the camera s firmware. Perform the following operations

More information

SP8 Programmers. User's Guide. TEL: FAX: WEB: Publication Release Date: August 2011 Revision A1

SP8 Programmers. User's Guide. TEL: FAX: WEB:  Publication Release Date: August 2011 Revision A1 SP8 Programmers SHENZHEN SOFI TECHNOLOGY CO.,LTD. TEL: 0755-8486 7757 FAX: 0755-8486 7941 WEB: www.sofi-tech.com Publication Release Date: August 2011 Revision A1 Contents Chapter 1. Introduction into

More information

MEphisto Scope 1 A D. Prozessor-Steuerung. Interner Daten-/Steuer-Bus. Digital I/O-Teil

MEphisto Scope 1 A D. Prozessor-Steuerung. Interner Daten-/Steuer-Bus. Digital I/O-Teil Block Diagram MEphisto Scope 1 V1.1 Kanal A A D * Werte- Speicher Kanal B A D (256 ks) Prozessor-Steuerung 26polige Sub-D Buchse Ext. Trigger 24 bits Digital I/O-Teil Interner Daten-/Steuer-Bus MEphisto

More information

NEC ExpressUpdate Functions and Features. September 20, 2012 Rev. 4.0

NEC ExpressUpdate Functions and Features. September 20, 2012 Rev. 4.0 September 20, 2012 Rev. 4.0 Table of Contents Table of Contents...- 2 - Table of Figures...- 5 - Trademarks...- 9 - Notes...- 9 - About this Document...- 9 - Symbols in this Document...- 9 - Terminology...-

More information

RS Stock No Instruction Manual RS Input Data Logging Thermometer

RS Stock No Instruction Manual RS Input Data Logging Thermometer RS Stock No. 730-0458 Instruction Manual RS-1384 4 Input Data Logging Thermometer EN FR IT DE ES TABLE OF CONTENTS / EN TITLE TABLE OF CONTENTS PAGE 1. INTRODUCTION FEATURE... 1 2. SPECIFICATIONS... 2

More information

Installer Manual Installer

Installer Manual Installer EPSON OPOS ADK MANUAL Version 2.67 Jun. 2010 Notes (1) Reproduction of any part of this documentation by any means is prohibited. (2) The contents of this documentation are subject to change without notice.

More information

Wireless LAN USB Adapter WLA-54L

Wireless LAN USB Adapter WLA-54L Wireless LAN USB Adapter WLA-54L QUICK START GUIDE Version 1.7 2007/08/06 44/07 1. Box contents 2. Install Driver / Utility For Windows XP: Please check if your PC/Notebook contains a wireless device management

More information

SensIT Test and Measurement Version Software Manual

SensIT Test and Measurement Version Software Manual SensIT Test and Measurement Version 2.1.4000.0 Software Manual 10 Thomas, Irvine, CA 92618, USA Toll Free: (800) 23-FUTEK Telephone: (949) 465-0900 Fax: (949) 465-0905 futek@futek.com www.futek.com 2 Table

More information

APPLICATION NOTE R8C, M16C, M32C

APPLICATION NOTE R8C, M16C, M32C APPLICATION NOTE R8C, M16C, M32C 1. Abstract Since the internal flash of a Renesas R8C/M16C/M32C microcontroller can be erased and programmed in-circuit, an application has been created in order to eliminate

More information

Printer Driver Manual. Rev.1.00 DPB Professional Photo Quality printer P5A-F7103

Printer Driver Manual. Rev.1.00 DPB Professional Photo Quality printer P5A-F7103 Printer Driver Manual Rev.1.00 DPB - 6000 Professional Photo Quality printer P5A-F7103 2 Contents 1. Installation of Printer Driver 1. For Windows XP ----------------------------------------------------------------------4

More information

Chapter 6: VB.net Program Running In Wincon Access To ISaGRAF Variables

Chapter 6: VB.net Program Running In Wincon Access To ISaGRAF Variables Chapter 6: VB.net Program Running In Wincon Access To ISaGRAF Variables This chapter lists the procedure for creating the first demo program by Visual Studio.NET development tool. The ISaGRAF driver of

More information

Manual Software Firmware Loader V1.1

Manual Software Firmware Loader V1.1 Manual Software Firmware Loader V1.1 (PC software for Microsoft Windows XP, VISTA, 7, 10) This manual describes the installation of the Firmware Loader PC software and as a support for starting up the

More information

BATS Europe FAST PITCH Specification

BATS Europe FAST PITCH Specification BATS Europe FAST PITCH Specification Version 2.1 30 November 2010 BATS Trading Limited is authorised and regulated by the Financial Services Authority. BATS Trading Limited is a wholly-owned subsidiary

More information

Wavy for PLZ-4W Ver. 5.3

Wavy for PLZ-4W Ver. 5.3 T.Shimbo 14 8 6 Operation Manual Sequence Creation Software Y.Oyama 14 8 6 Wavy for PLZ-4W Ver. 5.3 Version 5.3 Prepared: August, 2014 KIKUSUI ELECTRONICS CORPORATION 1/38 Note Before contacting us to

More information

USB Interrupt Transfer Example PSoC 3 / PSoC 5

USB Interrupt Transfer Example PSoC 3 / PSoC 5 USB Interrupt Transfer Example PSoC 3 / PSoC 5 Project Objective This code example demonstrates how to perform USB Interrupt Transfer from a PC using the USB HID driver and PSoC 3 device. Overview USB

More information