Metadata-Version: 2.1
Name: openrover
Version: 1.0.0b1
Summary: A Python driver for driving the Rover Robotics OpenRover Basic robot
Home-page: https://github.com/RoverRobotics/openrover_python_driver
License: BSD-3-Clause
Author: Dan Rose
Author-email: dan@digilabs.io
Maintainer: Dan Rose
Maintainer-email: dan@digilabs.io
Requires-Python: >=3.6,<4.0
Classifier: Framework :: Trio
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: async_generator (>=1.10,<2.0)
Requires-Dist: booty (>=0.3.0,<0.4.0)
Requires-Dist: pyserial (>=3.4,<4.0)
Requires-Dist: pytest (>=5.4.3,<6.0.0)
Requires-Dist: pytest-trio (>=0.6.0,<0.7.0)
Requires-Dist: trio (>=0.16.0,<0.17.0)
Project-URL: Repository, https://github.com/RoverRobotics/openrover_python_driver
Description-Content-Type: text/markdown

# OpenRover Python Suite

This is the official Python driver for the [Rover Robotics](https://roverrobotics.com/) "Open Rover Basic" robot. Use this as a starting point to get up and running quickly.

Included in this package are:

1. A Python library for programmatically interfacing with the Rover over USB
2. A command line application "`pitstop`" for upgrading and configuring the Rover firmware
3. A test suite that confirms the Firmware and hardware are operating as expected.

## Setup

To install official releases from PyPi:

```shell script
python3 -m pip install -U pip setuptools
python3 -m pip install -U openrover --no-cache-dir
```

On Linux, you may not have permission to access USB devices. If this is the case, run the following then restart your computer:

```shell script
sudo usermod -a -G dialout $(whoami)
```

### Development setup

Manual Prerequisites:

* Python3 (recommended to install Python3.6, Python3.7, and Python3.8)
* [Poetry](https://python-poetry.org/docs/#installation) 

Instead, we recommend:

```
git clone https://github.com/RoverRobotics/openrover-python.git
cd openrover-python
poetry install
```

#### Useful commands

For development testing, it is recommended to use `tox`, which can run tests on multiple Python interpreters.

<dl>
    <dt><code>pytest</code></dt>
    <dd>Test on current Python interpreter</dd>
    <dt><code>tox</code></dt>
    <dd>Test on all supported Python minor versions</dd>
    <dt><code>black .</code></dt>
    <dd>Reformat code to a uniform style</dd>
    <dt><code>githooks setup</code></dt>
    <dd>Install git pre-commit hook to automatically run <code>black</code></dd>
</dl>

### Caveats

* When running in PyCharm in debug mode, you will get a warning like "RuntimeWarning: You seem to already have a custom sys.excepthook handler installed ..." https://github.com/python-trio/trio/issues/1553
* Note this is a pyproject (PEP-517) project so it will NOT work to `pip install --editable ...` for development. Instead use `poetry install` as above.


### pitstop

Pitstop is a helper program to bootload your rover and set options. After installing the openrover package, you can invoke it with `pitstop` or `python3 -m openrover.pitstop`.

```text
> pitstop --help
  usage: pitstop [-h] [-p port] action ...
  
  OpenRover companion utility to bootload robot and configure settings.
  
  positional arguments:
    action
      flash               write the given firmware hex file onto the rover
      checkversion        Check the version of firmware installed
      test                Run tests on the rover
      update              Update rover persistent settings
  
  optional arguments:
    -h, --help            show this help message and exit
    -p port, --port port  Which device to use. If omitted, we will search for a possible rover device
```

### tests

To run tests, first attach the rover via breakout cable then run `pitstop test`.
By default, tests that involve running the motors will be skipped, since you may not want a rover ripping cables out of your computer. If you have made sure running the motors will not damage anything, these tests can be opted in with the flag `--motorok`.

```text
> pitstop test --motorok
Scanning for possible rover devices
Using device /dev/ttyUSB0
========================== test session starts ============================
platform linux -- Python 3.8.2, pytest-5.4.3, py-1.9.0, pluggy-0.13.1
rootdir: /home/dan/Documents/openrover-python/openrover
plugins: trio-0.6.0
collected 73 items                                                                                                                                                                                           

tests/test_bootloader.py .s                                                                                                                                                                            [  2%]
tests/test_find_device.py .....                                                                                                                                                                        [  9%]
tests/test_openrover_protocol.py ....                                                                                                                                                                  [ 15%]
tests/test_rover.py ..................x.x.........x................Xxxx..........                                                                                                                      [ 98%]
tests/burnin/test_burnin.py s                                                                                                                                                                          [100%]

===== 64 passed, 2 skipped, 6 xfailed, 1 xpassed in 83.94s (0:01:23) =====
```

![OpenRover Basic](https://docs.roverrobotics.com/1-manuals/0-cover-photos/1-open-rover-basic-getting-started-vga.jpg)

