Revert to Pin 25 from "LED"

This commit is contained in:
Toby Roberts 2023-02-28 14:07:55 +00:00 committed by GitHub
parent 18ee8b84e5
commit 4edbf0e18a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@ def prog():
pass
# Construct the StateMachine, binding LED to the set pin.
sm = rp2.StateMachine(0, prog, set_base=Pin("LED"))
# Construct the StateMachine, binding Pin 25 to the set pin.
sm = rp2.StateMachine(0, prog, set_base=Pin(25))
# Turn on the set pin via an exec instruction.
sm.exec("set(pins, 1)")