From 8aa6e2e143c2ccf33b9e22675604e7df33ecb53b Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Sun, 2 Dec 2018 18:15:25 +0100 Subject: [PATCH] bugfix lopy/pins_arduino.h (#2135) Correction of Pin A14 that was double defined. --- variants/lopy/pins_arduino.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variants/lopy/pins_arduino.h b/variants/lopy/pins_arduino.h index bfe15efb..5e2fc88a 100644 --- a/variants/lopy/pins_arduino.h +++ b/variants/lopy/pins_arduino.h @@ -50,7 +50,7 @@ static const uint8_t A11 = 0; static const uint8_t A12 = 2; static const uint8_t A13 = 15; static const uint8_t A14 = 13; -static const uint8_t A14 = 12; +static const uint8_t A15 = 12; static const uint8_t A16 = 14; static const uint8_t A17 = 27; static const uint8_t A18 = 25;