

The Mist Maker is an electronic device designed to produce a fine mist or fog by utilizing ultrasonic technology. It works by vibrating a ceramic disc at ultrasonic frequencies, which breaks water into tiny droplets, creating a visible mist. This component is widely used in applications such as humidification, aromatherapy, decorative fountains, and even in theatrical effects.
Common applications and use cases:








| Parameter | Value |
|---|---|
| Operating Voltage | 24V DC (typical) |
| Operating Current | 400-600 mA |
| Power Consumption | 8-12W |
| Operating Frequency | 1.7 MHz (ultrasonic frequency) |
| Water Level Requirement | Minimum 25-30 mm above the ceramic disc |
| Mist Output | 300-400 mL/hour |
| Dimensions | Varies by model (commonly ~4-5 cm diameter) |
| Cable Length | ~1 meter (varies by manufacturer) |
The Mist Maker typically has a simple connector for power input. Below is a description of the pins:
| Pin | Label | Description |
|---|---|---|
| 1 | VCC | Positive power supply input (24V DC) |
| 2 | GND | Ground connection |
While the Mist Maker is not directly controlled by an Arduino, you can use a relay module to switch it on or off. Below is an example of how to control the Mist Maker using an Arduino UNO and a relay module:
// Define the relay control pin
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the Mist Maker
delay(5000); // Keep it on for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the Mist Maker
delay(5000); // Keep it off for 5 seconds
}
No Mist Output:
Intermittent Mist Production:
Device Overheats:
Water Splashes Excessively:
Q: Can I use the Mist Maker with essential oils?
A: Most Mist Makers are not designed for use with oils, as they can damage the ceramic disc. Check the manufacturer's specifications before use.
Q: How long can the Mist Maker run continuously?
A: This depends on the specific model, but most can run for several hours as long as the water level is maintained.
Q: Can I control the mist output?
A: The mist output is typically fixed. To control it, you can use a timer or relay to adjust the operating duration.
Q: What happens if the ceramic disc wears out?
A: The ceramic disc is a consumable part and can be replaced. Contact the manufacturer for replacement parts.
This documentation provides a comprehensive guide to understanding, using, and troubleshooting the Mist Maker. Follow the instructions and best practices to ensure optimal performance and longevity of the device.