数据搜索系统,热门电子元器件搜索
  Chinese  ▼
ALLDATASHEETCN.COM

X  

  • -BZ1-R

  • AI
    The **BZ1-R** typically refers to a specific series of **Active Magnetic Buzzers** or **Piezoelectric Indicators** used in electronics for audible feedback. These are common components in alarm systems, microwave ovens, and computer motherboards. --- ### 1. Key Technical Specifications While exact specs can vary by manufacturer (such as TDK or Murata), the standard BZ1-R series usually falls within these parameters: | Feature | Typical Specification | | :--- | :--- | | **Type** | Magnetic / Piezoelectric (Active) | | **Operating Voltage** | 1.5V to 12V DC | | **Current Consumption** | 20mA - 30mA (at rated voltage) | | **Sound Pressure Level** | 80dB to 90dB (at 10cm distance) | | **Resonant Frequency** | 2,300Hz ± 300Hz | | **Mounting Type** | Through-hole (DIP) or Surface Mount (SMD) | --- ### 2. Internal Components The "R" in BZ1-R often denotes **Internal Circuitry** (Active type) or **RoHS Compliance**. An active BZ1-R buzzer contains three main internal parts: 1. **Oscillator Circuit:** A built-in circuit that converts DC voltage into an oscillating square wave. This eliminates the need for the user to provide a PWM signal. 2. **Transducer (Coil/Piezo):** * *Magnetic:* A coil of wire and a permanent magnet that moves a metal diaphragm. * *Piezo:* A ceramic disc that vibrates when voltage is applied. 3. **Resonance Chamber:** The plastic housing (usually black) designed to amplify the sound produced by the vibrating element. --- ### 3. Basic Circuit Diagram Since the BZ1-R is usually an **Active Buzzer**, it is very simple to integrate into a circuit. ```arduino // Example: Connecting a BZ1-R to an Arduino // [Power Source] -> [Switch/Transistor] -> [BZ1-R Positive Pin] void setup() { pinMode(8, OUTPUT); // Connect Buzzer + to Pin 8 } void loop() { digitalWrite(8, HIGH); // Sound ON delay(1000); digitalWrite(8, LOW); // Sound OFF delay(1000); } ``` --- ### 4. Comparison: Active vs. Passive If your BZ1-R is labeled "Active," it differs from passive versions in the following ways: * **Active (BZ1-R):** Sounds immediately when DC power is applied. It has a fixed pitch. * **Passive:** Requires an external AC/PWM signal to vibrate. It can play different musical notes. ---
    ✨ Follow-up Questions
    • What is the difference between the BZ1-R and a standard passive buzzer?
    • How do I calculate the current limiting resistor for a 12V BZ1-R buzzer?
    • Can a BZ1-R buzzer be controlled directly by a microcontroller pin without a transistor?