/* This code turns on a particular pin as long as the board recives power */ // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin 1 as an output. pinMode(1, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(1, HIGH); // turn on vibrations in pin number 1 }