new file: test01.py
@ -0,0 +1,9 @@
from machine import Pin
from time import sleep
led = Pin('LED', Pin.OUT)
print('Blinking LED Example')
while True:
led.value(not led.value())
sleep(0.5)
The note is not visible to the blocked user.