Dear Customer,
First, the atomization is digital device. we can connect to any digital or analog port. We can use the I2C port, which includes the A5 and A4 analog port. We can use them to control atomization. We will modify the wiki to make it more clear.
Second, please connect the atomization to D2 port of base shield and try below code, please check if the atomization is on 5 seconds and off 5 seconds.
void setup() {
pinMode(D2, OUTPUT);// Set D2 as OUTPUT
}
void loop() {
/* code */
digitalWrite(D2, HIGH);
delay(5000);
digitalWrite(D2, LOW);
delay(5000);
}
Third, if it still does not work, we suspect the atomization actuator(inside of water) is not working. please drop email to [email protected] and we will handle the case. thanks.
Seeed Techsupport Team