@@ -0,0 +1,12 @@
import RPi.GPIO as GPIO
import time
for i in range(100000):
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)
GPIO.output(17, GPIO.HIGH)
time.sleep(1)
GPIO.output(17, GPIO.LOW)
GPIO.cleanup()
The note is not visible to the blocked user.