Skip to main content

obmpy (OpenBlock MicroPython tool) is a command line tool to interact with a CircuitPython or MicroPython board over a serial connection.

Project description

obmpy

Publish PyPI Package

This tool is modified from ampy, which fixes the bug that the serial port can not time out, and supports calling with python -m. At the same time, it also supports setting rts/dtr to support K210 MaixDock and other devices that need to set the rts and dtr level to high to run.

MicroPython Tool (obmpy) - Utility to interact with a CircuitPython or MicroPython board over a serial connection.

Obmpy is meant to be a simple command line tool to manipulate files and run code on a CircuitPython or MicroPython board over its serial connection. With obmpy you can send files from your computer to the board's file system, download files from a board to your computer, and even send a Python script to a board to be executed.

Installation

You can use obmpy with either Python 2.7.x or 3.x and can install it easily from Python's package index. On MacOS or Linux, in a terminal run the following command (assuming Python 3):

pip3 install --user openblock-obmpy

On Windows, do:

pip install openblock-obmpy

Note on some Linux and Mac OSX systems you might need to run as root with sudo:

sudo pip3 install openblock-obmpy

If you don't have Python 3 then try using Python 2 with:

pip install openblock-obmpy

Once installed verify you can run the obmpy program and get help output:

obmpy --help

You should see usage information displayed like below:

Usage: obmpy [OPTIONS] COMMAND [ARGS]...

    obmpy - OpenBlock MicroPython Tool

    Obmpy is a tool to control MicroPython boards over a serial connection.
    Using obmpy you can manipulate files on the board's internal filesystem
    and even run scripts.

Options:
    -p, --port PORT             Name of serial port for connected board.  Can
                                optionally specify with OBMPY_PORT environment
                                variable.  [required]

    -b, --baud BAUD             Baud rate for the serial connection (default
                                115200).  Can optionally specify with OBMPY_BAUD
                                environment variable.

    -d, --delay DELAY           Delay in seconds before entering RAW MODE
                                (default 0). Can optionally specify with
                                OBMPY_DELAY environment variable.

    -r, --rtsdtr RTSDTR         Set RTS/DTR flow control (default True). Can
                                optionally specify with OBMPY_RTSDTR environment
                                variable.

    -a, --abort-time ABORTTIME  The number of times an abort command was sent
                                after entering repl mode (default 2). Can
                                optionally specify with ABORT_TIME environment
                                variable.

    --version                   Show the version and exit.
    --help                      Show this message and exit.

Commands:
    fsi    Get the file system information.
    get    Retrieve a file from the board.
    ls     List contents of a directory on the board.
    mkdir  Create a directory on the board.
    put    Put a file or folder and its contents on the board.
    reset  Perform soft reset/reboot of the board.
    rm     Remove a file from the board.
    rmdir  Forcefully remove a folder and all its children from the board.
    run    Run a script and print its output.

If you'd like to install from the Github source then use the standard Python setup.py install (or develop mode):

python3 setup.py install

Note to run the unit tests on Python 2 you must install the mock library:

pip install mock

Usage

Obmpy is made to talk to a CircuitPython MicroPython board over its serial connection. You will need your board connected and any drivers to access it serial port installed. Then for example to list the files on the board run a command like:

obmpy --port /dev/tty.SLAB_USBtoUART ls

You should see a list of files on the board's root directory printed to the terminal. Note that you'll need to change the port parameter to the name or path to the serial port that the MicroPython board is connected to.

Other commands are available, run obmpy with --help to see more information:

obmpy --help

Each subcommand has its own help, for example to see help for the ls command run (note you unfortunately must have a board connected and serial port specified):

obmpy --port /dev/tty.SLAB_USBtoUART ls --help

Configuration

For convenience you can set an OBMPY_PORT environment variable which will be used if the port parameter is not specified. For example on Linux or OSX:

export OBMPY_PORT=/dev/tty.SLAB_USBtoUART
obmpy ls

Or on Windows (untested) try the SET command:

set OBMPY_PORT=COM4
obmpy ls

Similarly, you can set OBMPY_BAUD and OBMPY_DELAY to control your baud rate and the delay before entering RAW MODE.

To set these variables automatically each time you run obmpy, copy them into a file named .obmpy:

# Example .obmpy file
# Please fill in your own port, baud rate, and delay
OBMPY_PORT=/dev/cu.wchusbserial1410
OBMPY_BAUD=115200
# Fix for macOS users' "Could not enter raw repl"; try 2.0 and lower from there:
OBMPY_DELAY=0.5
# To set rts and dtr level
OBMPY_RTSDTR=False
# Fix for k210 'could not enter raw repl', Just send one 0x03 when try to bort task.
OBMPY_ABORTTIME=1

You can put the .obmpy file in your working directory, one of its parents, or in your home directory.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openblock-obmpy-1.2.0.tar.gz (18.3 kB view details)

Uploaded Source

Built Distribution

openblock_obmpy-1.2.0-py2.py3-none-any.whl (18.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file openblock-obmpy-1.2.0.tar.gz.

File metadata

  • Download URL: openblock-obmpy-1.2.0.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for openblock-obmpy-1.2.0.tar.gz
Algorithm Hash digest
SHA256 9d17d6d3f8c429ae50e0785cdeebac65cd69b3984897414cc4235329d3658bad
MD5 b2b644f1af13d4bbf79963128e1e1810
BLAKE2b-256 17f59310c008ef23ac9ba3c495bf1a33f2450a24b164ab7f820e0d1ce1e4c971

See more details on using hashes here.

File details

Details for the file openblock_obmpy-1.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for openblock_obmpy-1.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b0a3f839a2a0cbd605976374287192cc60532ee0be3217ba0c810bc0da004ce7
MD5 27a61dac8d1298ee01f1fbbbe0f605aa
BLAKE2b-256 d39bc9df36400b432ed9fb5eeed56faa4d767a8b9bd961edfd000f90b1763aec

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page