Skip to content

Instantly share code, notes, and snippets.

@SamEureka
Last active August 5, 2024 19:25
Show Gist options
  • Save SamEureka/9daf5f9276c26f9856738b501fbeeb6d to your computer and use it in GitHub Desktop.
Save SamEureka/9daf5f9276c26f9856738b501fbeeb6d to your computer and use it in GitHub Desktop.
I2C Address Scan CircuitPython
import board
import busio
# Use GPIO 5 as SCL and GPIO 4 as SDA
i2c = busio.I2C(board.GP5, board.GP4)
def scan_i2c_addresses(i2c):
while not i2c.try_lock():
pass
try:
print("Scanning I2C bus for devices...")
addresses = i2c.scan()
if addresses:
print("Found devices at addresses:", [hex(address) for address in addresses])
else:
print("No I2C devices found")
finally:
i2c.unlock()
# Run the I2C address scanner
scan_i2c_addresses(i2c)
@SamEureka
Copy link
Author

works on a pi pico w

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