-
-
Notifications
You must be signed in to change notification settings - Fork 92
Closed
Labels
topic: codeRelated to content of the project itselfRelated to content of the project itselftype: imperfectionPerceived defect in any part of projectPerceived defect in any part of project
Description
The pins_arduino.h header files in MIMINA and UNOWIFIR4 directories are incorrectly defining the SCL symbol.
They are defining the SCL pin to be same as the SDA pin.
To fix this the pins_arduino.h header files for both/all variants
will need to change this:
static const uint8_t SDA = WIRE_SDA_PIN;
static const uint8_t SCL = WIRE_SDA_PIN;
to this
static const uint8_t SDA = WIRE_SDA_PIN;
static const uint8_t SCL = WIRE_SCL_PIN;
Metadata
Metadata
Assignees
Labels
topic: codeRelated to content of the project itselfRelated to content of the project itselftype: imperfectionPerceived defect in any part of projectPerceived defect in any part of project