Raspberry Pi - gpiozero Library
What will be the output behavior of this code snippet?
from gpiozero import PWMLED import time led = PWMLED(17) led.brightness = 0.2 time.sleep(2) led.brightness = 0.8 time.sleep(2) led.off()
