Raspberry Pi - PWM Output
What will be the output on the LED connected to pin 12 after running this code snippet?
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(12, GPIO.OUT) pwm = GPIO.PWM(12, 500) pwm.start(75)
