Send/receive a byte via i2c
parent
ec750e9fc1
commit
ae67e347e9
|
@ -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)
|
Loading…
Reference in New Issue