Search found 2 matches

by lrbouchard
Thu May 18, 2023 3:28 pm
Forum: ESP32 Arduino
Topic: esp_dmx + ArtnetWifi
Replies: 1
Views: 1782

Re: esp_dmx + ArtnetWifi

Hi,

Found the problem, dataDMX had to start at index [1] while data had to start at index [0]...

for (int i = 0; i < length; i++) {
dataDMX[i+1] = data;

}
by lrbouchard
Thu May 18, 2023 2:41 am
Forum: ESP32 Arduino
Topic: esp_dmx + ArtnetWifi
Replies: 1
Views: 1782

esp_dmx + ArtnetWifi

Hi, I'm trying to use the esp_dmx library (https://github.com/someweisguy/esp_dmx) with the ArtnetWifi library (https://github.com/rstephan/ArtnetWifi) to make a simple Art-Net to DMX node. I can easily send DMX with esp_dmx library and I can easily receive Art-Net with ArtnetWifi, but I'm unable to...