A python module to control Delcom USBLMP Products 904x multi-color, USB, visual signal indicators
Project description
delcom904x
delcom904x is a python class and command-line script to control the Delcom Products 904x series multi-color visual signal indicators. These are USB HID devices that are easily controllable from most platforms.
It has been tested with the 904005-SB but should work with any of the other models without any issues. The yellow in the green, red and yellow indicators is wired the same as blue. There also doesn't appear to be a method of detecting if the attached indicator supports blue or yellow, so blue and yellow commands are synonyms.
Installation
$ pip install delcom904x
$ control_delcom904x --green --red --flash --cycle
control-delcom904x
usage
-h, --help show this help message and exit
--list List all USB devices.
--info Returns info on the device.
--red Enable the red light.
--green Enable the green light.
--blue Enable the blue light.
--yellow Enable the yellow light (if equipped; synonym for blue).
--flash Turns on flashing.
--cycle [100] Turns on cycling.
--intensity [80] Sets brightness: 0-100.
--buzzer Buzzes three times.
--reset Resets the device.
Python Code Example
import delcom904x
light = delcom904x.DelcomMultiColorIndicator()
light.set_color(delcom904x.red, flashing=True)
udev Notes
On Linux machines, the default udev rulesets may set the permissions on the device to only
be accessible to the root user. Add the following rule to /etc/udev/rules.d/
and
re-plugin the indicator to allow all users to access the device (optionally, consider
changing MODE="0666"
to GROUP="dialout"
to allow only the dialout group access).
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0fc5", ATTRS{idProduct}=="b080", MODE="0666"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file delcom904x-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: delcom904x-0.4.0-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 736dae319af4ac55b108c1e5a649b2d3cde364e448be808f9e67d0e7e8069517 |
|
MD5 | 1a5bef93f5219cb88791309edd556fdb |
|
BLAKE2b-256 | 6a96e215b2f9e53f4d4d04a6d8fcd1654c95ee9b97db9cf0f97610cafe711707 |