The Open Lighting Project has moved!
We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
Difference between revisions of "OLA Device Specific Configuration"
From wiki.openlighting.org
(→Velleman VM166 / K8062) |
|||
Line 34: | Line 34: | ||
If you're installed from source you'll need the codeless KEXT which is available [http://code.google.com/p/linux-lighting/downloads/detail?name=libdmxusbshield.dmg| here]. If you installed OLA from the mac binary package this is already included. | If you're installed from source you'll need the codeless KEXT which is available [http://code.google.com/p/linux-lighting/downloads/detail?name=libdmxusbshield.dmg| here]. If you installed OLA from the mac binary package this is already included. | ||
+ | |||
+ | ===Linux=== | ||
+ | |||
+ | You need a [http://www.reactivated.net/writing_udev_rules.html udev rule] like this in /etc/udev/rules.d/10-local.rules | ||
+ | |||
+ | <pre> | ||
+ | # udev rules file for the velleman dmx device | ||
+ | SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="10cf", ATTRS{idProduct}=="8062", GROUP="plugdev" | ||
+ | </pre> | ||
+ | |||
+ | Then make sure the user olad runs as is a member of plugdev. |
Revision as of 17:02, 28 March 2010
StageProfi
This comes in two flavors, a USB model and an Ethernet/IP model.
device = /dev/ttyUSB0 device = 192.168.1.250
USB Pro
Mac
Make sure you install the drives: http://www.ftdichip.com/Drivers/VCP.htm
After a restart run:
ls /dev/cu.usbserial-*
Make sure your ~/.ola/ola-usbpro.conf file matches the path above:
device_dir = /dev device_prefix = ttyUSB device_prefix = cu.usbserial-
i.e. Look for devices at /dev/ttyUSB* , /dev/cu.usbserial-*
OLA also comes with a tool to update the firmware on a USB Pro:
./tools/usbpro_firmware -d /dev/cu.usbserial-0000101D -f <firmware_file>
Velleman VM166 / K8062
Mac
If you're installed from source you'll need the codeless KEXT which is available here. If you installed OLA from the mac binary package this is already included.
Linux
You need a udev rule like this in /etc/udev/rules.d/10-local.rules
# udev rules file for the velleman dmx device SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="10cf", ATTRS{idProduct}=="8062", GROUP="plugdev"
Then make sure the user olad runs as is a member of plugdev.