Skip to content

Commit 65e2f4e

Browse files
committed
Fix pin.
1 parent 3fe5a9e commit 65e2f4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CircuitPython_on_Linux_and_Raspberry_Pi/PWM_LED.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import board
33
import pulseio
44

5-
led = pulseio.PWMOut(board.D16, frequency=5000, duty_cycle=0)
5+
led = pulseio.PWMOut(board.D5, frequency=5000, duty_cycle=0)
66

77
while True:
88
for i in range(100):

0 commit comments

Comments
 (0)