plant-badger/README.md

26 lines
636 B
Markdown

## Install dependencies
If you only manage this project from a shell, then you only need these dependencies.
```shell
pip install -r requirements.txt
```
When running with PyCharm, instead use `requirements-pycharm.txt`:
```shell
pip install -r requirements-pycharm.txt
```
This will install dependencies required by PyCharm to run its MicroPython tools.
## Invoke tasks
```shell
invoke --list
# Start by getting your board id
inv list
# Then wipe the board
inv wipe <board_id>
# Then run the initial setup
inv initial-setup <board_id>
# After that, just update the code when changes are made locally
inv update-code <board_id>
```