Cloud Editor Libraries question

I have a question: How can I know wich libraries did Cloud Editor included for my project?

Thank you very much

Hi @multiplicadores1234.

  1. Click the "Settings" icon at the bottom left corner of the Arduino Cloud Editor page:

    The "Settings" panel will open.
  2. Select the "Verbose output" radio button under the "Console verbosity" section of the "Settings" panel.
  3. Click the button in the Cloud Editor toolbar.
  4. Wait for the compilation to finish.

Now examine the contents of the black "Console" panel at the bottom of the Cloud Editor page. You will see a list of all the libraries that were used when compiling your sketch.

For example, when I compiled this sketch for the "Arduino Uno" board:

#include <Servo.h>
#include <SPI.h>
void setup() {}
void loop() {}

I saw this in the console:

Using library Servo at version 1.2.2 in folder: /run/arduino/directories-data/internal/Servo_1.2.2_4ee28ec4ddbfa791 
Using library SPI at version 1.0 in folder: /run/arduino/directories-data/packages/arduino/hardware/avr/1.8.6/libraries/SPI 

Thank you very much!

You are welcome. I'm glad if I was able to be of assistance.

Regards, Per

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