const int motor = 2; void setup() { pinMode(motor, OUTPUT); } void loop() { digitalWrite(motor, HIGH); }