snippetbashTip
pio remote — Helper command for PlatformIO Remote Development. `pio remote [command]` takes the same arguments as
Viewed 0 times
helpercommandforcliplatformiopio remoteremote
Problem
How to use the
pio remote command: Helper command for PlatformIO Remote Development. pio remote [command] takes the same arguments as its locally executing counterpart pio [command]. More information: <https://docs.platformio.org/en/latest/core/userguide/remote/index.html>.Solution
pio remote — Helper command for PlatformIO Remote Development. pio remote [command] takes the same arguments as its locally executing counterpart pio [command]. More information: <https://docs.platformio.org/en/latest/core/userguide/remote/index.html>.List all active Remote Agents:
pio remote agent listStart a new Remote Agent with a specific name and share it with friends:
pio remote agent start {{[-n|--name]}} {{agent_name}} {{[-s|--share]}} {{example1@example.com}} {{[-s|--share]}} {{example2@example.com}}List devices from specified Agents (omit
--agent to specify all Agents):pio remote --agent {{agent_name1}} --agent {{agent_name2}} device listConnect to the serial port of a remote device:
pio remote --agent {{agent_name}} device monitorRun all targets on a specified Agent:
pio remote --agent {{agent_name}} runUpdate installed core packages, development platforms and global libraries on a specific Agent:
pio remote --agent {{agent_name}} updateRun all tests in all environments on a specific Agent:
pio remote --agent {{agent_name}} testCode Snippets
List all active Remote Agents
pio remote agent listStart a new Remote Agent with a specific name and share it with friends
pio remote agent start {{[-n|--name]}} {{agent_name}} {{[-s|--share]}} {{example1@example.com}} {{[-s|--share]}} {{example2@example.com}}List devices from specified Agents (omit `--agent` to specify all Agents)
pio remote --agent {{agent_name1}} --agent {{agent_name2}} device listConnect to the serial port of a remote device
pio remote --agent {{agent_name}} device monitorRun all targets on a specified Agent
pio remote --agent {{agent_name}} runContext
tldr-pages: common/pio remote
Revisions (0)
No revisions yet.