aboutsummaryrefslogtreecommitdiff
path: root/libraries/Wire/examples/slave_sender/slave_sender.ino
diff options
context:
space:
mode:
authorArturo Guadalupi <a.guadalupi@arduino.cc>2015-05-07 17:41:18 +0200
committerArturo Guadalupi <a.guadalupi@arduino.cc>2015-05-14 11:27:00 +0200
commit9a9760cc86e1684875e5fdb2f39e146042df9f72 (patch)
treedcbbe996d93c958568603db25c4c60011cb14495 /libraries/Wire/examples/slave_sender/slave_sender.ino
parentb682456e8e74dbbccb3e709b7838a8475902c00c (diff)
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.
Diffstat (limited to 'libraries/Wire/examples/slave_sender/slave_sender.ino')
-rw-r--r--libraries/Wire/examples/slave_sender/slave_sender.ino2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Wire/examples/slave_sender/slave_sender.ino b/libraries/Wire/examples/slave_sender/slave_sender.ino
index 4437ab1..26b9e52 100644
--- a/libraries/Wire/examples/slave_sender/slave_sender.ino
+++ b/libraries/Wire/examples/slave_sender/slave_sender.ino
@@ -14,7 +14,7 @@
void setup()
{
- Wire.begin(2); // join i2c bus with address #2
+ Wire.begin(8); // join i2c bus with address #8
Wire.onRequest(requestEvent); // register event
}