Skip to content

Commit b706fd4

Browse files
authored
I2C pin assignment fix (esp8266#7416)
There was a typo in I2C pin assignment, SCL was set to GPIO esp8266#4 instead of GPIO esp8266#14, The schematic can be seen here: https://github.com/OLIMEX/ESP8266/blob/master/HARDWARE/MOD-WIFI-ESP8266-DEV/MOD-WiFi-ESP8266-DEV%20revision%20B1/MOD-WiFi-ESP8266-DEV_Rev_B1.pdf
1 parent d85ff6e commit b706fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

variants/modwifi/pins_arduino.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define Pins_Arduino_h
2828

2929
#define PIN_WIRE_SDA (2)
30-
#define PIN_WIRE_SCL (4)
30+
#define PIN_WIRE_SCL (14)
3131

3232
static const uint8_t SDA = PIN_WIRE_SDA;
3333
static const uint8_t SCL = PIN_WIRE_SCL;

0 commit comments

Comments
 (0)