I’m new to PlatformIO and not able to get output from Serial Monitor. It works in the Arduino IDE and outputs to the Arduino Serial Monitor. Build and Upload are fine. I’ve done some searching and can’t find a solution that works. COM port selected in PlatformIO matches COM port in Device Manager.
Any suggestions would be appreciated.
#include <Arduino.h>
void setup()
{
Serial.begin(115200);
delay(1000);
}
void loop()
{
Serial.println("Hello world!");
delay(1000);
}
[env:esp32-s3-devkitc-1]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200