/*
   Josh Fender
   This is an example code to show how to create and use variables
*/
const int LED = 9;
int t_long = 1000;
int t_short = 250;
void setup() {
   pinMode(LED, OUTPUT);      
}
void loop() {
   digitalWrite(LED, HIGH);
   delay(t_long);
   digitalWrite(LED, LOW);
   delay(t_short);
   t_long = t_long + 250;
}