1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

I2C pin assignment fix (#7416)

There was a typo in I2C pin assignment, SCL was set to GPIO #4 instead of GPIO #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
This commit is contained in:
DanKoloff 2020-06-30 19:14:43 +03:00 committed by GitHub
parent d85ff6efc4
commit b706fd4d59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@
#define Pins_Arduino_h
#define PIN_WIRE_SDA (2)
#define PIN_WIRE_SCL (4)
#define PIN_WIRE_SCL (14)
static const uint8_t SDA = PIN_WIRE_SDA;
static const uint8_t SCL = PIN_WIRE_SCL;