Manage PlatformIO settings
platformio settings get [NAME]
pio settings get [NAME]
Get/List existing settings
auto_update_libraries
¶Yes
Yes/No
Automatically update libraries.
auto_update_platforms
¶Yes
Yes/No
Automatically update platforms.
check_libraries_interval
¶7
Days (Number)
Check for the library updates interval.
check_platformio_interval
¶3
Days (Number)
Check for the new PlatformIO interval.
check_platforms_interval
¶7
Days (Number)
Check for the platform updates interval.
enable_ssl
¶No
Yes/No
Enable SSL for PlatformIO Services
enable_cache
¶Yes
Yes/No
Enable caching for API requests and Library Manager
force_verbose
¶No
Yes/No
Force verbose output when processing environments. This setting overrides
enable_telemetry
¶Yes
Yes/No
Share diagnostics and usage information to help us make PlatformIO better:
PlatformIO errors/exceptions
The name of used platforms, boards, frameworks (for example, “espressif”, “arduino”, “uno”, etc.)
The name of commands (for example, “run”, “lib list”, etc.)
The type of IDE (for example, “atom”, “eclipse”, etc.)
This gives us a sense of what parts of the PlatformIO is most important.
The source code of telemetry service is open source. You can make sure that we DO NOT share PRIVATE information or source code of your project. All information shares anonymously.
Thanks a lot that keep this setting enabled.
Note
The Yes
value is equl to: True
, Y
, 1
.
The value is not case sensetive.
You can override these settings using Environment variables.
List all settings and theirs current values
> platformio settings get
Name Value [Default] Description
------------------------------------------------------------------------------------------
auto_update_libraries No Automatically update libraries (Yes/No)
auto_update_platforms No Automatically update platforms (Yes/No)
check_libraries_interval 7 Check for the library updates interval (days)
check_platformio_interval 3 Check for the new PlatformIO interval (days)
check_platforms_interval 7 Check for the platform updates interval (days)
enable_cache Yes Enable caching for API requests and Library Manager
enable_ssl No Enable SSL for PlatformIO Services
enable_telemetry Yes Telemetry service (Yes/No)
force_verbose No Force verbose output when processing environments
Show specified setting
$ platformio settings get auto_update_platforms
Name Value [Default] Description
------------------------------------------------------------------------------------------
auto_update_platforms Yes Automatically update platforms (Yes/No)
platformio settings set NAME VALUE
Set new value for the setting
Change to check for the new PlatformIO each day
$ platformio settings set check_platformio_interval 1
The new value for the setting has been set!
Name Value [Default] Description
------------------------------------------------------------------------------------------
check_platformio_interval 1 [3] Check for the new PlatformIO interval (days)
platformio settings reset
Reset settings to default
$ platformio settings reset
The settings have been reseted!
Name Value [Default] Description
------------------------------------------------------------------------------------------
auto_update_libraries No Automatically update libraries (Yes/No)
auto_update_platforms No Automatically update platforms (Yes/No)
check_libraries_interval 7 Check for the library updates interval (days)
check_platformio_interval 3 Check for the new PlatformIO interval (days)
check_platforms_interval 7 Check for the platform updates interval (days)
enable_cache Yes Enable caching for API requests and Library Manager
enable_ssl No Enable SSL for PlatformIO Services
enable_telemetry Yes Telemetry service (Yes/No)
force_verbose No Force verbose output when processing environments