Skip to content

Commit 61b212d

Browse files
committed
Added i2c_scanner examples to Wire library for testing HWire and Wire
1 parent 3b8b7a7 commit 61b212d

2 files changed

Lines changed: 147 additions & 0 deletions

File tree

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
// --------------------------------------
2+
// i2c_scanner
3+
//
4+
// Version 1
5+
// This program (or code that looks like it)
6+
// can be found in many places.
7+
// For example on the Arduino.cc forum.
8+
// The original author is not know.
9+
// Version 2, Juni 2012, Using Arduino 1.0.1
10+
// Adapted to be as simple as possible by Arduino.cc user Krodal
11+
// Version 3, Feb 26 2013
12+
// V3 by louarnold
13+
// Version 4, March 3, 2013, Using Arduino 1.0.3
14+
// by Arduino.cc user Krodal.
15+
// Changes by louarnold removed.
16+
// Scanning addresses changed from 0...127 to 1...119,
17+
// according to the i2c scanner by Nick Gammon
18+
// http://www.gammon.com.au/forum/?id=10896
19+
// Version 5, March 28, 2013
20+
// As version 4, but address scans now to 127.
21+
// A sensor seems to use address 120.
22+
// Version 6, August 1, 2015
23+
// Modified to support HardWire for STM32duino
24+
//
25+
// This sketch tests the standard 7-bit addresses
26+
// Devices with higher bit address might not be seen properly.
27+
//
28+
29+
#include <HardWire.h>
30+
31+
HardWire HWire(1, I2C_FAST_MODE); // I2c1
32+
33+
void setup() {
34+
HWire.begin();
35+
Serial.println("\nI2C Scanner");
36+
}
37+
38+
39+
void loop() {
40+
byte error, address;
41+
int nDevices;
42+
43+
Serial.println("Scanning...");
44+
45+
nDevices = 0;
46+
for(address = 1; address < 127; address++) {
47+
// The i2c_scanner uses the return value of
48+
// the Write.endTransmisstion to see if
49+
// a device did acknowledge to the address.
50+
51+
HWire.beginTransmission(address);
52+
error = HWire.endTransmission();
53+
54+
if (error == 0) {
55+
Serial.print("I2C device found at address 0x");
56+
if (address < 16)
57+
Serial.print("0");
58+
Serial.println(address, HEX);
59+
60+
nDevices++;
61+
}
62+
else if (error == 4) {
63+
Serial.print("Unknown error at address 0x");
64+
if (address < 16)
65+
Serial.print("0");
66+
Serial.println(address, HEX);
67+
}
68+
}
69+
if (nDevices == 0)
70+
Serial.println("No I2C devices found");
71+
else
72+
Serial.println("done");
73+
74+
delay(5000); // wait 5 seconds for next scan
75+
}
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
// --------------------------------------
2+
// i2c_scanner
3+
//
4+
// Version 1
5+
// This program (or code that looks like it)
6+
// can be found in many places.
7+
// For example on the Arduino.cc forum.
8+
// The original author is not know.
9+
// Version 2, Juni 2012, Using Arduino 1.0.1
10+
// Adapted to be as simple as possible by Arduino.cc user Krodal
11+
// Version 3, Feb 26 2013
12+
// V3 by louarnold
13+
// Version 4, March 3, 2013, Using Arduino 1.0.3
14+
// by Arduino.cc user Krodal.
15+
// Changes by louarnold removed.
16+
// Scanning addresses changed from 0...127 to 1...119,
17+
// according to the i2c scanner by Nick Gammon
18+
// http://www.gammon.com.au/forum/?id=10896
19+
// Version 5, March 28, 2013
20+
// As version 4, but address scans now to 127.
21+
// A sensor seems to use address 120.
22+
//
23+
// This sketch tests the standard 7-bit addresses
24+
// Devices with higher bit address might not be seen properly.
25+
//
26+
27+
#include <Wire.h>
28+
29+
30+
void setup() {
31+
Wire.begin();
32+
Serial.println("\nI2C Scanner");
33+
}
34+
35+
36+
void loop() {
37+
byte error, address;
38+
int nDevices;
39+
40+
Serial.println("Scanning...");
41+
42+
nDevices = 0;
43+
for(address = 1; address < 127; address++) {
44+
// The i2c_scanner uses the return value of
45+
// the Write.endTransmisstion to see if
46+
// a device did acknowledge to the address.
47+
48+
Wire.beginTransmission(address);
49+
error = Wire.endTransmission();
50+
51+
if (error == 0) {
52+
Serial.print("I2C device found at address 0x");
53+
if (address < 16)
54+
Serial.print("0");
55+
Serial.println(address, HEX);
56+
57+
nDevices++;
58+
}
59+
else if (error == 4) {
60+
Serial.print("Unknown error at address 0x");
61+
if (address < 16)
62+
Serial.print("0");
63+
Serial.println(address, HEX);
64+
}
65+
}
66+
if (nDevices == 0)
67+
Serial.println("No I2C devices found");
68+
else
69+
Serial.println("done");
70+
71+
delay(5000); // wait 5 seconds for next scan
72+
}

0 commit comments

Comments
 (0)