2021-04-10 20:20:32 +01:00
|
|
|
# pio device
|
|
|
|
|
|
|
|
> Manage and monitor PlatformIO devices.
|
|
|
|
> More information: <https://docs.platformio.org/en/latest/core/userguide/device/>.
|
|
|
|
|
|
|
|
- List all available serial ports:
|
|
|
|
|
|
|
|
`pio device list`
|
|
|
|
|
|
|
|
- List all available logical devices:
|
|
|
|
|
|
|
|
`pio device list --logical`
|
|
|
|
|
|
|
|
- Start an interactive device monitor:
|
|
|
|
|
|
|
|
`pio device monitor`
|
|
|
|
|
|
|
|
- Start an interactive device monitor and listen to a specific port:
|
|
|
|
|
|
|
|
`pio device monitor --port {{/dev/ttyUSBX}}`
|
|
|
|
|
|
|
|
- Start an interactive device monitor and set a specific baud rate (defaults to 9600):
|
|
|
|
|
|
|
|
`pio device monitor --baud {{57600}}`
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
- Start an interactive device monitor and set a specific EOL character (defaults to `CRLF`):
|
2021-04-10 20:20:32 +01:00
|
|
|
|
|
|
|
`pio device monitor --eol {{CRLF|CR|LF}}`
|
|
|
|
|
|
|
|
- Go to the menu of the interactive device monitor:
|
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl> + T`
|