Forrest logo
back to the arduino-builder tool

arduino-builder:tldr:ea31f

arduino-builder: Specify the debug level (default: 5).
$ arduino-builder -debug-level ${1--10}
try on your machine

This command is used for building Arduino sketches or projects. Let's break it down:

  • arduino-builder: This is the name of the program or command-line tool used for building Arduino projects.
  • -debug-level: This is an option or flag that specifies the level of debugging information that should be displayed during the build process.
  • ${1--10}: This is a placeholder for an argument or value that you can provide for the debug level. The ${1--10} indicates a range of values from 1 to -10 (inclusive). This means you can specify any integer value between 1 and -10 to set the debug level.

The debug level determines the amount of information that is shown during the build process. A higher debug level usually provides more detailed information for troubleshooting or debugging purposes. A debug level of 1 might show only basic information, while a debug level of -10 could display extensive debugging output.

To use this command, you would replace ${1--10} with the desired integer value representing the desired debug level, and then execute the command.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the arduino-builder tool