Seeed Xiao ESP32C3 USB serial port #145
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Thanks for reaching out! This should be possible, though I haven't tried with this specific hardware. It appears that the TX and RX pins for UART0 are 21 and 20 by default. You would just need one more pin to use as the enable pin. It appears that all the other available pins on the Seeed board would work - perhaps you could use GPIO7. One thing you would have to ensure is that UART0 is not being used by the ESP32 for any other purpose. This can be particularly tricky because it is how messages are logged to the Serial Monitor. To forward DMX packets from one port to another, you would need to install two DMX drivers. One DMX driver would receive the DMX data and the second would be the forwarding port. In essence, you could use Hope this helps! Let me know if you have any other questions! |
Beta Was this translation helpful? Give feedback.
Thanks for reaching out! This should be possible, though I haven't tried with this specific hardware. It appears that the TX and RX pins for UART0 are 21 and 20 by default. You would just need one more pin to use as the enable pin. It appears that all the other available pins on the Seeed board would work - perhaps you could use GPIO7.
One thing you would have to ensure is that UART0 is not being used by the ESP32 for any other purpose. This can be particularly tricky because it is how messages are logged to the Serial Monitor.
To forward DMX packets from one port to another, you would need to install two DMX drivers. One DMX driver would receive the DMX data and the second would be the f…