Created
July 16, 2014 17:40
-
-
Save Technicus/9bf952f36c7ae6c34108 to your computer and use it in GitHub Desktop.
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 smbus | |
import time | |
# for RPI version 1, use "bus = smbus.SMBus(0)" | |
bus = smbus.SMBus(1) | |
# This is the address we setup in the Arduino Program | |
address = 0x04 | |
def writeNumber(value): | |
bus.write_byte(address, value) | |
# bus.write_byte_data(address, 0, value) | |
return -1 | |
def readNumber(): | |
number = bus.read_byte(address) | |
# number = bus.read_byte_data(address, 1) | |
return number | |
while True: | |
var = input("Enter 1 - 255: ") | |
if not var: | |
continue | |
writeNumber(var) | |
print "RPI: Hi Arduino, I sent you ", var | |
# sleep one second | |
time.sleep(1) | |
number = readNumber() | |
print "Arduino: Hey RPI, I received a digit ", number | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment