// code for shoe cleaner/drier
#include "oled.h" //load the oled with Adafruit_SSD1306.h library
//############
int L2 = 2; //LED 2 on PIN 2
int L3 = 3; //LED 3 on PIN 3
int WL6 = 6; //White LED on Pin 6
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
while(digitalRead(A1)){
digitalWrite(WL6, HIGH); //Tiny LED on Pin 13 on board
OLED_TXT("CLEANING");}
while(digitalRead(A2)){
OLED_TXT("OFF");
digitalWrite(WL6, LOW);}
}