We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from arduino import Arduino
import time
my_board = Arduino('COM5') print my_board
my_board.output([9,10,11])
i=0 while(i<10): print 'Writing Value' val = my_board.analogWrite(11,255) time.sleep(10) i+=1
my_board.close()
This code hangs after 'Writing Value'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
import the lib
from arduino import Arduino
import time
specify the port as an argument
my_board = Arduino('COM5')
print my_board
declare output pins as a list/tuple
my_board.output([9,10,11])
perform operations
i=0
while(i<10):
print 'Writing Value'
val = my_board.analogWrite(11,255)
time.sleep(10)
i+=1
my_board.close()
This code hangs after 'Writing Value'
The text was updated successfully, but these errors were encountered: