Jump to content

NodeMCU Projects: Difference between revisions

Line 56:
 
<syntaxhighlight lang="python">
import machine
import time
 
pin = machine.Pin(2, machine.Pin.OUT)
 
def toggle(p):
p.value(not p.value())
 
while True:
for i in range(100,999):
time.sleep_ms(i)
toggle(pin)
</syntaxhighlight>
 
Cookies help us deliver our services. By using our services, you agree to our use of cookies.