Skip to content

Commit 44e51bd

Browse files
authored
Fix: incorrect pin assignment for Wire SCL pin. (#83)
This fixes #81.
1 parent 99bbaef commit 44e51bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: variants/MINIMA/pins_arduino.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ static const uint8_t D15 = PIN_D15;
111111
#define WIRE_SCL_PIN 19 /* A5 */
112112

113113
static const uint8_t SDA = WIRE_SDA_PIN;
114-
static const uint8_t SCL = WIRE_SDA_PIN;
114+
static const uint8_t SCL = WIRE_SCL_PIN;
115115

116116
/****** SPI CORE DEFINES ******/
117117

Diff for: variants/UNOWIFIR4/pins_arduino.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ static const uint8_t D15 = PIN_D15;
115115
#define WIRE1_SCL_PIN 26
116116

117117
static const uint8_t SDA = WIRE_SDA_PIN;
118-
static const uint8_t SCL = WIRE_SDA_PIN;
118+
static const uint8_t SCL = WIRE_SCL_PIN;
119119

120120
/****** SPI CORE DEFINES ******/
121121

0 commit comments

Comments
 (0)