You are on page 1of 6

Manuals and Curriculum

(https://playground.arduino.cc/Main/ManualsAndCurriculum)
Arduino StackExchange
(http://arduino.stackexchange.com)
Board Setup and Configuration
(https://playground.arduino.cc/Main/ArduinoCoreHardware)
Development Tools
(https://playground.arduino.cc/Main/DevelopmentTools)
Arduino on other Chips
(https://playground.arduino.cc/Main/ArduinoOnOtherAtmelChips)
Interfacing With Hardware
(https://playground.arduino.cc/Main/InterfacingWithHardware)
- Output
(https://playground.arduino.cc/Main/InterfacingWithHardware#Output)
- Input
(https://playground.arduino.cc/Main/InterfacingWithHardware#InputTOC)
- User Interface
(https://playground.arduino.cc/Main/InterfacingWithHardware#ui)
- Storage
(https://playground.arduino.cc/Main/InterfacingWithHardware#Storage)
- Communication
(https://playground.arduino.cc/Main/InterfacingWithHardware#Communication)
- Power supplies
(https://playground.arduino.cc/Main/IntWithHW-
PwrSup)
- General
(https://playground.arduino.cc/Main/InterfacingWithHardware#General)
Interfacing with Software
(https://playground.arduino.cc/Main/InterfacingWithSoftware)
User Code Library
(https://playground.arduino.cc/Main/GeneralCodeLibrary)
- Snippets and Sketches
(https://playground.arduino.cc/Main/SketchList)
- Libraries
(https://playground.arduino.cc/Main/LibraryList)
- Tutorials
(https://playground.arduino.cc/Main/TutorialList)
Suggestions & Bugs
(https://github.com/arduino/arduino/issues)
Electronics Technique
(https://playground.arduino.cc/Main/ElectroInfoResources)
Sources for Electronic Parts
(https://playground.arduino.cc/Main/Resources)
Related Hardware and Initiatives
(https://playground.arduino.cc/Main/SimilarBoards)
Arduino People/Groups & Sites
(http://playground.arduino.cc/Main/People)
Exhibition
(http://playground.arduino.cc/Projects/ArduinoUsers)
Project Ideas
(http://playground.arduino.cc/Projects/Ideas)
Languages
(https://playground.arduino.cc/Main/Languages)

Participate
(https://playground.arduino.cc/Main/Participate)
- Formatting guidelines
(https://playground.arduino.cc/Main/Participate#contribrules)
- All recent changes
(https://playground.arduino.cc/Site/AllRecentChanges)
- PmWiki
(https://playground.arduino.cc/PmWiki/PmWiki)
- WikiSandBox training
(https://playground.arduino.cc/Main/WikiSandbox)
- Basic Editing
(https://playground.arduino.cc/PmWiki/BasicEditing)
- Documentation index
(http://www.pmwiki.org/wiki/PmWiki/DocumentationIndex)

i2c_scanner
Last Modified: March 05, 2017, at 02:02 PM
By: Frode Grimstad Bang

This very simple sketch scans the I2C-bus for devices. If a device is found, it is reported to the Arduino
serial monitor.

This sketch is the first step to get the I2C communication working.

The sketch shows the 7-bit addresses of the found devices as hexadecimal values. That value can be
used for the "Wire.begin" function which uses the 7-bit address. Some datasheets use the 8-bit
address and some example sketches use decimal addresses.

Interesting links
The Arduino Wire Reference (http://www.arduino.cc/en/Reference/Wire).

I2C Bi-directional Level Shifter (https://playground.arduino.cc/Main/I2CBi-directionalLevelShifter)


about level shifting, pull-up resistors and connecting 3.3V devices.

Nick Gammon's page about I2C : http://gammon.com.au/i2c (http://gammon.com.au/i2c) (the page


also has a "I2C Scanner").

robtillaart made a "Multispeed I2C Scanner" (http://forum.arduino.cc/index.php?topic=197360) that


scans with different I2C speeds. If you use longer wires or libraries that use higher I2C speeds, the
Multispeed I2C Scanner is very useful. (verified with UNO, 2009, MEGA)

Sketch
Open a new sketch and copy the sketch below into it. Upload it to the Arduino and open the serial
monitor. Every found device on the I2C-bus is reported.
You can change the wires, and plug-in I2C devices while the i2c_scanner is running.

The output of the serial monitor will look like this:

Please do not change the sketch. If you have improvements, add your improved sketch to this page.

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, November 27, 2015.
23. //    Added waiting for the Leonardo serial communication.
24. //
25. //
26. // This sketch tests the standard 7-bit addresses
27. // Devices with higher bit address might not be seen properly.
28. //
29.  
30. #include <Wire.h>
31.  
32.  
33. void setup()
34. {
35.   Wire.begin();
36.  
37.   Serial.begin(9600);
38.   while (!Serial);             // Leonardo: wait for serial monitor
39.   Serial.println("\nI2C Scanner");
40. }
41.  
42.  
43. void loop()
44. {
45.   byte error, address;
O46.
F I L  Eint
% 3nDevices;
ACORE+PROFILE%3APUBLIC+PROFILE%3ACONTACT+OFFLINE&RESPONSE_TYPE=CODE)
47.  
48.   Serial.println("Scanning...");
49.  
50.   nDevices = 0;
51.   for(address = 1; address < 127; address++ )
52.   {
53.     // The i2c_scanner uses the return value of
54.     // the Write.endTransmisstion to see if
55.     // a device did acknowledge to the address.
56.     Wire.beginTransmission(address);
57.     error = Wire.endTransmission();
58.  
59.     if (error == 0)
60.     {
61.       Serial.print("I2C device found at address 0x");
62.       if (address<16)
63.         Serial.print("0");
64.       Serial.print(address,HEX);
65.       Serial.println("  !");
66.  
67.       nDevices++;
68.     }
69.     else if (error==4)
70.     {
71.       Serial.print("Unknown error at address 0x");
72.       if (address<16)
73.         Serial.print("0");
74.       Serial.println(address,HEX);
75.     }    
76.   }
77.   if (nDevices == 0)
78.     Serial.println("No I2C devices found\n");
79.   else
80.     Serial.println("done\n");
81.  
82.   delay(5000);           // wait 5 seconds for next scan
83. }
[Get Code] (https://playground.arduino.cc/Main/I2cScanner?action=sourceblock&num=1)

Share
NEWSLETTER

ENTER YOUR EMAIL TO SIGN UP SUBSCRIBE

Copyright Notice (//www.arduino.cc/en/Main/CopyrightNotice)


Contact Us (//www.arduino.cc/en/Main/ContactUs)
About Us (//www.arduino.cc/en/Main/AboutUs)
Careers (//www.arduino.cc/Careers)
© 2018 Arduino

(https://www.facebook.com/official.arduino)
(https://twitter.com/arduino)
(https://plus.google.com/+Arduino)
(https://www.instagram.com/arduino.cc/)
(https://github.com/arduino/)
(https://www.flickr.com/photos/arduino_cc)
(https://www.youtube.com/user/arduinoteam)

You might also like