kopia lustrzana https://github.com/micropython/micropython-lib
14 wiersze
195 B
Python
14 wiersze
195 B
Python
![]() |
import time
|
||
|
from pyb import LED
|
||
|
|
||
|
l = LED("left:amber")
|
||
|
print(l.get())
|
||
|
while 1:
|
||
|
# l.on()
|
||
|
l.toggle()
|
||
|
print(l.get())
|
||
|
time.sleep(1)
|
||
|
# l.off()
|
||
|
# print(l.get())
|
||
|
# time.sleep(1)
|