Raspberry Pi - PWM Output
What will be the output brightness behavior if this code runs on a Raspberry Pi controlling an LED?
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) pin = 18 GPIO.setup(pin, GPIO.OUT) pwm = GPIO.PWM(pin, 1000) pwm.start(25)
