// the setup function runs once when you press reset or power the board void setup() { // initialize digital pin 13 as an output. pinMode(8, OUTPUT);// Set A5 as OUTPUT } // the loop function runs over and over again forever void loop() { { /* code */ digitalWrite(8, HIGH); // atomize delay(10000); // wait for 10 seconds digitalWrite(8, LOW); // atomization stopped } }