0

我有一个非常具体的问题:我想编写自己的 DMX 软件来控制我们的 DMX 灯具。有谁知道要使用的界面吗?如果有任何框架可以使用它会很棒,这样我只需将通道和值发送到接口。

4

2 回答 2

2

我注意到您的问题是针对 Mac 的,但我编写了一个特定于 Windows 的 C++ 程序,它可能很容易修改。它改编自 Enttec 的 OpenUSB 网站上的 C# 示例。见: https ://github.com/chloelle/DMX_CPP

于 2017-03-04T00:09:56.580 回答
0

There's some really good information & code samples (including a working class that I wrote) here: Lighting USB OpenDMX FTD2XX DMXking

Ultimately, you end up setting byte values (between 0 and 255[FF] (brightest) in a byte array. It's fairly trivial to implement simple effects such as fades or chases.

You would need to use a USB controller to convert your program's instructions to the actual hardware. I suggest using a simple iphone application talking to a webservice which then interacts with the hardware.

Code samples above are in c# though will show you how to interact with a DMX controller

于 2012-04-22T21:04:24.633 回答