The Lamps & Buzzer module, manufactured by Cirkit (Part ID: Lamps & Buzzer), is a versatile electronic component designed for visual and auditory signaling in various applications. This module combines a lamp (LED or incandescent) for visual indication and a buzzer for sound-based alerts, making it ideal for systems requiring dual-mode notifications.
Parameter | Specification |
---|---|
Operating Voltage | 3V to 12V (DC) |
Current Consumption | Lamp: 20mA (typical), Buzzer: 30mA |
Buzzer Frequency | 2 kHz to 4 kHz |
Lamp Type | LED or Miniature Incandescent |
Operating Temperature | -20°C to +70°C |
Dimensions | 30mm x 20mm x 15mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Positive power supply (3V to 12V DC) |
2 | GND | Ground connection |
3 | Lamp Signal | Input signal to activate the lamp |
4 | Buzzer Signal | Input signal to activate the buzzer |
VCC
pin to a DC power source (3V to 12V) and the GND
pin to the ground of the circuit.Lamp Signal
pin to turn on the lamp. Ensure the input voltage matches the operating voltage of the lamp.Buzzer Signal
pin to activate the buzzer. The buzzer will emit a sound at its rated frequency.Below is an example of how to connect and control the Lamps & Buzzer module using an Arduino UNO:
VCC
pin of the module to the 5V pin on the Arduino.GND
pin of the module to the GND pin on the Arduino.Lamp Signal
pin to digital pin 8 on the Arduino.Buzzer Signal
pin to digital pin 9 on the Arduino.// Lamps & Buzzer Control Example
// This code demonstrates how to control the lamp and buzzer using an Arduino UNO.
#define LAMP_PIN 8 // Pin connected to the Lamp Signal
#define BUZZER_PIN 9 // Pin connected to the Buzzer Signal
void setup() {
pinMode(LAMP_PIN, OUTPUT); // Set Lamp Signal pin as output
pinMode(BUZZER_PIN, OUTPUT); // Set Buzzer Signal pin as output
}
void loop() {
digitalWrite(LAMP_PIN, HIGH); // Turn on the lamp
digitalWrite(BUZZER_PIN, HIGH); // Turn on the buzzer
delay(1000); // Wait for 1 second
digitalWrite(LAMP_PIN, LOW); // Turn off the lamp
digitalWrite(BUZZER_PIN, LOW); // Turn off the buzzer
delay(1000); // Wait for 1 second
}
Lamp or Buzzer Not Activating:
Buzzer Produces Weak or No Sound:
Lamp Flickering:
Overheating:
Q1: Can I use this module with a 3.3V microcontroller?
A1: Yes, the module is compatible with 3.3V systems, but ensure the input signals are within the operating voltage range.
Q2: Can the lamp and buzzer be controlled independently?
A2: Yes, the lamp and buzzer have separate input pins, allowing independent control.
Q3: What type of lamp is used in this module?
A3: The module typically uses an LED or a miniature incandescent lamp, depending on the variant.
Q4: Is the buzzer tone adjustable?
A4: No, the buzzer operates at a fixed frequency. For adjustable tones, consider using a PWM signal with a piezo buzzer.