Raspberry Pi - PWM Output
What is wrong with this PWM code?
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(19, GPIO.OUT) pwm = GPIO.PWM(19, 500) pwm.ChangeDutyCycle(50)
