mirror of
https://github.com/Crocmagnon/plant-badger.git
synced 2024-11-24 02:18:03 +01:00
Application for Pimoroni Badger 2040 W. Connects to Home Assistant to fetch a plant's status and displays it on the Badger.
.idea | ||
src | ||
.envrc | ||
.gitignore | ||
.tool-versions | ||
README.md | ||
requirements-pycharm.txt | ||
requirements.txt |
Install dependencies
If you only manage this project from a shell, then you only need these dependencies.
pip install -r requirements.txt
When running with PyCharm, instead use requirements-pycharm.txt
:
pip install -r requirements-pycharm.txt
This will install dependencies required by PyCharm to run its MicroPython tools.
List boards
mpremote devs
Setup / Clean flash
# Wipe the board's flash (remove all files)
mpremote connect id:e6614104032e192a \
exec --no-follow "import os, machine, rp2; os.umount('/'); bdev = rp2.Flash(); os.VfsLfs2.mkfs(bdev, progsize=256); vfs = os.VfsLfs2(bdev, progsize=256); os.mount(vfs, '/'); machine.reset()"
echo "Board clean"
sleep 3
# Install dependencies and copy project
cd src/
mpremote connect id:e6614104032e192a \
mip install github:miguelgrinberg/microdot/src/microdot.py \
github:miguelgrinberg/microdot/src/microdot_asyncio.py + \
cp -r . : + \
reset
cd ..
Update code
cd src/
mpremote connect id:e6614104032e192a \
cp -r . : + \
reset
cd ..