int LtoR[] = {23,22,21,19,18};
int RtoL[] = {5,17,16,4,2};
int OddEven[] = {25,26,27,14,12};
void task1(void * parameters) {
//task 1 code here
for(;;){
for(int i = 0; i < 4; i++){
}
}
}
void task2(void * parameters) {
//task 2 code here
}
void task3(void * parameters) {
//task 3 code here
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}