Giter VIP home page Giter VIP logo

circuitpython_dmx_transmitter's Introduction

Introduction

Documentation Status Discord Build Status Code Style: Black

DMX512 lighting protocol transmitter on the RP2040

Usage Example

"Blink a DMX-equipped light."

import time
import board

from dmx_transmitter import dmx_transmitter

# Wire DMX_PIN to an isolated RS485 line driver.

DMX_PIN = board.D0

dmx = dmx_transmitter.DMXTransmitter(first_out_pin=DMX_PIN)

# Blinking lights
while True:
    dmx.clear()  # Turn off the light(s)
    dmx.show()
    time.sleep(1)
    dmx[0:3] = 255  # Turn lights on full. DMX channels: 1, 2, 3,
    dmx.show()
    time.sleep(1)

# Note: The dmx index numbers are one (1) less than the DMX channel
#       number. This is by design.

Schematic

Example:

     ┌─────┐            ╔═════════════════╗
╔════╡USB-C╞════╗       ║                 ║
║    └─────┘    ║    ┌──╫(6) VCC          ║       ╔══════════════╗
║            3V ╫────┤  ║    __         Y ╫───────╫─< (3) Data + ║
║               ║    ├──╫(1) RE           ║  ┌────╫─< (2) Data - ║
║               ║    │  ║               Z ╫──┘ ┌──╫─< (1) Common ║
║               ║    └──╫(4) DE           ║    │  ╚══════════════╝
║         TX/DO ╫───┐   ║               A ╫ NC │   XLR Connector
║               ║   └───╫(2) TXD          ║    │   Female
║               ║       ║               B ╫ NC │
║               ║    NC ╫(3) RXD          ║    │
║           GND ╫──┐    ║          ISOGND ╫────┴────┐
║               ║  └────╫(5) GND          ║      ┌──┴───┐
║               ║       ║                 ║      │Earth │
╚═══════════════╝       ╚═════════════════╝      │Ground│
 Microcontroller         RS485 Line Driver       └──────┘
 Adafruit KB2040         Digilent PmodR485

Significant DMX wiring requirements are necessarily out of scope
in this document. Consult a qualified local expert.

REQUIREMENTS

Hardware:

Software and Dependencies:

  • Adafruit CircuitPython

  • This library, dmx_transmitter, especially these files:

    * dmx_transmitter.mpy
    * payload_USITT_DMX512_A.mpy
    

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle or individual libraries can be installed using circup.

Installing to a Connected CircuitPython Device with Circup

Make sure that you have circup installed in your Python environment. Install it with the following command if necessary:

pip3 install circup

With circup installed and your CircuitPython device connected use the following command to install:

circup install dmx_transmitter

Or the following command to update an existing version:

circup update

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

circuitpython_dmx_transmitter's People

Contributors

mydana avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.