-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DMX read #3
Comments
we should add a real "read" function.. ;) |
may, it is sensible to rename the lib to "universalDMX". Then we have to add some code to change the pin 2 (ESP TX PIN) to the right TX pin (for example the Leonardo's TX PIN 1). |
It could be an option... I am developing this for use in a business I'm in (mobile music for parties, including dancefloors and robotic heads), as nobody knows how to use the "usual" DMX controller. My first idea was to make a webserver in the ESP to control DMX, but reading could be done too. |
For Arduino, DMXSimple Already exists, and it works really well. |
In my opinion, libraries witch runs on every hardware are better than separate librariesfor each hardware. But I think this is not nassosay if you want to expand the functions to an huge dmx tool for the ESP hardware. Importent for me is:
|
I hadnt read the last comment, but that's also my idea: control over distance and a command console in the ESP, and/or a GUI based on Electron. |
For the Mesh network we could use the library from ESP8266/Arduino |
I am also interested in having the ability to read DMX in as well as transmit it as I'd like to use the ESP8266 chips as the basis for some e1.31 Streaming ACN (sACN) transmit and receive nodes which is basically WiFi -> DMX and DMX -> WiFi. There are also cases where it would be useful to support the DMX-RDM protocol which some DMX devices use for bidirectional communication but this is less important to me. Some inspiration for adding DMX input functionality can be found on the Arduino page about it: http://playground.arduino.cc/Learning/DMX If I get some time I'll probably work on this, and then send a pull request but my time is quite limited right now as I have several higher priority projects going on. |
I'd also greatly appreciate bidirectional DMX-Communication for this Libary. |
Any news on this? |
Any good ideas how read dmx values? Can I just do like this: |
Hi! I need some help... I have created a sketch for controlling WS2812B LEDs via DMX. So, a Wemos D1 mini is a DMX node/receiver which shall be controlled by a DMX Mixer. As I was about to finalize my project I was recognizing that the receiving function within this library is missing or in other words was not fully implemented. I´d like to receive a DMX signal and the Wemos to act as a node to control the WS2812B strip. This library here is the only library I found to be able to handle DMX receiving function: Maybe this can be used as a reference to integrate functionality into ESPDMX.h? I hope there is a chance to get the receiving part running and I am looking forward to any help for this! |
hi i try to this examples and i try every rx pin but always i get 0 how can i read dmx data with esp8266 DMXESPSerial dmx; void setup() { void loop() { |
The read() function refers to reading the data from the DMX buffer in the chip.
The text was updated successfully, but these errors were encountered: