Serial-Monitor like inside Arduino-IDE

Hi,

how is it possible, to use the serial-monitor inside PlatformIO in the same behaviour like the Arduino-IDE?
I only want to send something over serial-Port, after pressing RETURN-Key.

Best

Erik

In platformio.ini add the following:

; Can be crlf,cr,lf,none. Crlf is default.
monitor_eol = crlf

; Can be yes,no. No is default.
monitor_echo = yes

monitor_filters =
    send_on_enter

Full details and links at Monitor options — PlatformIO latest documentation.

HTH

Cheers,
Norm.

1 Like

Great, that was exactly what I was looking for.

Thanks

Erik

1 Like