Send/receive a byte via i2c

master
mandlm 2016-01-17 20:26:23 +01:00
parent ec750e9fc1
commit ae67e347e9
1 changed files with 13 additions and 0 deletions

13
i2c/echo.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python
import smbus
bus = smbus.SMBus(1)
address = 0x23
def send(data):
print 'Send / receive: ' + str(data) + ' / ' + str(bus.read_byte_data(address, data))
for d in range(1, 5):
send(d)