

A UV-C tube is a specialized ultraviolet lamp designed to emit UV-C light, which has a wavelength range of 200-280 nm. This type of light is highly effective for disinfection and sterilization purposes, as it can kill or inactivate microorganisms such as bacteria, viruses, and fungi by disrupting their DNA or RNA. UV-C tubes are widely used in healthcare, water purification, air sterilization, and surface disinfection applications.








Below are the key technical details of a typical UV-C tube. Note that specifications may vary depending on the manufacturer and model.
| Parameter | Value |
|---|---|
| Wavelength Range | 200-280 nm (UV-C spectrum) |
| Typical Wavelength | 254 nm |
| Power Rating | 4 W to 40 W (varies by model) |
| Input Voltage | 110-240 V AC (depending on ballast) |
| Operating Temperature | 0°C to 50°C |
| Lifespan | ~8,000 to 10,000 hours |
| Base Type | G5, G13, or 2G11 (varies by model) |
UV-C tubes typically have two or four pins, depending on the type of tube. Below is a table describing the pin configuration for a common two-pin UV-C tube.
| Pin Number | Description |
|---|---|
| 1 | Cathode (connected to ballast) |
| 2 | Cathode (connected to ballast) |
For four-pin UV-C tubes, the configuration is as follows:
| Pin Number | Description |
|---|---|
| 1 | Cathode 1 (connected to ballast) |
| 2 | Cathode 1 (connected to ballast) |
| 3 | Cathode 2 (connected to ballast) |
| 4 | Cathode 2 (connected to ballast) |
// Arduino code to control a UV-C tube using a relay module
const int relayPin = 7; // Define the pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the UV-C tube
delay(60000); // Keep the tube on for 1 minute (60000 ms)
digitalWrite(relayPin, LOW); // Turn off the UV-C tube
delay(300000); // Wait for 5 minutes before turning it on again
}
Note: Ensure the relay module is rated for the voltage and current of the UV-C tube's ballast.
The UV-C tube does not light up:
The tube flickers or emits dim light:
The tube generates a strong ozone smell:
The tube overheats:
Q: Can I use a UV-C tube without a ballast?
A: No, a ballast is required to regulate the current and prevent the tube from overheating or failing.
Q: How can I safely dispose of a UV-C tube?
A: UV-C tubes contain small amounts of mercury and should be disposed of at a certified recycling facility. Do not throw them in regular trash.
Q: Can UV-C tubes be used to disinfect food?
A: Yes, UV-C tubes can be used to sterilize food surfaces and packaging, but direct exposure to UV-C light should be avoided for consumable items.
Q: How do I know when to replace the tube?
A: Replace the tube when it no longer emits light or after its rated lifespan (typically 8,000-10,000 hours), even if it still lights up, as its disinfection effectiveness may decrease over time.