

The Acebott QB062/QB078 Humidifier Module is a compact and efficient device designed to add moisture to the air. It is commonly used in HVAC systems, standalone humidifiers, and other applications where maintaining optimal humidity levels is essential for comfort, health, or equipment performance. This module is ideal for residential, commercial, and industrial environments, ensuring consistent and reliable humidification.








The following table outlines the key technical details of the Acebott QB062/QB078 Humidifier Module:
| Parameter | Specification |
|---|---|
| Manufacturer | Acebott |
| Part ID | QB062 / QB078 |
| Input Voltage | 24V DC |
| Operating Current | 0.5A (typical) |
| Power Consumption | 12W |
| Humidification Capacity | 300-400 mL/hour |
| Operating Temperature | 5°C to 50°C |
| Humidity Range | 30% to 90% RH |
| Dimensions | 50mm x 50mm x 20mm |
| Weight | 80g |
The module features a simple 3-pin interface for easy integration into circuits. The pin configuration is as follows:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (24V DC) |
| 2 | GND | Ground connection |
| 3 | CONTROL | PWM or ON/OFF control signal (3.3V or 5V logic) |
Below is an example of how to control the humidifier module using an Arduino UNO:
// Define the control pin for the humidifier module
const int controlPin = 9; // Connect to the CONTROL pin of the module
void setup() {
pinMode(controlPin, OUTPUT); // Set the control pin as an output
}
void loop() {
// Turn the humidifier ON for 5 seconds
digitalWrite(controlPin, HIGH); // Send HIGH signal to enable the module
delay(5000); // Wait for 5 seconds
// Turn the humidifier OFF for 5 seconds
digitalWrite(controlPin, LOW); // Send LOW signal to disable the module
delay(5000); // Wait for 5 seconds
}
Note: If using PWM for variable control, replace
digitalWritewithanalogWriteand adjust the duty cycle as needed.
Module Does Not Turn On
Low Humidification Output
Irregular Operation
Overheating
Q: Can I use a 12V power supply instead of 24V?
A: No, the module is designed to operate at 24V DC. Using a lower voltage may result in malfunction or damage.
Q: Is the module waterproof?
A: The module is water-resistant but not fully waterproof. Avoid submerging it in water.
Q: Can I control the module with a 3.3V microcontroller?
A: Yes, the CONTROL pin is compatible with both 3.3V and 5V logic levels.
Q: How often should I clean the module?
A: Cleaning frequency depends on water quality. For distilled water, clean every 2-3 months. For tap water, clean monthly.
By following this documentation, users can effectively integrate and maintain the Acebott QB062/QB078 Humidifier Module in their projects.