dmx512

unable to open a connection with a FTD 232 device

て烟熏妆下的殇ゞ 提交于 2021-01-29 22:34:01
问题 I am trying to open a connection and pass a value for a given channel In order to do this I need to open a connection to the enttec open dmx usb. But I am unable to create a connection I tried to list devices and make sure the SN matches with the HW In [34]: import ftd2xx as ft In [35]: ft.listDevices() Out[35]: [b'AL05J8AO'] In [36]: ftd2xx.openEx('AL05J8AO', ftd2xx.ftd2xx.OPEN_BY_SERIAL_NUMBER) --------------------------------------------------------------------------- DeviceError Traceback

unable to open a connection with a FTD 232 device

帅比萌擦擦* 提交于 2021-01-29 22:13:58
问题 I am trying to open a connection and pass a value for a given channel In order to do this I need to open a connection to the enttec open dmx usb. But I am unable to create a connection I tried to list devices and make sure the SN matches with the HW In [34]: import ftd2xx as ft In [35]: ft.listDevices() Out[35]: [b'AL05J8AO'] In [36]: ftd2xx.openEx('AL05J8AO', ftd2xx.ftd2xx.OPEN_BY_SERIAL_NUMBER) --------------------------------------------------------------------------- DeviceError Traceback

unable to open a connection with a FTD 232 device

孤街醉人 提交于 2021-01-29 20:52:37
问题 I am trying to open a connection and pass a value for a given channel In order to do this I need to open a connection to the enttec open dmx usb. But I am unable to create a connection I tried to list devices and make sure the SN matches with the HW In [34]: import ftd2xx as ft In [35]: ft.listDevices() Out[35]: [b'AL05J8AO'] In [36]: ftd2xx.openEx('AL05J8AO', ftd2xx.ftd2xx.OPEN_BY_SERIAL_NUMBER) --------------------------------------------------------------------------- DeviceError Traceback

Access struct as array of bytes

杀马特。学长 韩版系。学妹 提交于 2019-12-09 22:50:27
问题 I'm currently in the process of re-writing a program to process data received over a serial connection using the RDM protocol, each packet is received by a UART and has a specific structure but may vary in length, a packet structure example is below, assuming the number of bytes in the packet to be n (this may change depending on the contents of the packet) What I want to do is define a struct in my C code that has the various parameters defined, but to be able to read and write bytes to/from

Access struct as array of bytes

孤人 提交于 2019-12-04 16:01:31
I'm currently in the process of re-writing a program to process data received over a serial connection using the RDM protocol , each packet is received by a UART and has a specific structure but may vary in length, a packet structure example is below, assuming the number of bytes in the packet to be n (this may change depending on the contents of the packet) What I want to do is define a struct in my C code that has the various parameters defined, but to be able to read and write bytes to/from the struct from the UART as though the struct is just an array of uint8_t. My issue with this is that

Lighting USB OpenDMX FTD2XX DMXking

蹲街弑〆低调 提交于 2019-12-01 22:01:57
问题 Couple of quick questions. I have a DMX king USB lighting controller that I'm trying to control. It's based on the Open DMX protocol (from Entec) who make available a c# class. I've got the device plugged into an RGB can, and if I test the USB device with their driver, it connects to COM4 and when I switch their software into transmit mode, I can then set individual DMX channels. Using their OpenDMX class, with a few modifications (the core is the same, i've just added some extra error

Lighting USB OpenDMX FTD2XX DMXking

点点圈 提交于 2019-12-01 21:28:41
Couple of quick questions. I have a DMX king USB lighting controller that I'm trying to control. It's based on the Open DMX protocol (from Entec) who make available a c# class. I've got the device plugged into an RGB can, and if I test the USB device with their driver, it connects to COM4 and when I switch their software into transmit mode, I can then set individual DMX channels. Using their OpenDMX class, with a few modifications (the core is the same, i've just added some extra error checking, I can locate the device, query it's information etc. When I open the device I get a handle. I can

FTDI Communication with USB device - Objective C

谁都会走 提交于 2019-11-29 00:03:01
I'm trying to communicate with the Enttec USB DMX Pro. Mainly receiving DMX. They released a Visual C++ version here , but I'm a little stumped on what to do to convert to Obj-c. Enttec writes, "Talk to the PRO using FTDI library for Mac, and refer to D2XX programming guide to open and talk to the device." Any example apps for Objective-C out there? Is there an easy way to communicate with the Enttec DMX USB Pro? Brad Larson I've done a significant amount of work with the FTDI chips on the Mac, so I can provide a little insight here. I've used the single-channel and dual-channel variants of

FTDI Communication with USB device - Objective C

我与影子孤独终老i 提交于 2019-11-27 15:24:59
问题 I'm trying to communicate with the Enttec USB DMX Pro. Mainly receiving DMX. They released a Visual C++ version here, but I'm a little stumped on what to do to convert to Obj-c. Enttec writes, "Talk to the PRO using FTDI library for Mac, and refer to D2XX programming guide to open and talk to the device." Any example apps for Objective-C out there? Is there an easy way to communicate with the Enttec DMX USB Pro? 回答1: I've done a significant amount of work with the FTDI chips on the Mac, so I