Bird
0
0
Arduinoprogramming~5 mins

Passive vs active buzzer difference in Arduino - Quick Revision & Key Differences

Choose your learning style9 modes available
Recall & Review
beginner
What is an active buzzer?
An active buzzer has a built-in oscillator. It only needs power to produce sound. You just turn it on or off.
Click to reveal answer
beginner
What is a passive buzzer?
A passive buzzer does not have a built-in oscillator. It needs an external signal (like a square wave) to make sound.
Click to reveal answer
beginner
How do you control an active buzzer in Arduino?
You just send HIGH or LOW to the buzzer pin. HIGH turns it on, LOW turns it off.
Click to reveal answer
intermediate
How do you control a passive buzzer in Arduino?
You use PWM or tone() function to send a frequency signal. This makes the buzzer produce different sounds.
Click to reveal answer
beginner
What is the main difference between passive and active buzzers?
Active buzzers have a built-in sound generator and only need power. Passive buzzers need an external signal to create sound.
Click to reveal answer
Which buzzer type requires an external signal to produce sound?
AActive buzzer
BBoth active and passive buzzers
CPassive buzzer
DNeither buzzer
How do you turn on an active buzzer in Arduino?
AUse the tone() function
BSend a HIGH signal to its pin
CSend a PWM signal
DConnect it to ground
Which function is commonly used to control a passive buzzer's sound frequency?
Atone()
BdigitalWrite()
CanalogRead()
Ddelay()
What does an active buzzer contain inside?
ABuilt-in oscillator
BNo internal parts
CExternal speaker
DBattery
If you want to play different tones with a buzzer, which type should you use?
ANeither can play different tones
BActive buzzer
CEither type works the same
DPassive buzzer
Explain the main difference between a passive and an active buzzer.
Think about what each buzzer needs to make sound.
You got /3 concepts.
    Describe how you would control a passive buzzer using Arduino code.
    Consider how to make different sounds with the buzzer.
    You got /3 concepts.