Raspberry Pi - PWM Output
What will be the output if the following code runs?
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(23, GPIO.OUT) pwm = GPIO.PWM(23, 500) pwm.start(0) pwm.ChangeDutyCycle(50)
