#define LED_GREEN 18
#define LED_BLUE 19
#define BLINK_TIME_GREEN 500
#define BLINK_TIME_BLUE 700
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(LED_BLUE, OUTPUT);
pinMode(LED_GREEN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}