Skip to content

Commit

Permalink
V1.1.2 - examples adapted
Browse files Browse the repository at this point in the history
  • Loading branch information
felias-fogg committed Dec 16, 2023
1 parent efb7e89 commit 5344357
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/bma020FlexWire/bma020FlexWire.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <FlexWire.h>

FlexWire Wire = FlexWire(A4, A5);
FlexWire Wire = FlexWire(2, 3);

#define BMAADDR 0x38

Expand Down
2 changes: 1 addition & 1 deletion examples/i2cscanFlexWire/i2cscanFlexWire.ino
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include <FlexWire.h>

FlexWire Wire = FlexWire(A4, A5, false);
FlexWire Wire = FlexWire(2, 3, false);

void setup()
{
Expand Down
2 changes: 1 addition & 1 deletion examples/simpleFlexWire/simpleFlexWire.ino
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include <FlexWire.h>

FlexWire Wire = FlexWire(A4, A5);
FlexWire Wire = FlexWire(2, 3);

void setup(void) {
Serial.begin(57600);
Expand Down

0 comments on commit 5344357

Please sign in to comment.