From 9a9760cc86e1684875e5fdb2f39e146042df9f72 Mon Sep 17 00:00:00 2001 From: Arturo Guadalupi Date: Thu, 7 May 2015 17:41:18 +0200 Subject: Fixes #2969: This fixes the Wire examples that uses I2C reserved address (from 0 to 7) substituting them with 8 that is the first one available and that can be used. I also modified the wire reference http://www.arduino.cc/en/reference/wire according to this fact. --- libraries/Wire/examples/master_reader/master_reader.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libraries/Wire/examples/master_reader/master_reader.ino') diff --git a/libraries/Wire/examples/master_reader/master_reader.ino b/libraries/Wire/examples/master_reader/master_reader.ino index 74f0155..2d2419b 100644 --- a/libraries/Wire/examples/master_reader/master_reader.ino +++ b/libraries/Wire/examples/master_reader/master_reader.ino @@ -20,7 +20,7 @@ void setup() void loop() { - Wire.requestFrom(2, 6); // request 6 bytes from slave device #2 + Wire.requestFrom(8, 6); // request 6 bytes from slave device #8 while (Wire.available()) // slave may send less than requested { -- cgit v1.2.3-18-g5258