0
0
Raspberry Piprogramming~5 mins

LED brightness control in Raspberry Pi - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is PWM and why is it used for LED brightness control?
PWM stands for Pulse Width Modulation. It controls LED brightness by switching the LED on and off very fast. The longer the LED is on compared to off, the brighter it looks.
Click to reveal answer
beginner
How do you set up a GPIO pin on Raspberry Pi for PWM to control an LED?
You first import the GPIO library, set the pin mode to BCM or BOARD, then set the pin as output. After that, you create a PWM instance on that pin with a frequency, and start it with a duty cycle.
Click to reveal answer
beginner
What does the duty cycle in PWM represent?
The duty cycle is the percentage of time the signal is ON during one cycle. For example, 50% means the LED is on half the time and off half the time, making it appear half as bright.
Click to reveal answer
intermediate
Why can't we just use a resistor to change LED brightness instead of PWM?
Using a resistor changes current but wastes power as heat and is less efficient. PWM controls brightness by switching on/off quickly, saving power and allowing smooth brightness control.
Click to reveal answer
beginner
What Python library is commonly used on Raspberry Pi to control GPIO pins for LED brightness?
The RPi.GPIO library is commonly used. It allows you to set up pins, create PWM signals, and control LED brightness easily.
Click to reveal answer
What does PWM stand for in LED brightness control?
APulse Width Modulation
BPower Wave Management
CPulse Wave Measurement
DPower Width Modulation
In PWM, what happens if the duty cycle is 100%?
ALED is fully on
BLED is off
CLED blinks slowly
DLED is half bright
Which Raspberry Pi pin mode can be used to refer to pins by their physical location?
ABCM
BBOARD
CPWM
DGPIO
Why is PWM preferred over using a resistor to control LED brightness?
APWM wastes more power
BResistor is more efficient
CPWM allows smooth brightness control and saves power
DResistor changes color
Which Python command starts PWM on a GPIO pin with a duty cycle of 75%?
AGPIO.output(75)
BGPIO.setup(75)
Cpwm.start(75)
Dpwm.ChangeDutyCycle(75)
Explain how PWM controls LED brightness on a Raspberry Pi.
Think about how turning the LED on and off quickly changes how bright it looks.
You got /3 concepts.
    Describe the steps to set up PWM on a Raspberry Pi GPIO pin to control an LED.
    Remember the order of commands to prepare the pin and start PWM.
    You got /5 concepts.