Skip to content

Instantly share code, notes, and snippets.

@Amit2016-17
Forked from projetsdiy/micropython i2c scanner
Created December 4, 2020 06:04
Show Gist options
  • Select an option

  • Save Amit2016-17/92595996ea1316f18e4b8d80d163a8b7 to your computer and use it in GitHub Desktop.

Select an option

Save Amit2016-17/92595996ea1316f18e4b8d80d163a8b7 to your computer and use it in GitHub Desktop.
Micropython i2c scanner
# Scanner i2c en MicroPython | MicroPython i2c scanner
# Renvoi l'adresse en decimal et hexa de chaque device connecte sur le bus i2c
# Return decimal and hexa adress of each i2c device
# https://projetsdiy.fr - https://diyprojects.io (dec. 2017)
import machine
i2c = machine.I2C(scl=machine.Pin(5), sda=machine.Pin(4))
print('Scan i2c bus...')
devices = i2c.scan()
if len(devices) == 0:
print("No i2c device !")
else:
print('i2c devices found:',len(devices))
for device in devices:
print("Decimal address: ",device," | Hexa address: ",hex(device))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment