From e33a0bf940529145cff46a297831046b11366f35 Mon Sep 17 00:00:00 2001 From: larrywal <43455985+larrywal@users.noreply.github.com> Date: Fri, 27 Nov 2020 15:19:49 -0800 Subject: [PATCH] Update custom32_LEDPIN_16 build config to use the right relay pin (#1385) The Quin-Dig-Quad has the relay pin on IO19 (Q3). However, it is on IO12 by default. Update the build flags for the custom32_LEDPIN_16 build to also move the relay pin to IO19 so it works properly with the board. --- platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio.ini b/platformio.ini index 5baf974de..c3cf2fc4e 100644 --- a/platformio.ini +++ b/platformio.ini @@ -407,7 +407,7 @@ build_flags = ${common.build_flags_esp8266} -D USE_WS2801 board = esp32dev platform = espressif32@2.0 build_unflags = ${common.build_unflags} -build_flags = ${common.build_flags_esp32} -D LEDPIN=16 +build_flags = ${common.build_flags_esp32} -D LEDPIN=16 -D RLYPIN=19 lib_ignore = ESPAsyncTCP ESPAsyncUDP