Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upExample #6
Open
Example #6
Comments
Agree. That'll give users some context. I'll test it out once and change it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just thought your "sample_blink" would be better off as mimicking the the sample on blink bundled with Arduino.
while 1:
my_board.setHigh(13)
time.sleep(1)
my_board.setLow(13)
time.sleep(1)
i+=1
not sure what happens with python if i rolls over, imagine it's similar to c but I don't know...