Skip to content

Commit 5344357

Browse files
committed
V1.1.2 - examples adapted
1 parent efb7e89 commit 5344357

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/bma020FlexWire/bma020FlexWire.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include <FlexWire.h>
88

9-
FlexWire Wire = FlexWire(A4, A5);
9+
FlexWire Wire = FlexWire(2, 3);
1010

1111
#define BMAADDR 0x38
1212

examples/i2cscanFlexWire/i2cscanFlexWire.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
#include <FlexWire.h>
3636

37-
FlexWire Wire = FlexWire(A4, A5, false);
37+
FlexWire Wire = FlexWire(2, 3, false);
3838

3939
void setup()
4040
{

examples/simpleFlexWire/simpleFlexWire.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#include <FlexWire.h>
99

10-
FlexWire Wire = FlexWire(A4, A5);
10+
FlexWire Wire = FlexWire(2, 3);
1111

1212
void setup(void) {
1313
Serial.begin(57600);

0 commit comments

Comments
 (0)