Last active
August 5, 2024 19:25
-
-
Save SamEureka/9daf5f9276c26f9856738b501fbeeb6d to your computer and use it in GitHub Desktop.
I2C Address Scan CircuitPython
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
works on a pi pico w