Arduino IDE 2.0.4 on Mac keeps crashing after sketch upload to ESP8266

I am new to Arduino programming and am not sure if I'm doing something wrong, the ESP8266board I'm using (https://www.amazon.co.uk/dp/B098B23NN9?psc=1&ref=ppx_yo2ov_dt_b_product_details - I have put the boards description at the bottom) is faulty, or there is an issue with Arduino IDE 2.0.4 or a library I've installed.

After uploading a simple sketch to the board to connect to my wifi and to print the board's IP address in the serial monitor, the IDE freezes and I have to force quit it. I cannot get the serial monitor to print the ip address but it does print "Finished Loop" as per the sketches loop program and the LED does blink as well.

Here is the sketch, any help would be much appreciated, thank you!:

// Base ESP8266
#include <ESP8266WiFi.h>
WiFiClient WIFI_CLIENT;

#define LIGHT_SENSOR A0
#define LED D8
#define BUTTON D2

void setup() {
  // Initialize the serial port
  Serial.begin(115200);

  // Configure light sensor pin as an input
  pinMode(LIGHT_SENSOR, INPUT);

  // Configure LED pin as an output
  pinMode(LED, OUTPUT);

  // Configure BUTTON pin as an input with a pullup
  pinMode(BUTTON, INPUT_PULLUP);

  // Attempt to connect to a specific access point
  WiFi.begin("Eds Place 24", "45Parkview45");

  // Keep checking the connection status until it is connected
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
  }
  delay(15000);
  // Print the IP address of your module
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
  digitalWrite(LED, HIGH);
}

void loop() {
  // Turn the LED on (HIGH is the voltage level)
  digitalWrite(LED, HIGH);

  // Wait for 1000 milliseconds
  delay(1000);

  // Turn the LED off by making the voltage LOW
  digitalWrite(LED, LOW);

  // Wait another 1000 milliseconds
  delay(1000);

  // Send a message over the serial port
  Serial.println("Finished loop");
}

Here is the board's description as per Amazon:

  • This is ESP8266 mini, it is a mini WiFi board based on ESP-8266EX.
  • · ESP8266 Mini 4M Bytes WLAN WiFi Internet Development Board Base on ESP8266 ESP-12F for Arduino, 100% Compatible with WeMos ESP8266 Mini.
  • · 11 digital input / output pins, all pins with interrupt / PWM / I2C / support 1 line (except D0); 1 analog input(3.2V max input). Micro USB connection; Compatible with Arduino; 1MB Flash; 500mA resettable fuse.
  • · WIFI development board,4M bytes.5V 1A switching power supply (switching power supply)onboard.
  • · Our ESP8266 mini development board compatible with Arduino WeMos and can be programmed in the for Arduino IDE.

Hi @edmarno

What are the exact symptoms of the freeze?

Is the Arduino IDE interface still visible, or did the window blank out?

Can you use any part of the Arduino IDE interface, or is it completely unresponsive?

Which operating system are you using (e.g., "Windows")?

Hi @ptillisch,

Thanks for your quick reply.

Sometimes the IDE freezes completely and is totally unresponsive, sometimes it just runs incredibly slowly, reacting maybe a minute or so before any action I take in the IDE is reflected in what is shown (eg typing a character, scrolling, switching between serial monitor and output). Usually I can't even close the window and I have to force quit. The interface has always remained visible.

I am using a Macbook Air (2020 model) running Venture 13.2.1.

In order to gather more information that might help us to troubleshoot your problem, I'm going to ask you to run Arduino IDE from the command line, then share the output.

Please do this:

  1. Open your Applications folder in Finder.
  2. Open the Utilities folder.
  3. Double-click on "Terminal".
  4. Type the following command in the Terminal window:
    "/Applications/Arduino IDE.app/Contents/MacOS/Arduino IDE"
    
  5. Press Enter
  6. Wait for Arduino IDE to finish starting.
  7. Perform an upload, just as you did before.
  8. Wait for the IDE to get into the "freeze" state.
  9. Switch back to the Terminal window.
  10. Press +A.
    This will select all the text in the Terminal window.
  11. Press +C.
    This will copy the selected text to the clipboard.
  12. Open a forum reply here by clicking the Reply button.
  13. Click the </> icon on the post composer toolbar.
    This will add the forum's code block markup (```) to your reply to make sure the output is correctly formatted.
    Code block
  14. Press +V.
    This will paste the output into the code block.
  15. Move the cursor outside of the code block markup before you add any additional text to your reply.
  16. Click the Reply button to post the output.

Please let me know if you have any questions or problems while following those instructions.

Last login: Wed Mar  8 23:58:47 on ttys000
edwardmarno@Edwards-Air ~ % "/Applications/Arduino IDE.app/Contents/MacOS/Arduino IDE"
Arduino IDE 2.0.4
Starting backend process. PID: 50262
Using browser-only version of superagent in non-browser environment
Configuration directory URI: 'file:///Users/edwardmarno/.theia'
Configuring to accept webviews on '^.+\.webview\..+$' hostname.
2023-03-09T17:57:55.184Z root INFO Backend Object.initialize: 2.6 ms [Finished 0.522 s after backend start]
2023-03-09T17:57:55.185Z root INFO Backend Object.configure: 2.2 ms [Finished 0.522 s after backend start]
2023-03-09T17:57:55.185Z root INFO Backend MessagingContribution.onStart: 0.8 ms [Finished 0.522 s after backend start]
2023-03-09T17:57:55.185Z root INFO Backend OSBackendApplicationContribution.configure: 0.2 ms [Finished 0.546 s after backend start]
2023-03-09T17:57:55.185Z root INFO Backend DefaultWorkspaceServer.onStart: 0.2 ms [Finished 0.546 s after backend start]
2023-03-09T17:57:55.186Z root INFO Backend PluginLocalizationBackendContribution.configure: 0.1 ms [Finished 0.546 s after backend start]
2023-03-09T17:57:55.186Z root INFO Backend PluginLocalizationBackendContribution.initialize: 24.1 ms [Finished 0.546 s after backend start]
2023-03-09T17:57:55.186Z root INFO Backend TaskBackendApplicationContribution.onStart: 0.1 ms [Finished 0.546 s after backend start]
2023-03-09T17:57:55.187Z root INFO Backend ElectronTokenBackendContribution.configure: 0.5 ms [Finished 0.547 s after backend start]
2023-03-09T17:57:55.187Z config INFO >>> Initializing CLI configuration...
2023-03-09T17:57:55.187Z root INFO Backend PluginDeployerContribution.initialize: 0.3 ms [Finished 0.547 s after backend start]
2023-03-09T17:57:55.188Z root INFO Backend ConfigServiceImpl.onStart: 0.5 ms [Finished 0.547 s after backend start]
2023-03-09T17:57:55.188Z config INFO Loading CLI configuration from /Users/edwardmarno/.arduinoIDE/arduino-cli.yaml...
2023-03-09T17:57:55.188Z root INFO Backend WebviewBackendSecurityWarnings.initialize: 0.2 ms [Finished 0.548 s after backend start]
2023-03-09T17:57:55.188Z root INFO Backend ArduinoDaemonImpl.onStart: 0.7 ms [Finished 0.548 s after backend start]
2023-03-09T17:57:55.188Z root INFO Backend NodeFileUploadService.configure: 1.1 ms [Finished 0.548 s after backend start]
2023-03-09T17:57:55.188Z daemon INFO Starting daemon from /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/arduino-ide-extension/build/arduino-cli...
2023-03-09T17:57:55.188Z discovery-log INFO start
2023-03-09T17:57:55.188Z discovery-log INFO start new deferred
2023-03-09T17:57:55.188Z root INFO Backend HostedPluginLocalizationService.initialize: 0.2 ms [Finished 0.549 s after backend start]
2023-03-09T17:57:55.188Z root INFO Backend BoardDiscovery.onStart: 0.7 ms [Finished 0.549 s after backend start]
2023-03-09T17:57:55.188Z root INFO Backend FileDownloadEndpoint.configure: 0.6 ms [Finished 0.549 s after backend start]
2023-03-09T17:57:55.188Z root INFO Backend AuthenticationServiceImpl.onStart: 0.2 ms [Finished 0.550 s after backend start]
2023-03-09T17:57:55.189Z root INFO Backend PluginApiContribution.configure: 0.2 ms [Finished 0.550 s after backend start]
2023-03-09T17:57:55.189Z root INFO Backend HostedPluginReader.configure: 0.2 ms [Finished 0.550 s after backend start]
2023-03-09T17:57:55.189Z root INFO Backend HostedPluginReader.configure: 0.1 ms [Finished 0.550 s after backend start]
2023-03-09T17:57:55.189Z root INFO Backend PlotterBackendContribution.configure: 0.6 ms [Finished 0.551 s after backend start]
2023-03-09T17:57:55.191Z root INFO Theia app listening on http://localhost:65327.
2023-03-09T17:57:55.191Z root INFO Finished starting backend application: 2.4 ms [Finished 0.552 s after backend start]
2023-03-09T17:57:55.191Z root WARN The local plugin referenced by local-dir:/Users/edwardmarno/.arduinoIDE/plugins does not exist.
2023-03-09T17:57:55.191Z root WARN The local plugin referenced by local-dir:/Users/edwardmarno/.arduinoIDE/extensions does not exist.
2023-03-09T17:57:55.191Z root WARN The local plugin referenced by local-dir:/Users/edwardmarno/.arduinoProIDE/plugins does not exist.
2023-03-09T17:57:55.207Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.207Z root INFO Resolved "cortex-debug" to a VS Code extension "cortex-debug@1.5.1" with engines:
2023-03-09T17:57:55.207Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.207Z root INFO Resolved "vscode-arduino-tools" to a VS Code extension "vscode-arduino-tools@0.0.2-beta.7" with engines:
2023-03-09T17:57:55.207Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.207Z root INFO Resolved "vscode-builtin-cpp" to a VS Code extension "cpp@1.52.1" with engines:
2023-03-09T17:57:55.207Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.207Z root INFO Resolved "vscode-builtin-json" to a VS Code extension "json@1.46.1" with engines:
2023-03-09T17:57:55.207Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.207Z root INFO Resolved "vscode-builtin-json-language-features" to a VS Code extension "json-language-features@1.46.1" with engines:
2023-03-09T17:57:55.207Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-bg" to a VS Code extension "vscode-language-pack-bg@1.48.3" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-cs" to a VS Code extension "vscode-language-pack-cs@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-de" to a VS Code extension "vscode-language-pack-de@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-es" to a VS Code extension "vscode-language-pack-es@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-fr" to a VS Code extension "vscode-language-pack-fr@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-hu" to a VS Code extension "vscode-language-pack-hu@1.48.3" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-it" to a VS Code extension "vscode-language-pack-it@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-ja" to a VS Code extension "vscode-language-pack-ja@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-ko" to a VS Code extension "vscode-language-pack-ko@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-nl" to a VS Code extension "vscode-language-pack-nl@1.48.3" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-pl" to a VS Code extension "vscode-language-pack-pl@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-pt-BR" to a VS Code extension "vscode-language-pack-pt-BR@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-ru" to a VS Code extension "vscode-language-pack-ru@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-tr" to a VS Code extension "vscode-language-pack-tr@1.53.2" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-uk" to a VS Code extension "vscode-language-pack-uk@1.48.3" with engines:
2023-03-09T17:57:55.208Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-03-09T17:57:55.208Z root INFO Resolved "vscode-language-pack-zh-hans" to a VS Code extension "vscode-language-pack-zh-hans@1.53.2" with engines:
2023-03-09T17:57:55.210Z config INFO Loaded CLI configuration: {"board_manager":{"additional_urls":["https://arduino.esp8266.com/stable/package_esp8266com_index.json"]},"build_cache":{"compilations_before_purge":10,"ttl":"720h0m0s"},"daemon":{"port":"50051"},"directories":{"builtin":{"libraries":"/Users/edwardmarno/Library/Arduino15/libraries"},"data":"/Users/edwardmarno/Library/Arduino15","downloads":"/Users/edwardmarno/Library/Arduino15/staging","user":"/Users/edwardmarno/Library/CloudStorage/Dropbox/arduino"},"library":{"enable_unsafe_install":false},"locale":"en","logging":{"file":"","format":"text","level":"info"},"metrics":{"addr":":9090","enabled":true},"output":{"no_color":false},"sketch":{"always_export_binaries":false},"updater":{"enable_notification":true}}
2023-03-09T17:57:55.211Z config INFO 'directories.data' and 'directories.user' are set in the CLI configuration model.
2023-03-09T17:57:55.211Z config INFO Loaded the CLI configuration.
2023-03-09T17:57:55.213Z config INFO Mapped the CLI configuration: {"dataDirUri":"file:///Users/edwardmarno/Library/Arduino15","sketchDirUri":"file:///Users/edwardmarno/Library/CloudStorage/Dropbox/arduino","additionalUrls":["https://arduino.esp8266.com/stable/package_esp8266com_index.json"],"network":"none","locale":"en"}
2023-03-09T17:57:55.214Z config INFO Validating the CLI configuration...
2023-03-09T17:57:55.218Z root INFO Resolve plugins list: 30.5 ms [Finished 0.580 s after backend start]
2023-03-09T17:57:55.221Z root INFO Deployed backend plugin "marus25.cortex-debug@1.5.1" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/cortex-debug/extension/dist/extension.js": 2.8 ms [Finished 0.583 s after backend start]
2023-03-09T17:57:55.223Z root INFO Deployed backend plugin "arduino.vscode-arduino-tools@0.0.2-beta.7" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-arduino-tools/extension/dist/bundle": 1.7 ms [Finished 0.585 s after backend start]
2023-03-09T17:57:55.229Z root INFO Deployed backend plugin "vscode.cpp@1.52.1" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-builtin-cpp/extension": 5.6 ms [Finished 0.590 s after backend start]
2023-03-09T17:57:55.230Z root INFO Deployed backend plugin "vscode.json@1.46.1" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-builtin-json/extension": 1.1 ms [Finished 0.591 s after backend start]
2023-03-09T17:57:55.230Z root INFO Deployed backend plugin "vscode.json-language-features@1.46.1" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-builtin-json-language-features/extension/client/dist/jsonMain": 0.3 ms [Finished 0.592 s after backend start]
2023-03-09T17:57:55.271Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-bg@1.48.3" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-bg/extension": 41.0 ms [Finished 0.633 s after backend start]
2023-03-09T17:57:55.271Z config INFO The CLI config is valid.
2023-03-09T17:57:55.271Z config INFO <<< Initialized the CLI configuration.
2023-03-09T17:57:55.277Z daemon INFO INFO[0000] Using config file: /Users/edwardmarno/.arduinoIDE/arduino-cli.yaml 
INFO[0000] arduino-cli version 0.31.0                   
INFO[0000] Executing `arduino-cli daemon`               
{"IP":"127.0.0.1","Port":"65328"}

2023-03-09T17:57:55.277Z daemon INFO Daemon is running.
2023-03-09T17:57:55.324Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-cs@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-cs/extension": 52.6 ms [Finished 0.685 s after backend start]
2023-03-09T17:57:55.373Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-de@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-de/extension": 49.6 ms [Finished 0.735 s after backend start]
2023-03-09T17:57:55.433Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-es@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-es/extension": 59.7 ms [Finished 0.795 s after backend start]
2023-03-09T17:57:55.439Z daemon INFO INFO[0000] Loading hardware from: /Users/edwardmarno/Library/Arduino15/packages 
INFO[0000] Loading package arduino from: /Users/edwardmarno/Library/Arduino15/packages/arduino/hardware 
INFO[0000] Checking signature                            error="opening signature file: open /Users/edwardmarno/Library/Arduino15/packages/arduino/hardware/avr/1.8.6/installed.json.sig: no such file or directory" index=/Users/edwardmarno/Library/Arduino15/packages/arduino/hardware/avr/1.8.6/installed.json signatureFile=/Users/edwardmarno/Library/Arduino15/packages/arduino/hardware/avr/1.8.6/installed.json.sig
INFO[0000] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"
INFO[0000] Loaded platform                               platform="arduino:avr@1.8.6"
INFO[0000] Checking existence of 'tools' path: /Users/edwardmarno/Library/Arduino15/packages/arduino/tools 
INFO[0000] Loading tools from dir: /Users/edwardmarno/Library/Arduino15/packages/arduino/tools 
INFO[0000] Loaded tool                                   tool="arduino:arduinoOTA@1.3.0"
INFO[0000] Loaded tool                                   tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
INFO[0000] Loaded tool                                   tool="arduino:avrdude@6.3.0-arduino17"
INFO[0000] Loading package builtin from: /Users/edwardmarno/Library/Arduino15/packages/builtin 
INFO[0000] Checking existence of 'tools' path: /Users/edwardmarno/Library/Arduino15/packages/builtin/tools 
INFO[0000] Loading tools from dir: /Users/edwardmarno/Library/Arduino15/packages/builtin/tools 
INFO[0000] Loaded tool                                   tool="builtin:ctags@5.8-arduino11"
INFO[0000] Loaded tool                                   tool="builtin:mdns-discovery@1.0.8"
INFO[0000] Loaded tool                                   tool="builtin:serial-discovery@1.4.0"
INFO[0000] Loaded tool                                   tool="builtin:serial-monitor@0.13.0"
INFO[0000] Loading package esp8266 from: /Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware 
INFO[0000] Checking signature                            error="opening signature file: open /Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/installed.json.sig: no such file or directory" index=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/installed.json signatureFile=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/installed.json.sig
INFO[0000] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"
INFO[0000] Loaded platform                               platform="esp8266:esp8266@2.7.4"
INFO[0000] Checking existence of 'tools' path: /Users/edwardmarno/Library/Arduino15/packages/esp8266/tools 
INFO[0000] Loading tools from dir: /Users/edwardmarno/Library/Arduino15/packages/esp8266/tools 
INFO[0000] Loaded tool                                   tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0000] Loaded tool                                   tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0000] Loaded tool                                   tool="esp8266:python3@3.7.2-post1"
INFO[0000] Loaded tool                                   tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0000] Loaded tool                                   tool="esp8266:xtensa-lx106-elf-gcc@3.1.0-gcc10.3-e5f9fec"
INFO[0000] Checking signature                            index=/Users/edwardmarno/Library/Arduino15/package_index.json signatureFile=/Users/edwardmarno/Library/Arduino15/package_index.json.sig trusted=true
INFO[0000] Checking signature                            error="opening signature file: open /Users/edwardmarno/Library/Arduino15/package_esp8266com_index.json.sig: no such file or directory" index=/Users/edwardmarno/Library/Arduino15/package_esp8266com_index.json signatureFile=/Users/edwardmarno/Library/Arduino15/package_esp8266com_index.json.sig
INFO[0000] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/packages/arduino/hardware/avr/1.8.6/libraries location=platform
INFO[0000] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/libraries location=platform
INFO[0000] Loading libraries index file                  index=/Users/edwardmarno/Library/Arduino15/library_index.json

2023-03-09T17:57:55.467Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-fr@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-fr/extension": 33.2 ms [Finished 0.828 s after backend start]
2023-03-09T17:57:55.488Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-hu@1.48.3" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-hu/extension": 21.1 ms [Finished 0.849 s after backend start]
2023-03-09T17:57:55.518Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-it@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-it/extension": 30.5 ms [Finished 0.880 s after backend start]
2023-03-09T17:57:55.519Z daemon INFO INFO[0000] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/libraries location=ide
INFO[0000] Adding libraries dir                          dir=/Users/edwardmarno/Library/CloudStorage/Dropbox/arduino/libraries location=user

2023-03-09T17:57:55.547Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ja@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-ja/extension": 28.2 ms [Finished 0.908 s after backend start]
2023-03-09T17:57:55.581Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ko@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-ko/extension": 34.2 ms [Finished 0.942 s after backend start]
2023-03-09T17:57:55.584Z discovery-log INFO start request start watch
2023-03-09T17:57:55.584Z discovery-log INFO start requested start watch
2023-03-09T17:57:55.584Z discovery-log INFO start resolved watching
2023-03-09T17:57:55.596Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-nl@1.48.3" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-nl/extension": 15.0 ms [Finished 0.957 s after backend start]
2023-03-09T17:57:55.596Z daemon INFO INFO[0000] starting discovery builtin:mdns-discovery process 
INFO[0000] starting discovery builtin:serial-discovery process 
INFO[0000] started discovery builtin:mdns-discovery process 
INFO[0000] sending command HELLO 1 "arduino-cli 0.31.0" to discovery builtin:mdns-discovery 
INFO[0000] started discovery builtin:serial-discovery process 
INFO[0000] sending command HELLO 1 "arduino-cli 0.31.0" to discovery builtin:serial-discovery 
INFO[0000] from discovery builtin:serial-discovery received message type: hello, message: OK, protocol version: 1 
INFO[0000] sending command START_SYNC to discovery builtin:serial-discovery 
INFO[0000] from discovery builtin:serial-discovery received message type: start_sync, message: OK 

2023-03-09T17:57:55.601Z daemon INFO INFO[0000] from discovery builtin:serial-discovery received message type: add, port: /dev/cu.wlan-debug 
INFO[0000] from discovery builtin:serial-discovery received message type: add, port: /dev/cu.Bluetooth-Incoming-Port 
INFO[0000] from discovery builtin:serial-discovery received message type: add, port: /dev/cu.usbserial-10 

2023-03-09T17:57:55.648Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-pl@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-pl/extension": 52.5 ms [Finished 1.010 s after backend start]
2023-03-09T17:57:55.649Z daemon INFO INFO[0000] from discovery builtin:mdns-discovery received message type: hello, message: OK, protocol version: 1 
INFO[0000] sending command START_SYNC to discovery builtin:mdns-discovery 
INFO[0000] from discovery builtin:mdns-discovery received message type: start_sync, message: OK 

2023-03-09T17:57:55.650Z discovery-log INFO {"eventType":"add","port":{"matchingBoardsList":[],"port":{"address":"/dev/cu.wlan-debug","label":"/dev/cu.wlan-debug","protocol":"serial","protocolLabel":"Serial Port","propertiesMap":[],"hardwareId":""}},"error":""}
2023-03-09T17:57:55.653Z discovery-log INFO {"eventType":"add","port":{"matchingBoardsList":[],"port":{"address":"/dev/cu.Bluetooth-Incoming-Port","label":"/dev/cu.Bluetooth-Incoming-Port","protocol":"serial","protocolLabel":"Serial Port","propertiesMap":[],"hardwareId":""}},"error":""}
2023-03-09T17:57:55.653Z discovery-log INFO {"eventType":"add","port":{"matchingBoardsList":[],"port":{"address":"/dev/cu.usbserial-10","label":"/dev/cu.usbserial-10","protocol":"serial","protocolLabel":"Serial Port (USB)","propertiesMap":[["pid","0x7523"],["serialNumber",""],["vid","0x1A86"]],"hardwareId":""}},"error":""}
2023-03-09T17:57:55.685Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-pt-br@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-pt-BR/extension": 36.3 ms [Finished 1.046 s after backend start]
2023-03-09T17:57:55.721Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ru@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-ru/extension": 36.0 ms [Finished 1.082 s after backend start]
2023-03-09T17:57:55.747Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-tr@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-tr/extension": 25.8 ms [Finished 1.108 s after backend start]
2023-03-09T17:57:55.765Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-uk@1.48.3" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-uk/extension": 18.9 ms [Finished 1.127 s after backend start]
2023-03-09T17:57:55.793Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-zh-hans@1.53.2" from "/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-language-pack-zh-hans/extension": 23.4 ms [Finished 1.151 s after backend start]
2023-03-09T17:57:55.793Z root INFO Deploy plugins list: 30.5 ms [Finished 1.155 s after backend start]
Opening channel for service path '/services/electron-window-ext'.
Opening channel for service path '/services/electron-window'.
Opening channel for service path '/services/ide-updater'.
2023-03-09T17:57:56.196Z root WARN Frontend a.configure took longer than the expected maximum 100 milliseconds: 174.0 ms [Finished 0.911 s after frontend start]
2023-03-09T17:57:56.364Z root INFO Start frontend contributions: 377.4 ms [Finished 1.078 s after frontend start]
2023-03-09T17:57:56.364Z root INFO Changed application state from 'init' to 'started_contributions'.
2023-03-09T17:57:56.367Z root INFO Changed application state from 'started_contributions' to 'attached_shell'.
2023-03-09T17:57:56.367Z root INFO >>> Restoring the layout state...
2023-03-09T17:57:56.367Z root INFO <<< Nothing to restore.
2023-03-09T17:57:56.381Z root INFO Initialize the workbench layout: 11.0 ms [Finished 1.105 s after frontend start]
2023-03-09T17:57:56.389Z root INFO Changed application state from 'attached_shell' to 'initialized_layout'.
2023-03-09T17:57:56.411Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53] Waiting for backend deployment: 61.5 ms [Finished 1.137 s after frontend start]
2023-03-09T17:57:56.635Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278) starting instance
2023-03-09T17:57:56.897Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53] Sync of 21 plugins: 470.1 ms [Finished 1.607 s after frontend start]
2023-03-09T17:57:56.897Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][marus25.cortex-debug]: Loaded contributions.
2023-03-09T17:57:56.897Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][arduino.vscode-arduino-tools]: Loaded contributions.
2023-03-09T17:57:56.897Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][vscode.cpp]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][vscode.json]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][vscode.json-language-features]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-bg]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-cs]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-de]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-es]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-fr]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-hu]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-it]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-ja]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-ko]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-nl]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-pl]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-pt-br]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-ru]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-tr]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-uk]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-zh-hans]: Loaded contributions.
2023-03-09T17:57:56.898Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53] Load contributions of 21 plugins: 15.2 ms [Finished 1.622 s after frontend start]
2023-03-09T17:57:56.907Z root WARN 'cpp' language is remapped from 'source.cpp.embedded.macro' to 'source.cpp' scope
2023-03-09T17:57:56.907Z root WARN a registered grammar configuration for 'cpp' language is overridden
2023-03-09 17:57:56.980 Arduino IDE Helper (Renderer)[50273:2217490] CoreText note: Client requested name ".NewYork-Regular", it will get TimesNewRomanPSMT rather than the intended font. All system UI font access should be through proper APIs such as CTFontCreateUIFontForLanguage() or +[NSFont systemFontOfSize:].
2023-03-09 17:57:56.980 Arduino IDE Helper (Renderer)[50273:2217490] CoreText note: Set a breakpoint on CTFontLogSystemFontNameRequest to debug.
2023-03-09T17:57:57.584Z root INFO Frontend application start: 1401.3 ms [Finished 2.946 s after backend start]
2023-03-09T17:57:57.586Z root INFO Replace loading indicator with ready workbench UI (animation): 992.2 ms [Finished 2.100 s after frontend start]
2023-03-09T17:57:57.586Z root INFO Changed application state from 'initialized_layout' to 'ready'.
2023-03-09T17:57:57.593Z root WARN Linked preference "workbench.colorCustomizations" not found. Source: "editor.bracketPairColorization.enabled"
Checking for update
Update for version 2.0.4 is not available (latest version: 2.0.4, downgrade is allowed).
2023-03-09T17:57:58.618Z root ERROR ---- !!!SLOW!!! DURATION: search took 551.952 ms. Args: [{"type":"Updatable"}] ----
2023-03-09T17:57:58.621Z daemon INFO INFO[0003] Updating index                                url="https://downloads.arduino.cc/packages/package_index.tar.bz2"

2023-03-09T17:57:58.621Z daemon INFO INFO[0003] Updating libraries index                     

2023-03-09T17:57:58.629Z root INFO core-client-provider [platform-index]
2023-03-09T17:57:58.630Z root INFO core-client-provider [library-index]
2023-03-09T17:57:58.630Z daemon INFO INFO[0003] Starting download                             url="https://downloads.arduino.cc/packages/package_index.tar.bz2"
INFO[0003] Starting download                             url="https://downloads.arduino.cc/libraries/library_index.tar.bz2"

2023-03-09T17:57:58.763Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): PluginManagerExtImpl/init()
2023-03-09T17:57:58.766Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(cortex-debug@1.5.1 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.768Z root INFO [hosted-plugin: 50278] Debugger contribution has been registered: cortex-debug
2023-03-09T17:57:58.770Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-arduino-tools@0.0.2-beta.7 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.771Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(cpp@1.52.1 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.771Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(json@1.46.1 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.772Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(json-language-features@1.46.1 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.773Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-bg@1.48.3 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.773Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-cs@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.774Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-de@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.774Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-es@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.775Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-fr@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.775Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-hu@1.48.3 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.776Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-it@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.776Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-ja@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.776Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-ko@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.776Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-nl@1.48.3 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.777Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-pl@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.777Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-pt-BR@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.778Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-ru@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.778Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-tr@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.778Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-uk@1.48.3 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.779Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): initializing(vscode-language-pack-zh-hans@1.53.2 with /Applications/Arduino IDE.app/Contents/Resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init)
2023-03-09T17:57:58.792Z daemon INFO INFO[0003] Updating index                                url="https://arduino.esp8266.com/stable/package_esp8266com_index.json"

2023-03-09T17:57:58.793Z daemon INFO INFO[0003] Starting download                             url="https://arduino.esp8266.com/stable/package_esp8266com_index.json"

2023-03-09T17:57:58.793Z root INFO core-client-provider [platform-index]
2023-03-09T17:57:58.811Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): PluginManagerExtImpl/loadPlugin(/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-builtin-json-language-features/extension/client/dist/jsonMain)
2023-03-09T17:57:58.831Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][marus25.cortex-debug]: Started plugin.
2023-03-09T17:57:58.832Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][arduino.vscode-arduino-tools]: Started plugin.
2023-03-09T17:57:58.832Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][vscode.cpp]: Started plugin.
2023-03-09T17:57:58.832Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][vscode.json]: Started plugin.
2023-03-09T17:57:58.832Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][vscode.json-language-features]: Started plugin.
2023-03-09T17:57:58.832Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-bg]: Started plugin.
2023-03-09T17:57:58.832Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-cs]: Started plugin.
2023-03-09T17:57:58.832Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-de]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-es]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-fr]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-hu]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-it]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-ja]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-ko]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-nl]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-pl]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-pt-br]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-ru]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-tr]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-uk]: Started plugin.
2023-03-09T17:57:58.833Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53][ms-ceintl.vscode-language-pack-zh-hans]: Started plugin.
2023-03-09T17:57:58.843Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): PluginManagerExtImpl/loadPlugin(/Applications/Arduino IDE.app/Contents/Resources/app/plugins/cortex-debug/extension/dist/extension.js)
2023-03-09T17:57:58.866Z root INFO [hosted-plugin: 50278] Debug configuration provider has been registered: cortex-debug, trigger: 1
2023-03-09T17:57:58.867Z root INFO [hosted-plugin: 50278] GDB server console created
2023-03-09T17:57:58.875Z root INFO [262153e6-9a16-4d5c-b3c9-a319512b6b53] Start of 21 plugins: 1972.6 ms [Finished 3.601 s after frontend start]
2023-03-09T17:57:58.887Z root INFO Starting language server: esp8266:esp8266:d1_mini:xtal=80,vt=flash,exception=legacy,ssl=all,eesz=4M2M,ip=lm2f,dbg=Disabled,lvl=None____,wipe=none,baud=921600
2023-03-09T17:57:58.897Z root INFO [hosted-plugin: 50278] PLUGIN_HOST(50278): PluginManagerExtImpl/loadPlugin(/Applications/Arduino IDE.app/Contents/Resources/app/plugins/vscode-arduino-tools/extension/dist/bundle)
2023-03-09T17:57:58.952Z daemon INFO INFO[0003] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0003] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0003] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0003] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"

2023-03-09T17:57:58.953Z daemon INFO INFO[0003] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/libraries location=ide
INFO[0003] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/libraries location=platform
INFO[0003] Adding libraries dir                          dir=/Users/edwardmarno/Library/CloudStorage/Dropbox/arduino/libraries location=user

2023-03-09T17:57:59.348Z daemon INFO INFO[0004] Resolving include ESP8266WiFi.h for arch esp8266 
INFO[0004]   found better lib                            lib=ESP8266WiFi prio=64C

2023-03-09T17:58:00.259Z daemon INFO INFO[0005] Loading hardware from: /Users/edwardmarno/Library/Arduino15/packages 

2023-03-09T17:58:00.259Z daemon INFO INFO[0005] Loading package arduino from: /Users/edwardmarno/Library/Arduino15/packages/arduino/hardware 

2023-03-09T17:58:00.261Z daemon INFO INFO[0005] Checking signature                            error="opening signature file: open /Users/edwardmarno/Library/Arduino15/packages/arduino/hardware/avr/1.8.6/installed.json.sig: no such file or directory" index=/Users/edwardmarno/Library/Arduino15/packages/arduino/hardware/avr/1.8.6/installed.json signatureFile=/Users/edwardmarno/Library/Arduino15/packages/arduino/hardware/avr/1.8.6/installed.json.sig

2023-03-09T17:58:00.263Z daemon INFO INFO[0005] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"

2023-03-09T17:58:00.263Z daemon INFO INFO[0005] Loaded platform                               platform="arduino:avr@1.8.6"
INFO[0005] Checking existence of 'tools' path: /Users/edwardmarno/Library/Arduino15/packages/arduino/tools 
INFO[0005] Loading tools from dir: /Users/edwardmarno/Library/Arduino15/packages/arduino/tools 

2023-03-09T17:58:00.263Z daemon INFO INFO[0005] Loaded tool                                   tool="arduino:arduinoOTA@1.3.0"
INFO[0005] Loaded tool                                   tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
INFO[0005] Loaded tool                                   tool="arduino:avrdude@6.3.0-arduino17"

2023-03-09T17:58:00.263Z daemon INFO INFO[0005] Loading package builtin from: /Users/edwardmarno/Library/Arduino15/packages/builtin 
INFO[0005] Checking existence of 'tools' path: /Users/edwardmarno/Library/Arduino15/packages/builtin/tools 
INFO[0005] Loading tools from dir: /Users/edwardmarno/Library/Arduino15/packages/builtin/tools 
INFO[0005] Loaded tool                                   tool="builtin:ctags@5.8-arduino11"

2023-03-09T17:58:00.263Z daemon INFO INFO[0005] Loaded tool                                   tool="builtin:mdns-discovery@1.0.8"
INFO[0005] Loaded tool                                   tool="builtin:serial-discovery@1.4.0"
INFO[0005] Loaded tool                                   tool="builtin:serial-monitor@0.13.0"

2023-03-09T17:58:00.263Z daemon INFO INFO[0005] Loading package esp8266 from: /Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware 

2023-03-09T17:58:00.264Z daemon INFO INFO[0005] Checking signature                            error="opening signature file: open /Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/installed.json.sig: no such file or directory" index=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/installed.json signatureFile=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/installed.json.sig

2023-03-09T17:58:00.274Z daemon INFO INFO[0005] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"
INFO[0005] Loaded platform                               platform="esp8266:esp8266@2.7.4"

2023-03-09T17:58:00.274Z daemon INFO INFO[0005] Checking existence of 'tools' path: /Users/edwardmarno/Library/Arduino15/packages/esp8266/tools 
INFO[0005] Loading tools from dir: /Users/edwardmarno/Library/Arduino15/packages/esp8266/tools 
INFO[0005] Loaded tool                                   tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0005] Loaded tool                                   tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0005] Loaded tool                                   tool="esp8266:python3@3.7.2-post1"

2023-03-09T17:58:00.275Z daemon INFO INFO[0005] Loaded tool                                   tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0005] Loaded tool                                   tool="esp8266:xtensa-lx106-elf-gcc@3.1.0-gcc10.3-e5f9fec"

2023-03-09T17:58:00.278Z daemon INFO INFO[0005] Checking signature                            index=/Users/edwardmarno/Library/Arduino15/package_index.json signatureFile=/Users/edwardmarno/Library/Arduino15/package_index.json.sig trusted=true

2023-03-09T17:58:00.280Z daemon INFO INFO[0005] Checking signature                            error="opening signature file: open /Users/edwardmarno/Library/Arduino15/package_esp8266com_index.json.sig: no such file or directory" index=/Users/edwardmarno/Library/Arduino15/package_esp8266com_index.json signatureFile=/Users/edwardmarno/Library/Arduino15/package_esp8266com_index.json.sig

2023-03-09T17:58:02.606Z daemon INFO INFO[0007] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/packages/arduino/hardware/avr/1.8.6/libraries location=platform
INFO[0007] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/libraries location=platform
INFO[0007] Loading libraries index file                  index=/Users/edwardmarno/Library/Arduino15/library_index.json

2023-03-09T17:58:02.622Z daemon INFO INFO[0007] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0007] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0007] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0007] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"

2023-03-09T17:58:02.729Z daemon INFO INFO[0007] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/libraries location=ide

2023-03-09T17:58:02.729Z daemon INFO INFO[0007] Adding libraries dir                          dir=/Users/edwardmarno/Library/CloudStorage/Dropbox/arduino/libraries location=user

2023-03-09T17:58:06.976Z monitor-service INFO starting monitor
2023-03-09T17:58:06.979Z daemon INFO INFO[0011] Starting monitor process                      monitor=serial-monitor
INFO[0011] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:58:06.984Z daemon INFO INFO[0011] Monitor process started successfully!         monitor=serial-monitor

2023-03-09T17:58:06.984Z daemon INFO INFO[0011] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor
INFO[0011] Monitor process started successfully!         monitor=serial-monitor
INFO[0011] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:58:07.007Z daemon INFO INFO[0011] received message                              error=false event_type=hello message=OK monitor=serial-monitor

2023-03-09T17:58:07.007Z daemon INFO INFO[0011] sending command                               command=DESCRIBE monitor=serial-monitor
INFO[0011] received message                              error=false event_type=hello message=OK monitor=serial-monitor
INFO[0011] sending command                               command=DESCRIBE monitor=serial-monitor
INFO[0011] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0011] sending command                               command=QUIT monitor=serial-monitor
INFO[0011] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0011] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:58:07.008Z daemon INFO INFO[0011] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0011] sending command                               command=QUIT monitor=serial-monitor
INFO[0011] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0011] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:58:07.009Z daemon INFO ERRO[0011] stopped decode loop: EOF                      monitor=serial-monitor

2023-03-09T17:58:07.009Z daemon INFO ERRO[0011] stopped decode loop: read |0: file already closed  monitor=serial-monitor
INFO[0011] Monitor process killed                        monitor=serial-monitor
INFO[0011] Monitor process killed                        monitor=serial-monitor

2023-03-09T17:58:07.012Z daemon INFO INFO[0011] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:58:07.017Z daemon INFO INFO[0011] Monitor process started successfully!         monitor=serial-monitor

2023-03-09T17:58:07.017Z daemon INFO INFO[0011] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:58:07.026Z daemon INFO INFO[0011] received message                              error=false event_type=hello message=OK monitor=serial-monitor
INFO[0011] sending command                               command=DESCRIBE monitor=serial-monitor

2023-03-09T17:58:07.026Z daemon INFO INFO[0011] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0011] sending command                               command="CONFIGURE baudrate 115200" monitor=serial-monitor
INFO[0011] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0011] sending command                               command="CONFIGURE bits 8" monitor=serial-monitor

2023-03-09T17:58:07.026Z daemon INFO INFO[0011] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0011] sending command                               command="CONFIGURE dtr off" monitor=serial-monitor
INFO[0011] received message                              error=false event_type=configure message=OK monitor=serial-monitor

2023-03-09T17:58:07.026Z daemon INFO INFO[0011] sending command                               command="CONFIGURE parity none" monitor=serial-monitor
INFO[0011] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0011] sending command                               command="CONFIGURE rts off" monitor=serial-monitor

2023-03-09T17:58:07.026Z daemon INFO INFO[0011] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0011] sending command                               command="CONFIGURE stop_bits 1" monitor=serial-monitor

2023-03-09T17:58:07.026Z daemon INFO INFO[0011] received message                              error=false event_type=configure message=OK monitor=serial-monitor

2023-03-09T17:58:07.026Z daemon INFO INFO[0011] sending command                               command="OPEN 127.0.0.1:65411 /dev/cu.usbserial-10" monitor=serial-monitor

2023-03-09T17:58:07.064Z daemon INFO INFO[0011] received message                              error=false event_type=open message=OK monitor=serial-monitor

2023-03-09T17:58:07.064Z daemon INFO INFO[0011] Port /dev/cu.usbserial-10 successfully opened 

2023-03-09T17:58:07.065Z monitor-service INFO Using port configuration for serial:/dev/cu.usbserial-10: {"settingsList":[{"settingId":"baudrate","value":"115200"},{"settingId":"bits","value":"8"},{"settingId":"dtr","value":"off"},{"settingId":"parity","value":"none"},{"settingId":"rts","value":"off"},{"settingId":"stop_bits","value":"1"}]}
2023-03-09T17:58:07.065Z monitor-service INFO started monitor to /dev/cu.usbserial-10 using serial
2023-03-09T17:58:18.836Z daemon INFO INFO[0023] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0023] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0023] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0023] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0023] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/libraries location=ide
INFO[0023] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/libraries location=platform
INFO[0023] Adding libraries dir                          dir=/Users/edwardmarno/Library/CloudStorage/Dropbox/arduino/libraries location=user

2023-03-09T17:58:19.091Z daemon INFO INFO[0023] Resolving include ESP8266WiFi.h for arch esp8266 

2023-03-09T17:58:19.091Z daemon INFO INFO[0023]   found better lib                            lib=ESP8266WiFi prio=64C

2023-03-09T17:58:21.880Z root INFO Executing 'arduino.languageserver.notifyBuildDidComplete' with {"buildOutputUri":"file:///private/var/folders/dx/2_bktd091jn0m3d60f11zpx00000gn/T/arduino/sketches/D046A184DF27A3A0A93EE6944268C745"}
2023-03-09T17:58:21.919Z monitor-service INFO stopped monitor to /dev/cu.usbserial-10 using serial
2023-03-09T17:58:21.920Z daemon INFO INFO[0026] sending command                               command=CLOSE monitor=serial-monitor

2023-03-09T17:58:21.922Z daemon INFO INFO[0026] received message                              error=false event_type=close message=OK monitor=serial-monitor

2023-03-09T17:58:21.922Z daemon INFO INFO[0026] sending command                               command=QUIT monitor=serial-monitor
INFO[0026] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0026] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:58:21.923Z daemon INFO ERRO[0026] stopped decode loop: EOF                      monitor=serial-monitor

2023-03-09T17:58:21.923Z daemon INFO ERRO[0026] Waiting for process end                       error="signal: killed" monitor=serial-monitor
INFO[0026] Monitor process killed                        monitor=serial-monitor

2023-03-09T17:58:21.924Z monitor-service INFO monitor to /dev/cu.usbserial-10 using serial closed by server
2023-03-09T17:58:21.924Z monitor-service INFO monitor to /dev/cu.usbserial-10 using serial closed by client
2023-03-09T17:58:21.926Z daemon INFO INFO[0026] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0026] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0026] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0026] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0026] Tool required for upload                      tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0026] Tool required for upload                      tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0026] Tool required for upload                      tool="esp8266:python3@3.7.2-post1"
INFO[0026] Tool required for upload                      tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0026] Tool required for upload                      tool="builtin:ctags@5.8-arduino11"
INFO[0026] Tool required for upload                      tool="arduino:avrdude@6.3.0-arduino17"
INFO[0026] Tool required for upload                      tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
INFO[0026] Tool required for upload                      tool="arduino:arduinoOTA@1.3.0"
INFO[0026] Tool required for upload                      tool="builtin:serial-monitor@0.13.0"
INFO[0026] Tool required for upload                      tool="builtin:mdns-discovery@1.0.8"
INFO[0026] Tool required for upload                      tool="builtin:serial-discovery@1.4.0"

2023-03-09T17:58:22.895Z daemon INFO INFO[0027] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"

2023-03-09T17:58:22.895Z daemon INFO INFO[0027] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0027] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0027] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"

2023-03-09T17:58:29.553Z monitor-service INFO starting monitor
2023-03-09T17:58:29.555Z daemon INFO INFO[0034] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:58:29.559Z daemon INFO INFO[0034] Monitor process started successfully!         monitor=serial-monitor

2023-03-09T17:58:29.559Z daemon INFO INFO[0034] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:58:29.570Z daemon INFO INFO[0034] received message                              error=false event_type=hello message=OK monitor=serial-monitor

2023-03-09T17:58:29.570Z daemon INFO INFO[0034] sending command                               command=DESCRIBE monitor=serial-monitor
INFO[0034] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0034] sending command                               command=QUIT monitor=serial-monitor

2023-03-09T17:58:29.570Z daemon INFO INFO[0034] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0034] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:58:29.571Z daemon INFO ERRO[0034] stopped decode loop: EOF                      monitor=serial-monitor

2023-03-09T17:58:29.571Z daemon INFO INFO[0034] Monitor process killed                        monitor=serial-monitor

2023-03-09T17:58:29.573Z daemon INFO INFO[0034] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:58:29.577Z daemon INFO INFO[0034] Monitor process started successfully!         monitor=serial-monitor

2023-03-09T17:58:29.577Z daemon INFO INFO[0034] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:58:29.586Z daemon INFO INFO[0034] received message                              error=false event_type=hello message=OK monitor=serial-monitor
INFO[0034] sending command                               command=DESCRIBE monitor=serial-monitor

2023-03-09T17:58:29.586Z daemon INFO INFO[0034] received message                              error=false event_type=describe message=OK monitor=serial-monitor

2023-03-09T17:58:29.586Z daemon INFO INFO[0034] sending command                               command="CONFIGURE baudrate 115200" monitor=serial-monitor

2023-03-09T17:58:29.586Z daemon INFO INFO[0034] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0034] sending command                               command="CONFIGURE bits 8" monitor=serial-monitor

2023-03-09T17:58:29.586Z daemon INFO INFO[0034] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0034] sending command                               command="CONFIGURE dtr off" monitor=serial-monitor

2023-03-09T17:58:29.587Z daemon INFO INFO[0034] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0034] sending command                               command="CONFIGURE parity none" monitor=serial-monitor

2023-03-09T17:58:29.587Z daemon INFO INFO[0034] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0034] sending command                               command="CONFIGURE rts off" monitor=serial-monitor

2023-03-09T17:58:29.587Z daemon INFO INFO[0034] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0034] sending command                               command="CONFIGURE stop_bits 1" monitor=serial-monitor

2023-03-09T17:58:29.587Z daemon INFO INFO[0034] received message                              error=false event_type=configure message=OK monitor=serial-monitor

2023-03-09T17:58:29.587Z daemon INFO INFO[0034] sending command                               command="OPEN 127.0.0.1:65505 /dev/cu.usbserial-10" monitor=serial-monitor

2023-03-09T17:58:29.614Z daemon INFO INFO[0034] received message                              error=false event_type=open message=OK monitor=serial-monitor

2023-03-09T17:58:29.614Z daemon INFO INFO[0034] Port /dev/cu.usbserial-10 successfully opened 

2023-03-09T17:58:29.615Z monitor-service INFO Using port configuration for serial:/dev/cu.usbserial-10: {"settingsList":[{"settingId":"baudrate","value":"115200"},{"settingId":"bits","value":"8"},{"settingId":"dtr","value":"off"},{"settingId":"parity","value":"none"},{"settingId":"rts","value":"off"},{"settingId":"stop_bits","value":"1"}]}
2023-03-09T17:58:29.615Z monitor-service INFO started monitor to /dev/cu.usbserial-10 using serial
2023-03-09T17:58:29.616Z monitor-service INFO No port configuration changes have been detected. No need to send configure commands to the running monitor serial:/dev/cu.usbserial-10.
2023-03-09T17:59:04.127Z daemon INFO INFO[0068] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0068] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0068] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0068] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0068] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/libraries location=ide
INFO[0068] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/libraries location=platform
INFO[0068] Adding libraries dir                          dir=/Users/edwardmarno/Library/CloudStorage/Dropbox/arduino/libraries location=user

2023-03-09T17:59:04.477Z daemon INFO INFO[0069] Resolving include ESP8266WiFi.h for arch esp8266 

2023-03-09T17:59:04.477Z daemon INFO INFO[0069]   found better lib                            lib=ESP8266WiFi prio=64C

2023-03-09T17:59:07.829Z root INFO Executing 'arduino.languageserver.notifyBuildDidComplete' with {"buildOutputUri":"file:///private/var/folders/dx/2_bktd091jn0m3d60f11zpx00000gn/T/arduino/sketches/D046A184DF27A3A0A93EE6944268C745"}
2023-03-09T17:59:09.217Z monitor-service INFO stopped monitor to /dev/cu.usbserial-10 using serial
2023-03-09T17:59:09.218Z daemon INFO INFO[0073] sending command                               command=CLOSE monitor=serial-monitor

2023-03-09T17:59:09.222Z daemon INFO INFO[0073] received message                              error=false event_type=close message=OK monitor=serial-monitor

2023-03-09T17:59:09.222Z daemon INFO INFO[0073] sending command                               command=QUIT monitor=serial-monitor

2023-03-09T17:59:09.223Z daemon INFO INFO[0073] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0073] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:59:09.224Z daemon INFO ERRO[0073] stopped decode loop: EOF                      monitor=serial-monitor
INFO[0073] Monitor process killed                        monitor=serial-monitor

2023-03-09T17:59:09.227Z monitor-service INFO monitor to /dev/cu.usbserial-10 using serial closed by server
2023-03-09T17:59:09.227Z monitor-service INFO monitor to /dev/cu.usbserial-10 using serial closed by client
2023-03-09T17:59:09.232Z daemon INFO INFO[0073] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"

2023-03-09T17:59:09.233Z daemon INFO INFO[0073] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0073] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0073] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0073] Tool required for upload                      tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0073] Tool required for upload                      tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0073] Tool required for upload                      tool="esp8266:python3@3.7.2-post1"
INFO[0073] Tool required for upload                      tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0073] Tool required for upload                      tool="builtin:ctags@5.8-arduino11"
INFO[0073] Tool required for upload                      tool="arduino:arduinoOTA@1.3.0"
INFO[0073] Tool required for upload                      tool="arduino:avrdude@6.3.0-arduino17"
INFO[0073] Tool required for upload                      tool="builtin:mdns-discovery@1.0.8"
INFO[0073] Tool required for upload                      tool="builtin:serial-discovery@1.4.0"
INFO[0073] Tool required for upload                      tool="builtin:serial-monitor@0.13.0"
INFO[0073] Tool required for upload                      tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"

2023-03-09T17:59:10.239Z daemon INFO INFO[0075] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0075] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"

2023-03-09T17:59:10.239Z daemon INFO INFO[0075] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0075] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"

2023-03-09T17:59:16.848Z monitor-service INFO starting monitor
2023-03-09T17:59:16.850Z daemon INFO INFO[0081] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:59:16.854Z daemon INFO INFO[0081] Monitor process started successfully!         monitor=serial-monitor
INFO[0081] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:59:16.861Z daemon INFO INFO[0081] received message                              error=false event_type=hello message=OK monitor=serial-monitor

2023-03-09T17:59:16.862Z daemon INFO INFO[0081] sending command                               command=DESCRIBE monitor=serial-monitor
INFO[0081] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0081] sending command                               command=QUIT monitor=serial-monitor

2023-03-09T17:59:16.862Z daemon INFO INFO[0081] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0081] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:59:16.862Z daemon INFO ERRO[0081] stopped decode loop: EOF                      monitor=serial-monitor

2023-03-09T17:59:16.862Z daemon INFO INFO[0081] Monitor process killed                        monitor=serial-monitor

2023-03-09T17:59:16.865Z daemon INFO INFO[0081] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:59:16.872Z daemon INFO INFO[0081] Monitor process started successfully!         monitor=serial-monitor
INFO[0081] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:59:16.878Z daemon INFO INFO[0081] received message                              error=false event_type=hello message=OK monitor=serial-monitor
INFO[0081] sending command                               command=DESCRIBE monitor=serial-monitor

2023-03-09T17:59:16.879Z daemon INFO INFO[0081] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0081] sending command                               command="CONFIGURE baudrate 115200" monitor=serial-monitor

2023-03-09T17:59:16.879Z daemon INFO INFO[0081] received message                              error=false event_type=configure message=OK monitor=serial-monitor

2023-03-09T17:59:16.881Z daemon INFO INFO[0081] sending command                               command="CONFIGURE bits 8" monitor=serial-monitor
INFO[0081] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0081] sending command                               command="CONFIGURE dtr off" monitor=serial-monitor
INFO[0081] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0081] sending command                               command="CONFIGURE parity none" monitor=serial-monitor
INFO[0081] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0081] sending command                               command="CONFIGURE rts off" monitor=serial-monitor
INFO[0081] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0081] sending command                               command="CONFIGURE stop_bits 1" monitor=serial-monitor
INFO[0081] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0081] sending command                               command="OPEN 127.0.0.1:49330 /dev/cu.usbserial-10" monitor=serial-monitor

2023-03-09T17:59:16.907Z daemon INFO INFO[0081] received message                              error=false event_type=open message=OK monitor=serial-monitor

2023-03-09T17:59:16.908Z daemon INFO INFO[0081] Port /dev/cu.usbserial-10 successfully opened 

2023-03-09T17:59:16.909Z monitor-service INFO Using port configuration for serial:/dev/cu.usbserial-10: {"settingsList":[{"settingId":"baudrate","value":"115200"},{"settingId":"bits","value":"8"},{"settingId":"dtr","value":"off"},{"settingId":"parity","value":"none"},{"settingId":"rts","value":"off"},{"settingId":"stop_bits","value":"1"}]}
2023-03-09T17:59:16.909Z monitor-service INFO started monitor to /dev/cu.usbserial-10 using serial
2023-03-09T17:59:25.800Z monitor-service INFO No port configuration changes have been detected. No need to send configure commands to the running monitor serial:/dev/cu.usbserial-10.
2023-03-09T17:59:25.801Z monitor-service INFO No port configuration changes have been detected. No need to send configure commands to the running monitor serial:/dev/cu.usbserial-10.
2023-03-09T17:59:53.941Z monitor-service INFO stopped monitor to /dev/cu.usbserial-10 using serial
2023-03-09T17:59:53.942Z daemon INFO INFO[0118] sending command                               command=CLOSE monitor=serial-monitor

2023-03-09T17:59:53.945Z daemon INFO INFO[0118] received message                              error=false event_type=close message=OK monitor=serial-monitor
INFO[0118] sending command                               command=QUIT monitor=serial-monitor
INFO[0118] received message                              error=false event_type=quit message=OK monitor=serial-monitor

2023-03-09T17:59:53.946Z daemon INFO INFO[0118] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:59:53.948Z daemon INFO ERRO[0118] stopped decode loop: EOF                      monitor=serial-monitor
INFO[0118] Monitor process killed                        monitor=serial-monitor

2023-03-09T17:59:53.949Z monitor-service INFO monitor to /dev/cu.usbserial-10 using serial closed by server
2023-03-09T17:59:53.949Z monitor-service INFO monitor to /dev/cu.usbserial-10 using serial closed by client
2023-03-09T17:59:59.469Z monitor-service INFO starting monitor
2023-03-09T17:59:59.471Z daemon INFO INFO[0124] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:59:59.471Z daemon INFO INFO[0124] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:59:59.479Z daemon INFO INFO[0124] Monitor process started successfully!         monitor=serial-monitor
INFO[0124] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:59:59.479Z daemon INFO INFO[0124] Monitor process started successfully!         monitor=serial-monitor
INFO[0124] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:59:59.492Z daemon INFO INFO[0124] received message                              error=false event_type=hello message=OK monitor=serial-monitor

2023-03-09T17:59:59.492Z daemon INFO INFO[0124] received message                              error=false event_type=hello message=OK monitor=serial-monitor
INFO[0124] sending command                               command=DESCRIBE monitor=serial-monitor
INFO[0124] sending command                               command=DESCRIBE monitor=serial-monitor

2023-03-09T17:59:59.492Z daemon INFO INFO[0124] received message                              error=false event_type=describe message=OK monitor=serial-monitor

2023-03-09T17:59:59.492Z daemon INFO INFO[0124] sending command                               command=QUIT monitor=serial-monitor
INFO[0124] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0124] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:59:59.492Z daemon INFO INFO[0124] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0124] sending command                               command=QUIT monitor=serial-monitor

2023-03-09T17:59:59.493Z daemon INFO INFO[0124] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0124] Killing monitor process                       monitor=serial-monitor

2023-03-09T17:59:59.493Z daemon INFO ERRO[0124] stopped decode loop: EOF                      monitor=serial-monitor

2023-03-09T17:59:59.494Z daemon INFO INFO[0124] Monitor process killed                        monitor=serial-monitor
ERRO[0124] stopped decode loop: EOF                      monitor=serial-monitor
INFO[0124] Monitor process killed                        monitor=serial-monitor

2023-03-09T17:59:59.497Z daemon INFO INFO[0124] Starting monitor process                      monitor=serial-monitor

2023-03-09T17:59:59.500Z daemon INFO INFO[0124] Monitor process started successfully!         monitor=serial-monitor

2023-03-09T17:59:59.500Z daemon INFO INFO[0124] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T17:59:59.509Z daemon INFO INFO[0124] received message                              error=false event_type=hello message=OK monitor=serial-monitor

2023-03-09T17:59:59.510Z daemon INFO INFO[0124] sending command                               command=DESCRIBE monitor=serial-monitor
INFO[0124] received message                              error=false event_type=describe message=OK monitor=serial-monitor

2023-03-09T17:59:59.510Z daemon INFO INFO[0124] sending command                               command="CONFIGURE baudrate 115200" monitor=serial-monitor

2023-03-09T17:59:59.510Z daemon INFO INFO[0124] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0124] sending command                               command="CONFIGURE bits 8" monitor=serial-monitor

2023-03-09T17:59:59.510Z daemon INFO INFO[0124] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0124] sending command                               command="CONFIGURE dtr off" monitor=serial-monitor

2023-03-09T17:59:59.510Z daemon INFO INFO[0124] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0124] sending command                               command="CONFIGURE parity none" monitor=serial-monitor
INFO[0124] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0124] sending command                               command="CONFIGURE rts off" monitor=serial-monitor
INFO[0124] received message                              error=false event_type=configure message=OK monitor=serial-monitor

2023-03-09T17:59:59.510Z daemon INFO INFO[0124] sending command                               command="CONFIGURE stop_bits 1" monitor=serial-monitor
INFO[0124] received message                              error=false event_type=configure message=OK monitor=serial-monitor

2023-03-09T17:59:59.510Z daemon INFO INFO[0124] sending command                               command="OPEN 127.0.0.1:49531 /dev/cu.usbserial-10" monitor=serial-monitor

2023-03-09T17:59:59.538Z daemon INFO INFO[0124] received message                              error=false event_type=open message=OK monitor=serial-monitor

2023-03-09T17:59:59.538Z daemon INFO INFO[0124] Port /dev/cu.usbserial-10 successfully opened 

2023-03-09T17:59:59.539Z monitor-service INFO Using port configuration for serial:/dev/cu.usbserial-10: {"settingsList":[{"settingId":"baudrate","value":"115200"},{"settingId":"bits","value":"8"},{"settingId":"dtr","value":"off"},{"settingId":"parity","value":"none"},{"settingId":"rts","value":"off"},{"settingId":"stop_bits","value":"1"}]}
2023-03-09T17:59:59.539Z monitor-service INFO started monitor to /dev/cu.usbserial-10 using serial
2023-03-09T18:00:05.447Z daemon INFO INFO[0130] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0130] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0130] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0130] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0130] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/libraries location=ide
INFO[0130] Adding libraries dir                          dir=/Users/edwardmarno/Library/Arduino15/packages/esp8266/hardware/esp8266/2.7.4/libraries location=platform
INFO[0130] Adding libraries dir                          dir=/Users/edwardmarno/Library/CloudStorage/Dropbox/arduino/libraries location=user

2023-03-09T18:00:05.733Z daemon INFO INFO[0130] Resolving include ESP8266WiFi.h for arch esp8266 

2023-03-09T18:00:05.733Z daemon INFO INFO[0130]   found better lib                            lib=ESP8266WiFi prio=64C

2023-03-09T18:00:08.501Z root INFO Executing 'arduino.languageserver.notifyBuildDidComplete' with {"buildOutputUri":"file:///private/var/folders/dx/2_bktd091jn0m3d60f11zpx00000gn/T/arduino/sketches/D046A184DF27A3A0A93EE6944268C745"}
2023-03-09T18:00:08.540Z monitor-service INFO stopped monitor to /dev/cu.usbserial-10 using serial
2023-03-09T18:00:08.540Z daemon INFO INFO[0133] sending command                               command=CLOSE monitor=serial-monitor

2023-03-09T18:00:08.542Z daemon INFO INFO[0133] received message                              error=false event_type=close message=OK monitor=serial-monitor

2023-03-09T18:00:08.542Z daemon INFO INFO[0133] sending command                               command=QUIT monitor=serial-monitor
INFO[0133] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0133] Killing monitor process                       monitor=serial-monitor

2023-03-09T18:00:08.543Z daemon INFO ERRO[0133] stopped decode loop: EOF                      monitor=serial-monitor
ERRO[0133] Waiting for process end                       error="signal: killed" monitor=serial-monitor

2023-03-09T18:00:08.543Z daemon INFO INFO[0133] Monitor process killed                        monitor=serial-monitor

2023-03-09T18:00:08.544Z monitor-service INFO monitor to /dev/cu.usbserial-10 using serial closed by server
2023-03-09T18:00:08.544Z monitor-service INFO monitor to /dev/cu.usbserial-10 using serial closed by client
2023-03-09T18:00:08.550Z daemon INFO INFO[0133] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0133] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0133] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0133] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0133] Tool required for upload                      tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0133] Tool required for upload                      tool="esp8266:mkspiffs@2.5.0-4-b40a506"
INFO[0133] Tool required for upload                      tool="esp8266:python3@3.7.2-post1"
INFO[0133] Tool required for upload                      tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"
INFO[0133] Tool required for upload                      tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
INFO[0133] Tool required for upload                      tool="builtin:ctags@5.8-arduino11"
INFO[0133] Tool required for upload                      tool="builtin:mdns-discovery@1.0.8"
INFO[0133] Tool required for upload                      tool="builtin:serial-discovery@1.4.0"
INFO[0133] Tool required for upload                      tool="arduino:avrdude@6.3.0-arduino17"
INFO[0133] Tool required for upload                      tool="arduino:arduinoOTA@1.3.0"
INFO[0133] Tool required for upload                      tool="builtin:serial-monitor@0.13.0"

2023-03-09T18:00:09.516Z daemon INFO INFO[0134] Required tool                                 tool="esp8266:mklittlefs@2.5.0-4-fe5bb56"
INFO[0134] Required tool                                 tool="esp8266:mkspiffs@2.5.0-4-b40a506"

2023-03-09T18:00:09.516Z daemon INFO INFO[0134] Required tool                                 tool="esp8266:python3@3.7.2-post1"
INFO[0134] Required tool                                 tool="esp8266:xtensa-lx106-elf-gcc@2.5.0-4-b40a506"

2023-03-09T18:00:16.161Z monitor-service INFO starting monitor
2023-03-09T18:00:16.163Z daemon INFO INFO[0140] Starting monitor process                      monitor=serial-monitor

2023-03-09T18:00:16.168Z daemon INFO INFO[0140] Monitor process started successfully!         monitor=serial-monitor

2023-03-09T18:00:16.168Z daemon INFO INFO[0140] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T18:00:16.180Z daemon INFO INFO[0140] received message                              error=false event_type=hello message=OK monitor=serial-monitor

2023-03-09T18:00:16.180Z daemon INFO INFO[0140] sending command                               command=DESCRIBE monitor=serial-monitor
INFO[0140] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0140] sending command                               command=QUIT monitor=serial-monitor
INFO[0140] received message                              error=false event_type=quit message=OK monitor=serial-monitor
INFO[0140] Killing monitor process                       monitor=serial-monitor

2023-03-09T18:00:16.181Z daemon INFO ERRO[0140] stopped decode loop: EOF                      monitor=serial-monitor

2023-03-09T18:00:16.181Z daemon INFO INFO[0140] Monitor process killed                        monitor=serial-monitor

2023-03-09T18:00:16.184Z daemon INFO INFO[0140] Starting monitor process                      monitor=serial-monitor

2023-03-09T18:00:16.186Z daemon INFO INFO[0140] Monitor process started successfully!         monitor=serial-monitor

2023-03-09T18:00:16.186Z daemon INFO INFO[0140] sending command                               command="HELLO 1 \"arduino-cli 0.31.0\"" monitor=serial-monitor

2023-03-09T18:00:16.194Z daemon INFO INFO[0140] received message                              error=false event_type=hello message=OK monitor=serial-monitor

2023-03-09T18:00:16.195Z daemon INFO INFO[0140] sending command                               command=DESCRIBE monitor=serial-monitor

2023-03-09T18:00:16.195Z daemon INFO INFO[0140] received message                              error=false event_type=describe message=OK monitor=serial-monitor
INFO[0140] sending command                               command="CONFIGURE baudrate 115200" monitor=serial-monitor

2023-03-09T18:00:16.195Z daemon INFO INFO[0140] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0140] sending command                               command="CONFIGURE bits 8" monitor=serial-monitor

2023-03-09T18:00:16.195Z daemon INFO INFO[0140] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0140] sending command                               command="CONFIGURE dtr off" monitor=serial-monitor

2023-03-09T18:00:16.195Z daemon INFO INFO[0140] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0140] sending command                               command="CONFIGURE parity none" monitor=serial-monitor
INFO[0140] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0140] sending command                               command="CONFIGURE rts off" monitor=serial-monitor

2023-03-09T18:00:16.195Z daemon INFO INFO[0140] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0140] sending command                               command="CONFIGURE stop_bits 1" monitor=serial-monitor

2023-03-09T18:00:16.195Z daemon INFO INFO[0140] received message                              error=false event_type=configure message=OK monitor=serial-monitor
INFO[0140] sending command                               command="OPEN 127.0.0.1:49600 /dev/cu.usbserial-10" monitor=serial-monitor

2023-03-09T18:00:16.222Z daemon INFO INFO[0140] received message                              error=false event_type=open message=OK monitor=serial-monitor

2023-03-09T18:00:16.222Z daemon INFO INFO[0140] Port /dev/cu.usbserial-10 successfully opened 

2023-03-09T18:00:16.223Z monitor-service INFO Using port configuration for serial:/dev/cu.usbserial-10: {"settingsList":[{"settingId":"baudrate","value":"115200"},{"settingId":"bits","value":"8"},{"settingId":"dtr","value":"off"},{"settingId":"parity","value":"none"},{"settingId":"rts","value":"off"},{"settingId":"stop_bits","value":"1"}]}
2023-03-09T18:00:16.223Z monitor-service INFO started monitor to /dev/cu.usbserial-10 using serial
2023-03-09T18:00:16.224Z monitor-service INFO No port configuration changes have been detected. No need to send configure commands to the running monitor serial:/dev/cu.usbserial-10.
[50273:0309/180037.375952:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180037.514442:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180037.660304:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180040.298313:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180040.427421:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180040.571372:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180043.485023:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180043.627440:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180043.783382:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180046.920809:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180047.067705:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180047.255045:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180050.885267:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180051.041275:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180051.207628:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180057.738010:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180057.931669:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180058.117177:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180103.674849:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180103.898558:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180104.089645:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180110.040739:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180110.243402:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180110.477195:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180116.865292:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180117.072321:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.
[50273:0309/180117.320781:ERROR:raster_implementation.cc(291)] Failed to serialize op in 16777152 bytes.


This message does look significant:

Unfortunately I don't know what it means and I didn't find anything useful when I did some research about it.

It looks like it is coming from Arduino IDE's Chromium base:

https://chromium.googlesource.com/chromium/src/+/refs/heads/main/gpu/command_buffer/client/raster_implementation.cc#306

But that doesn't tell me a lot.

I'm wondering whether having Serial Monitor open is a required condition. I have experienced a symptom like what you describe when a sketch prints a huge amount of data on a single line, but your sketch doesn't print a huge amount of data, and also doesn't create long lines so you aren't producing those specific conditions that I can see. But I think it's worth an experiment to see whether Serial Monitor is a factor. Please try this:

  1. Click the X icon on the "Serial Monitor" tab in the bottom panel of Arduino IDE:
    215050213-e6c41c1a-0eae-448a-ae91-f2acefedf793
  2. So an upload to your board, just as you did before.

Does the IDE still freeze when you do that?

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