Page 1 of 1

External Tools Plugin- get rid of control characters

Posted: 02.05.2024 07:17
by Layerprogg
Hi, i use the External Tools Plugin for compiling Arduino source code.
It works, but control characters are displayed in the output window.
I tried different encodings (UTF8 in the screenshot) but couldn't get rid off these annoying control characters.
What can i do?
best regards, Jost

Re: External Tools Plugin- get rid of control characters

Posted: 02.05.2024 07:31
by Layerprogg
Hi,
i found it by myself, these are codes for coloured output.
Not a problem that can be solved by the External Tool Plugin

Re: External Tools Plugin- get rid of control characters

Posted: 02.05.2024 07:36
by main Alexey
Escape-sequences. 0x1B is the code of Escape-char.
I guess your IDE must have the option to disable Esc-sequences in the output.

Re: External Tools Plugin- get rid of control characters

Posted: 02.05.2024 07:39
by Layerprogg
I found it. There is a compile switch --no-color in the arduino-cli command which disables the colored output.
Thank you Alexey