// CODE TO FLASH LED 2 then LED3 with Pause switch A0
#include "oled.h" //load the oled with Adafruit_SSD1306.h library
//############
int RED = 2; //LED 2 on PIN 2
int BLUE = 3; //LED 3 on PIN 3
int GREEN = 4; //LED 4 on PIN 4
void setup() {
setup_oled(); // Start the OLED Display
}
void loop() {
display_counter(HIGH); //NEEDED FOR DISPLAY TO WORK ## ALL LOOP CODE UNDER THIS
zerocounter(20); // ZERO the counter loop after 20secs
//put your code in here
digitalWrite(RED, HIGH); //Tiny LED on Pin RED on board
delay(200);
digitalWrite(RED, LOW);
delay(200);
digitalWrite(GREEN, HIGH); //Tiny LED on Pin RED on board
delay(300);
digitalWrite(GREEN, LOW);
delay(300);
digitalWrite(BLUE, HIGH); //Tiny LED on Pin RED on board
delay(100);
digitalWrite(BLUE, LOW);
delay(100);
}