From 9e1f8cc457eb214820150cdb16a90d9dd669ae08 Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Wed, 28 Nov 2018 11:47:11 +0100 Subject: [PATCH] Update pins_arduino.h (#2120) Bugfix: pin A14 was double defined; pin A15 was missing. --- variants/lopy4/pins_arduino.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variants/lopy4/pins_arduino.h b/variants/lopy4/pins_arduino.h index b1c1919c..ef75b472 100644 --- a/variants/lopy4/pins_arduino.h +++ b/variants/lopy4/pins_arduino.h @@ -48,7 +48,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;