

The QB062/QB078 Humidifier Module, manufactured by Acebott, is a compact and efficient device designed to add moisture to the air. It is commonly used in HVAC systems, greenhouses, industrial environments, and home appliances to maintain optimal humidity levels. By dispersing water vapor, this module enhances comfort, prevents dryness, and supports the preservation of materials sensitive to low humidity.








The QB062/QB078 Humidifier Module is designed for reliable and efficient operation. Below are its key technical details:
| Parameter | Value |
|---|---|
| Manufacturer | Acebott |
| Part ID | QB062/QB078 |
| Operating Voltage | 12V DC |
| Operating Current | 300mA (typical) |
| Power Consumption | 3.6W |
| Humidification Rate | 300 mL/hour |
| Operating Temperature | 5°C to 50°C |
| Storage Temperature | -10°C to 60°C |
| Dimensions | 50mm x 50mm x 20mm |
| Weight | 45g |
The module features a simple pinout for easy integration into circuits:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power input (12V DC) |
| 2 | GND | Ground connection |
| 3 | CONTROL | PWM input for controlling humidification intensity |
The QB062/QB078 can be controlled using an Arduino UNO. Below is an example code snippet to control the humidification rate using PWM:
// Define the CONTROL pin connected to the module
const int controlPin = 9; // PWM pin on Arduino UNO
void setup() {
pinMode(controlPin, OUTPUT); // Set the CONTROL pin as an output
}
void loop() {
// Gradually increase humidification intensity
for (int dutyCycle = 0; dutyCycle <= 255; dutyCycle += 5) {
analogWrite(controlPin, dutyCycle); // Send PWM signal to CONTROL pin
delay(50); // Wait 50ms before increasing intensity
}
// Gradually decrease humidification intensity
for (int dutyCycle = 255; dutyCycle >= 0; dutyCycle -= 5) {
analogWrite(controlPin, dutyCycle); // Send PWM signal to CONTROL pin
delay(50); // Wait 50ms before decreasing intensity
}
}
analogWrite() function generates a PWM signal on the specified pin.Module Does Not Turn On
No Water Vapor Output
Uneven Humidification
PWM Control Not Working
Q: Can I use a 5V power supply instead of 12V?
A: No, the module requires a 12V DC power supply for proper operation.
Q: Is the module waterproof?
A: The module is water-resistant but not fully waterproof. Avoid submerging it in water.
Q: Can I use tap water with the module?
A: It is recommended to use distilled or demineralized water to prevent scaling and ensure longevity.
Q: What is the maximum humidification rate?
A: The module can achieve a maximum humidification rate of 300 mL/hour.
By following this documentation, users can effectively integrate and operate the QB062/QB078 Humidifier Module in their projects.