Skip to content

Instantly share code, notes, and snippets.

@elliotwoods
Created August 23, 2023 03:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elliotwoods/a2d19f11a729d35b26cbf4fb594a503b to your computer and use it in GitHub Desktop.
Save elliotwoods/a2d19f11a729d35b26cbf4fb594a503b to your computer and use it in GitHub Desktop.
I2C Scanner for Portal
// --------------------------------------
// i2c_scanner
//
// Version 1
// This program (or code that looks like it)
// can be found in many places.
// For example on the Arduino.cc forum.
// The original author is not know.
// Version 2, Juni 2012, Using Arduino 1.0.1
// Adapted to be as simple as possible by Arduino.cc user Krodal
// Version 3, Feb 26 2013
// V3 by louarnold
// Version 4, March 3, 2013, Using Arduino 1.0.3
// by Arduino.cc user Krodal.
// Changes by louarnold removed.
// Scanning addresses changed from 0...127 to 1...119,
// according to the i2c scanner by Nick Gammon
// https://www.gammon.com.au/forum/?id=10896
// Version 5, March 28, 2013
// As version 4, but address scans now to 127.
// A sensor seems to use address 120.
// Version 6, November 27, 2015.
// Added waiting for the Leonardo serial communication.
//
//
// This sketch tests the standard 7-bit addresses
// Devices with higher bit address might not be seen properly.
//
#include <Wire.h>
HardwareSerial serialDebug(PB7, PB6);
void setup()
{
Wire.setSCL(PB10);
Wire.setSDA(PB11);
Wire.begin();
serialDebug.begin(115200);
while (!serialDebug); // Leonardo: wait for serial monitor
serialDebug.println("\nI2C Scanner");
}
void loop()
{
byte error, address;
int nDevices;
serialDebug.println("Scanning...");
nDevices = 0;
for (address = 1; address < 127; address++ )
{
// The i2c_scanner uses the return value of
// the Write.endTransmisstion to see if
// a device did acknowledge to the address.
Wire.beginTransmission(address);
error = Wire.endTransmission();
if (error == 0)
{
serialDebug.print("I2C device found at address 0x");
if (address < 16)
serialDebug.print("0");
serialDebug.print(address, HEX);
serialDebug.println(" !");
nDevices++;
}
else if (error == 4)
{
serialDebug.print("Unknown error at address 0x");
if (address < 16)
serialDebug.print("0");
serialDebug.println(address, HEX);
}
}
if (nDevices == 0)
serialDebug.println("No I2C devices found\n");
else
serialDebug.println("done\n");
delay(5000); // wait 5 seconds for next scan
}
@elliotwoods
Copy link
Author

Just copy-paste this into a new app in your project
You maybe need to add the Wire library also if that's not there by default?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment