You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to implement one of the starter circuits using your library. This simple Arduino code, causes the LED to light up brightly and blink accordingly (everything seems correct):
But this Python code, causes the LED to blink correctly, but is very dim with the exact same circuit:
fromArduinoimportArduinoimporttimeboard=Arduino('9600') #plugged in via USB, serial com at rate 9600board.pinMode(13, "OUTPUT")
whileTrue:
board.digitalWrite(13, "LOW")
time.sleep(1)
board.digitalWrite(13, "HIGH")
time.sleep(1)
Any ideas what could cause this?
The text was updated successfully, but these errors were encountered:
I have also experienced this, having extensively combed through the source code i have NO idea what could be causing it, i have forked this library and i still experience this bug from time to time.
Are you able to reproduce yours with a 100% success rate or does it only happen on occasion?
I am trying to implement one of the starter circuits using your library. This simple Arduino code, causes the LED to light up brightly and blink accordingly (everything seems correct):
But this Python code, causes the LED to blink correctly, but is very dim with the exact same circuit:
Any ideas what could cause this?
The text was updated successfully, but these errors were encountered: