Skip to content

Commit 6899f09

Browse files
authored
Merge pull request #1170 from kattni/pin-fix
Fix pin.
2 parents 3fe5a9e + 65e2f4e commit 6899f09

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)