// the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED as an output. pinMode(7, OUTPUT); } // the loop function runs over and over again forever void loop() { analogWrite(7, 100); // PWM(0-255) }