Defined Monitor Speed in platform.ini is 115200 .... but Terminal ( com10: ) is configured with 9600 baud

[env:esp32-s3-devkitc-1]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
lib_deps =
**monitor_speed = 115200**
ottowinter/ESPAsyncWebServer-esphome@^3.0.0
adafruit/Adafruit NeoPixel@^1.10.7
arduino-libraries/Arduino_JSON@^0.2.0
makuna/RTC@^2.3.5
adafruit/Adafruit SSD1306@^2.5.7

Terminal Output is:

Leaving...
Hard resetting via RTS pin...
==================================== [SUCCESS] Took 26.71 seconds ====================================--- Terminal on COM10 | **9600 8-N-1**
--- Available filters and text transformations: colorize, debug, default, direct, esp32_exception_decoder, hexlify, log2file, nocontrol, printable, send_on_enter, time
--- More details at https://bit.ly/pio-monitor-filters
--- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H
KR␒/�ws�BBc#�
��␄��F�G�C"���d�baCpJ�w���g<R�)Ci��C)��Ci��
S���R�!�oR��␞�B�b��RS�S�!RR�B��B)RJ�Jcc���c!�v�B����bq֥R�a�L֧�+B��

seen this waning before:
Library Manager: Installing monitor_speed
Warning! Could not find the package with ‘monitor_speed’ requirements for your system ‘windows_amd64’

I am a newbie … not knowing where to change settings for windows 10 x86 64 bit …?

Google was not my friend …!

Any help is appreciated, please

If you write monitor_speed in the lib_deps list, of course it will try to search for that package and won’t find it.

You need to correct the syntax of your platformio.ini to

[env:esp32-s3-devkitc-1]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200
lib_deps =
   ottowinter/ESPAsyncWebServer-esphome@^3.0.0
   adafruit/Adafruit NeoPixel@^1.10.7
   arduino-libraries/Arduino_JSON@^0.2.0
   makuna/RTC@^2.3.5
   adafruit/Adafruit SSD1306@^2.5.7
1 Like