//Mission Setup and create code Programming C++
// phase1
int G1 = 2 ;
int Y1 = 3 ;
int R1 = 4 ;
int Reset = 5 ;
// phase2
int G2 = 8 ;
int Y2 = 9 ;
int R2 = 10 ;
const int phase1[] ={2 , 3 , 4};
const int Phase2[] ={8, 9 ,10};
const int showLed[4] ={
0b1000,
0b0100,
0b0010,
0b0001,};
void setup() {
Serial.begin(9600);
Serial.println("Phase1");
}
void loop() {}