Raspberry Pi - PWM Output
What is the issue with this PWM code snippet?
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(16, GPIO.OUT) pwm = GPIO.PWM(16, 2000) pwm.start(-10)
