#1 (4 points)
Create a program that turns on lights 0 through 8 to green when leftButton is pressed. Only one if statement and one setPixelColor command may be used. Hint: (use for loop)
#2 (3 points)
Create a program that keeps all lights on green while leftButton OR rightButton is pressed. The lights should turn off when neither of the buttons are pressed. No if statements may be used. Only two setPixelColor commands may be used
#3 (3 points)
Create a program that turns on pixels 0, 2, 4, 5, 6, 8 and 9 to green when leftButton AND rightButton are pressed. Only one if statement may be used. Only one setPixelColor command may be used