Revert "LED" to Pin 25

This commit is contained in:
Toby Roberts 2023-03-01 16:11:40 +00:00 committed by GitHub
parent 93b03d8b3a
commit 4663e8c922
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from machine import Pin, PWM
# Construct PWM object, with LED on Pin(25).
pwm = PWM(Pin("LED"))
pwm = PWM(Pin(25))
# Set the PWM frequency.
pwm.freq(1000)