ilLUTZmination.de back
uDMX-APIuDMX-API  Web // Projects // uDMX // uDMX-API
Home
Projects
uDMX
uDMX-mod
uDMX-firmware
uDMX driver
uDMX-artnet
uDMX plugins
uDMX-FAQ
uDMX-API
uDMX-links
uDMX-timing
Software
Security
Links
Search
Contact
Datenschutz

uDMX-API

You want to use uDMX-Interface with your own software and use uDMX.dll for that ?

Therefore uDMX.dll offers you 5 functions:

bool _stdcall     Configure() ;
bool _stdcall     Connected() ;
bool _stdcall     ChannelSet(long Channel, char Value) ;
bool _stdcall     ChannelsSet(long ChannelCnt, long Channel, char* Value) ;
bool _stdcall     Info() ;

 

Configure();

calls the setup-dialog. This should be implemented to make it possible to change several parameters. To read about the parameters see uDMX-driver

Connected();

the return-value gives the information, whether the uDMX-interface is connected or not.

ChannelSet(long Channel, char Value) ;

sets the channel "Channel" to the value "Value". Channel with values from 1 to 512, Values from 0 to 255.

ChannelsSet(long ChannelCnt, long Channel, char* Value) ;

sets the number of channels "ChannelCnt" beginning with channel "Channel" to the values of the pointer "Value".

Info();

shows a few infos concerning the DLL.

Sample

a little example written in Visual-Basic can be downloaded here.