MacOS - IDE 2.3.0 doesn't print anything

Hi team,
I'm trying IDE 2.3.0 on MacOS (2019) Ventura 13.6.3, everything is working well except logs printing, I don't see anything on the Serial monitor.

I tried to search this issue but can't find related things thus posted it here for help.

Hi @alexhoang. Your sketch is missing the essential call to Serial.begin, which initializes and configures the board's serial communication.

Add this line to your setup function and then upload the sketch again:

Serial.begin(9600);
1 Like

It works. Many thanks!

You are welcome. I'm glad it is working now.

Regards,
Per

1 Like

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.