Jump to content

NodeMCU Projects: Difference between revisions

Line 92:
*Fading an LED
<syntaxhighlight lang="python">
led = machine.PWM(machine.Pin(2), freq=1000)
import time, math
import machine
 
led = machine.PWM(machine.Pin(2), freq=1000)
 
def pulse(l, t):
for i in range(20):
Cookies help us deliver our services. By using our services, you agree to our use of cookies.