// Question: Does Wokwi support Serial1 and Serial2
// Answer : Yes
//
// The Logic Analyzer produces a file that can be
// analyzed on the computer.
// More information: https://docs.wokwi.com/guides/logic-analyzer
//
// Default pins for the ESP32:
// Serial : RX = RX (3), TX = TX (1)
// Serial1 : RX = 26 , TX = 27
// Serial2 : RX = * , TX = 25
//
// * There is no RX for Serial1.
// The numbers are different for each variant of the ESP32.
// They can be found here:
// https://github.com/espressif/arduino-esp32/blob/master/cores/esp32/HardwareSerial.h
void setup()
{
Serial.begin(115200);
Serial1.begin(115200);
Serial2.begin(115200);
}
void loop()
{
Serial.print("Serial");
Serial1.print("Serial1");
Serial2.print("Serial2");
delay(100);
}