// the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(A1, INPUT); pinMode(26, OUTPUT); digitalWrite(26, HIGH); pinMode(p7, OUTPUT); digitalWrite(26, HIGH); pinMode(p6, OUTPUT); digitalWrite(26, HIGH); //pinMode(PIN_LED_R, OUTPUT); //pinMode(PIN_LED_G, OUTPUT); //pinMode(PIN_LED_B, OUTPUT); //digitalWrite(PIN_LED_R, HIGH); //digitalWrite(PIN_LED_G, HIGH); //digitalWrite(PIN_LED_B, HIGH); } // the loop function runs over and over again forever void loop() { /*digitalWrite(PIN_LED_B, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(PIN_LED_B, LOW); // turn the LED off by making the voltage LOW delay(1000);*/ // wait for a second digitalWrite(26, digitalRead(A1)); // turn the LED on (HIGH is the voltage level) digitalWrite(p6, HIGH); // turn the LED on (HIGH is the voltage level) digitalWrite(p7, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(26, LOW); // turn the LED off by making the voltage LOW digitalWrite(p6, LOW); // turn the LED off by making the voltage LOW digitalWrite(p7, LOW); // turn the LED off by making the voltage LOW delay(1000); }