USB - I/O Interface with D0-7, Adress, RD, WR, CS
USB-CONTROLLER-8
19% VAT
USB - I/O Interface with D0-7, Adress, RD, WR, CS
- D0-7 (8x TTL I/O)
- A0-4 (5x TTL-Out)
- RD (TTL-Out)
- WR (TTL-Out)
- CS (TTL-Out)
The USB-I/O interface helps to simplify the complex data of the USB-bus system. It provides a simple control of a 8bit databus with low afford. Previous knowledge about USB are not required cause of a seperate software that provides read and write commands.

We offer to our USB - I/O interface to a programming example.
(Further to programming example)

Configuration of USB modules
A configuration of a USB product is not needed - this complete the driver with their Plug and Play mechanism.
Working with several modules
Are more than one USB products working on a system, the driver library differentiate between these modules.
Every brand new USB product has the ID "0". The ID can be changed by the DELIB-Configuratin Utility and will be stored in an EEPROM on the module.
So you can use up to eight identical modules on one pc.
Working with several modules on one pc
| DELIB-Configuration Utility für USB Module |
|
Click to enlarge ![]() |

|

Controlling by the DELIB DLL under Windows
The DELIB DLL allows a standard responsing of all DEDITEC measurement modules. For this we provide all functions of our products to the software engineer.
Simple testprogram with example for digital inputs
| Digital Input/Output Sample Testprogramm für Module |
|
Click to enlarge ![]() |
With this tool you can test our products very easily. It is easy to handle and supports all modules of DEDITEC. The example above shows a test of a RO-USB-O32 input module.
Examples for responsing our products with "C"
In the following example we show you in "C", how to access to our input modules in short time.
1. Step: Open the module
handle = DapiOpenModule(RO-USB,0); // Open USB-module
2. Step: Reading of 16 digital inputs
data = DapiDIGet16(handle, 0); // Read the first 16 digital inputs
3. Step: Close the module
DapiCloseModule(handle); // Close the module
The function "DapiOpenModule" is used to open a special kind of module.
Which module should be openend, is defined by the the two parameter.
The first parameter is for the "module ID". By the integrated "DELIB.H", you can also set this parameter to "RO-USB1".
So the driver library recognize, that an ethernet interface will be driven.
The second parameter assigns the module number. If only one module is connected to the pc, the module number is "0". Are there more than one modules in the network, you have to set the correct number.
Controlling of more than one USB-modules
Example for opening several modules on one pc:
Open a module with ID "1"
handle1 = DapiOpenModule(RO-USB1,1); // open USB-module with ID=1
Open a module with ID "4"
handle2 = DapiOpenModule(RO-USB1,4); // open USB-module with ID=4
Overview about available DELIB-Functions
General Handling
DAPIOpenModule
ULONG DapiOpenModule(ULONG moduleID, ULONG nr);
This function opens a particular module.
DapiCloseModule
ULONG DapiCloseModule(ULONG handle);
This command closes an opened module.
DapiGetLastError
ULONG DapiGetLastError();
This function returns the last registered error.
DapiGetLastErrorText
ULONG DapiGetLastErrorText(unsigned char * msg, unsigned long msg_length);
This function reads the text of the last registered error.
Digital input functions
DapiDIGet1
ULONG DapiDIGet1(ULONG handle, ULONG ch);
This command reads a single digit input.
DapiDIGet8
ULONG DapiDIGet8(ULONG handle, ULONG ch);
This command reads 8 digital inputs simultaneously.
DapiDIGet16
ULONG DapiDIGet16(ULONG handle, ULONG ch);
This command reads 16 digital inputs simultaneously.
DapiDIGet32
ULONG DapiDIGet32(ULONG handle, ULONG ch);
This command reads 32 digital inputs simultaneously.
DapiDIGet64
ULONGLONG DapiDIGet64(ULONG handle, ULONG ch);
This command reads 64 digital inputs simultaneously.
Digital output functions
DapiDOSet1
void DapiDOSet1(ULONG handle, ULONG ch, ULONG data);
This is the command to set a single output.
DapiDOSet8
void DapiDOSet8(ULONG handle, ULONG ch, ULONG data);
This command sets 8 digital outputs simultaneously.
DapiDOSet16
void DapiDOSet16(ULONG handle, ULONG ch, ULONG data);
This command sets 16 digital outputs simultaneously.
DapiDOSet32
void DapiDOSet32(ULONG handle, ULONG ch, ULONG data);
This command sets 32 digital outputs simultaneously.
DapiDOSet64
void DapiDOSet64(ULONG handle, ULONG ch, ULONGLONG data);
This command is to set 64 digital outputs.
DapiDOReadback32
ULONG DapiDOReadback32(ULONG handle, ULONG ch);
This command reads back the 32 digital outputs.
DapiDOReadback64
ULONGLONG DapiDOReadback64(ULONG handle, ULONG ch);
This command reads back the 64 digital outputs.
Special functions
DapiSpecialCommand - DapiSpecialCMDTimeout
void DapiSpecialCommand(handle, DAPI_SPECIAL_CMD_TIMEOUT, cmd, par1, par2);
This command serves to set the timeout time
DapiSpecialCommand - DapiSpecialCMDTimeoutGetStatus
ULONG DapiSpecialCommand(handle, DAPI_SPECIAL_CMD_TIMEOUT, DAPI_SPECIAL_TIMEOUT_GET_STATUS, 0, 0);
This command reads the timeout status.

Manuals
Driver / Programs
DELIB driver library for Windows 7, Vista, XP and 2000
DELIB driver library for Windows 7, Vista, XP and 2000
Installation file for USB driver
supports the following operating systems: 32 Bit:
- Windows 7
- Windows Server 2008
- Windows Vista
- Windows XP
- Windows Server 2003
- Windows 2000
64 Bit:
- Windows 7 x64
- Windows Server 2008 x64
- Windows Vista x64
- Windows XP x64
- Windows Server 2003 x64
Manual for DELIB Driver Library for Windows 7, Windows Vista, XP and 2000
Manual for DELIB Driver Library for Windows 7, Windows Vista, XP and 2000 Documentation of all functions
- module open/close functions
- Digital Input read 1 / 8 / 16 / 32 / 64 bit
- Digital Output write 1 / 8 / 16 / 32 / 64 bit
- A/D Read, read_volt, read_mA, set A/D mode
- D/A Write, write_volt, write_mA, set D/A mode
Demo-Software
LabView Labview sample for analog and digital input/outputs
Labview sample for analog and digital input/outputs



