// the setup function runs once when you press reset or power the board
#define RED_PIN 10
#define GREEN_PIN 6
#define BLUE_PIN 5
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
pinMode (RED_PIN, OUTPUT);
pinMode (BLUE_PIN, OUTPUT);
pinMode (GREEN_PIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
analogWrite(GREEN_PIN, 100);
analogWrite(RED_PIN, 100);
// digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
// digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
// delay(100);
// digitalWrite(RED_PIN, HIGH);
// digitalWrite(BLUE_PIN, HIGH);
// digitalWrite(GREEN_PIN, HIGH);
// wait for a second
}