Pi/i2c/scan.py

14 lines
217 B
Python
Raw Normal View History

2016-01-11 12:01:26 +00:00
#!/usr/bin/env python
import smbus
bus = smbus.SMBus(1)
for address in range(0, 127):
try:
bus.read_byte(address)
print 'device at address ' + hex(address)
except IOError:
pass