DMX485
Requirements
This script requires pyserial.
pip install --user pyserial
Installation
Install from pip:
pip install --user dmx485
Install from source:
python setup.py install
Hardware Compatibility
This should work with any FTDI RS485 dongle or any of the similar knock-offs.
FTDI to RS485 cheap dongle:
Hardware Example
https://stevenbreuls.com/2013/05/diy-usb-dmx-dongle-interface-for-under-10/
Usage
First create an instance of dmx.DMX_Serial(), then start the background thread. Once that is running the dongle will begin sending a full DMX universe. To change the value of a channel use set_data(). This function takes a bytes() object with 512 bytes, each representing a single DMX channel. It will be sent on the next DMX refresh.
import time
import dmx
sender = dmx.DMX_Serial()
sender.start()
for i in range(200):
if i % 2:
sender.set_data(bytes((255,)*512))
else:
sender.set_data(bytes((0,)*512))
time.sleep(1)
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dmx485-1.2.1.tar.gz.
File metadata
- Download URL: dmx485-1.2.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/1.12.2 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac51cb3892625427408a59f03f5da73f77c6aa9fb6189507f305c72428dada11
|
|
| MD5 |
62ff8fd9a0330a41db3f79a5f1140a38
|
|
| BLAKE2b-256 |
61cd9a40d67cac651448d86bf6e8e3a13df5d08c1a7b3980f47945628a14e807
|