Skip to main content

Grove - Water Atomization

Grove - Water Atomization is a fine Grove module for you to develop an atomizer or an atomizer module in your applications easily. With a few simple steps, you can prototype an atomizer. It has grove interface which make it easily applied to plenty of applications. A humidifier is a basic application it can be built with, you can develop more advanced and interesting objects with digital scent technology and any other situation in which atomization is required.

Features

  • Heated with ultrasound.
  • Easy to prototype a new application.
  • Well applied to vast applications.
  • For various interesting, smart and fashionable applications.
tip
More details about Grove modules please refer to [Grove System](https://wiki.seeedstudio.com/Grove_System/)

Application ideas

  • Humidifier.
  • Scent emitter in different situations.
  • For smart-house applications.
  • For smart objects on consumer electronic products.

Specifications

ParameterValue
Operating Voltage5.0V(DC)
Ripple(at Max power)≤100 mV
Max power2W
Peak output voltage65±5V
Operating frequency105±5kHz
ChipsETA1617, NE555

Platforms Supported

ArduinoRaspberry Pi
caution
The platforms mentioned above as supported is/are an indication of the module's software or theoritical compatibility. We only provide software library or code examples for Arduino platform in most cases. It is not possible to provide software library / demo code for all possible MCU platforms. Hence, users have to write their own software library.

Hardware Overview

Grove interface Connect main control board such as Seeeduino board with driver board.

Transducer interface Connect ultrasonic transducer to with driver board.

Grove wire Connect main control board with driver board.

Parts list

Parts nameQuantity
Driver board1PC
Grove wire1PC
Ultrasonic transducer plate1PC

Get started

Material required

Seeeduino v4.2 x 1

Grove - Base shield v2 x 1

Grove - Wire x 1

Preparations

Refer to following guides to build an appropriate IDE:

note

We have chosen Seeeduino in this case.

  • Getting Started on Windows
  • Getting Started on Mac OS X

Hardware connections

A little demo

note

We also need a Grove - Touch Sensor in this demo and also connect it to D5.

1.Copy code below to Arduino IDE editor.

/*
Demo code for grove atomization.
Touch to start atomizing.
Last modified by he
by xiaohe
*/

// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin 13 as an output.
pinMode(A5, OUTPUT);// Set A5 as OUTPUT
pinMode(5, INPUT); // Use digital pin 5 as output port
}

// the loop function runs over and over again forever
void loop() {
int D2Sig = digitalRead(5);// read pin 5 signal
if (D2Sig == 1)
{
/* code */
digitalWrite(A5, HIGH); // atomize
delay(10000); // wait for 10 seconds
digitalWrite(A5, LOW); // atomization stopped

}
}

2.Place some tissue into a trimmed paper cup filled with water, put ultrasonic transducer onto tissue.

note

The bottom side is the side with hollow which is supposed to face downside. Let bottom of transducer plate sink into the water and keep top side above water. The function of tissue is lead water to the transducer and keep upper side of transducer above water.

3.Upload code to main control board.

4.Now if you touch Grove touch sensor, you can see vapor produced.

caution

Do not touch transducer interface pins directly because peak output voltage of Drier board can be 65V.

caution

The inductor L2 (marked in red rectangle above) will be heated. So do not touch it directly.

Play with Codecraft

Hardware

Step 1. Connect Grove - Water Atomization to port D2, and connect Grove - Button to port D5 of a Base Shield.

Step 2. Plug the Base Shield to your Seeeduino/Arduino.

Step 3. Link Seeeduino/Arduino to your PC via an USB cable.

Software

Step 1. Open Codecraft, add Arduino support, and drag a main procedure to working area.

note
If this is your first time using Codecraft, see also [Guide for Codecraft using Arduino](https://wiki.seeedstudio.com/Guide_for_Codecraft_using_Arduino/).

Step 2. Drag blocks as picture below or open the cdc file which can be downloaded at the end of this page.

cc

Upload the program to your Arduino/Seeeduino.

tip
When the code finishes uploaded, the water atomization starts atomize when you push the button.

Resources

Project

Smart Humidifier Make your room comfortable in winter.

Tech Support & Product Discussion

Thank you for choosing our products! We are here to provide you with different support to ensure that your experience with our products is as smooth as possible. We offer several communication channels to cater to different preferences and needs.

Loading Comments...