An AC bulb is a type of light bulb designed to operate on alternating current (AC) electricity, which is the standard form of electrical power supplied to homes and businesses. These bulbs are widely used for general-purpose lighting in residential, commercial, and industrial environments. AC bulbs come in various types, including incandescent, compact fluorescent (CFL), and LED, each offering different levels of energy efficiency and brightness.
The technical specifications of an AC bulb can vary depending on the type and model. Below are general specifications for a standard AC LED bulb:
Parameter | Value |
---|---|
Operating Voltage | 110V - 240V AC |
Power Rating | 5W - 100W (depending on the model) |
Frequency | 50Hz - 60Hz |
Luminous Flux | 400 - 1600 lumens |
Color Temperature | 2700K (warm white) to 6500K (cool white) |
Base Type | E27, B22, or GU10 |
Lifespan | 15,000 - 50,000 hours (LED models) |
Dimmable | Optional (depending on the model) |
AC bulbs typically have a base with two electrical contacts. The configuration depends on the base type:
Pin | Description |
---|---|
Center Contact | Live (L) terminal for AC input |
Screw Thread | Neutral (N) terminal for AC input |
Pin | Description |
---|---|
Pin 1 | Live (L) terminal for AC input |
Pin 2 | Neutral (N) terminal for AC input |
While AC bulbs cannot be directly controlled by an Arduino due to high voltage, you can use a relay module to control the bulb. Below is an example:
// This code demonstrates how to control an AC bulb using a relay module
// connected to an Arduino UNO. The bulb will turn on for 5 seconds, then off.
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the relay (bulb ON)
delay(5000); // Wait for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (bulb OFF)
delay(5000); // Wait for 5 seconds
}
Warning: Working with AC electricity is dangerous. Ensure proper insulation and safety precautions when handling high-voltage components.
Bulb Does Not Light Up
Flickering Light
Bulb Overheats
Short Lifespan
Can I use an AC bulb with a DC power source?
Are all AC bulbs dimmable?
What is the difference between warm white and cool white?
Can I use an AC bulb outdoors?