Using rshell on the Raspberry Pi Pico
Note
MicroPython now has standardized file transfers with the new "MicroPython Remote" or mpremote commands. See the mpremote docs for details. We will be updating all our documentation to use this standard. This page is mostly for older systems.
Using an IDE such as Thonny you can copy many files at a time to the Raspberry Pi Pico by using the GUI.
However, this process becomes error prone if you want to copy a large number of files. To do this we will use the "remote shell" program from the command line. In our classes we often want to copy a dozen or more files to a new robot for student to try out.
Rshell was written by David Hyland. The source code and installations are documented on Dave's GitHub repository here: https://github.com/dhylands/rshell. Dave added support for the Raspberry Pi Pico in release 0.0.30 in March of 2021.
Rshell's primary use is to to get filesystem information on the pico (ls), and to copy files to and from MicroPython's filesystem. It can also be used as a terminal to run interactive REPL commands.
Conda Setup
If you are new to Python and you don't have any previous virtual environments set up you can skip this step. Experienced Python developers have many different environments that they want to keep separated due to library incompatibility issues. Here is how to create a new Python Conda environment that keeps your rshell libraries separated.
1 2 3 |
|
Your prompt should now indicate you are in the pico environment.
Install rshell in your pico environment
We will now use the standard pip installer tool to install the rshell command.
1 |
|
You can check that rshell has been correctly installed in your command PATH by running the UNIX which
command.
1 |
|
Running shell
Rshell communicates with the Pico through the USB port. When you plug in the Pico you should see a new file created in the UNIX /dev directory. It typically begins with the letters /dev/cu.modem
. One way to test this is to unlpug the pico and run the following command:
1 |
|
1 |
|
This is the port you will use to connect to the pico. We will use the -p
for port option to startup rshell.
1 |
|
1 2 3 4 5 6 7 8 9 10 |
|
Boards
The boards command will list the boards rshell is connected to:
boards pyboard @ /dev/cu.usbmodem14101 connected Epoch: 1970 Dirs: /pyboard/hello.py /pyboard/main.py
Listing Files
We can see that the board is called "pyboard" and you can use that as a path to list the files on the board.
1 2 |
|
Giving Your Board a Name
rshell will look for a program called board.py when it connects to the board. If this file contains a board name it will use that as the board name the next time it connects to the board. You can use the "echo" command to generate the file. In the example below, we will call our board "pico"
1 |
|
After you use the CONTROL-C and reconnect you will see the following:
1 |
|
Remember you must disconnect from rshell and reconnect before the boards.py function is used.
For the remainder of this lesson we will assume you have renamed your board "pico".
You can then type cd /pico
followed by a ls
to see the files on your pico.
Entering REPL
You can enter the REPL loop using the repl
command and use the same commands that you used in the Thonny shell.
1 2 |
|
returns
1 |
|
Getting Help on rshell commands
You can type the help
command to see all the rshell commands:
1 2 3 4 5 6 7 8 |
|
Running Backup
If you want to copy all the python files from the pico to a backup directory you can use the following command:
1 2 |
|
You will need to create the /Users/dan/backup directory before you do this. You can also use the tilde ~
character to stand in for your home directory like this:
1 |
|
Copying '/pico/hello.py' to '/Users/dan/backup/hello.py' ... Copying '/pico/main.py' to '/Users/dan/backup/main.py' ...
Installing files
If you have a directory called ~/build
that contains many files you want to install on the pico file system you can use the following command:
1 |
|
If you have done a clone to the CoderDojoTC micropython repository and put it in your home directory under ~/micropython then following command will copy the python files from the Maker Pi RP2040 kit to your pico:
1 2 3 4 |
|
Note that the drivers will be placed in the /lob directory.
Direct Command Execution
You do not need to use an interactive session to run a command with rshell. You can just add the command you would like to run to the end of the rshell command like this:
1 |
|
returns:
1 |
|