Skip to content

SCL is incorrectly defined in variants (pins_arduino.h) #81

Closed
@bperrybap

Description

@bperrybap

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 itselftype: imperfectionPerceived defect in any part of project

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions