Raspberry Pi - PWM Output
Identify the error in this code snippet for controlling LED brightness:
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(17, GPIO.OUT) pwm = GPIO.PWM(17, 1000) pwm.start(110)
