From 63c31f1adfe1cd153b3545cff6a028cc17c0a45c Mon Sep 17 00:00:00 2001 From: Will Tatam Date: Thu, 30 Mar 2023 15:21:40 +0100 Subject: [PATCH] Add logger to show what port used for dmx input --- wled00/dmx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/wled00/dmx.cpp b/wled00/dmx.cpp index f20fbd8e..983ed20e 100644 --- a/wled00/dmx.cpp +++ b/wled00/dmx.cpp @@ -103,6 +103,7 @@ dmx_port_t dmxPort = 2; void initDMX() { /* Set the DMX hardware pins to the pins that we want to use. */ if(dmxReceivePin > 0) { + USER_PRINTF("Listening for DMX on pin %u\n", dmxReceivePin); dmx_set_pin(dmxPort, dmxTransmitPin, dmxReceivePin, dmxEnablePin); } else {