Mercurial > code > home > repos > homeauto
view service/espNode/tasks.py @ 1512:1e9cfec1be78
don't require first arg on PatchedGraph.serialize
Ignore-this: bc695823e03dbd012e03efa4e40b6aca
darcs-hash:1dbf9271b5ca55c78987c474ef223af9d5b811d2
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Mon, 03 Feb 2020 23:46:29 -0800 |
parents | 9e3901240335 |
children |
line wrap: on
line source
from invoke import task tag = 'esphome/esphome:dev' @task def pull_esphome(ctx): ctx.run(f"docker pull {tag}") @task def program_board_over_usb(ctx, board): ctx.run(f"docker run --rm -v `pwd`:/config -v /usr/share/fonts:/usr/share/fonts --device=/dev/ttyUSB0 -it {tag} {board}.yaml run", pty=True) @task def program_board_over_wifi(ctx, board): ctx.run(f"docker run --rm -v `pwd`:/config -v /usr/share/fonts:/usr/share/fonts -it --net=host {tag} {board}.yaml run", pty=True) @task def monitor_usb(ctx, board): ctx.run(f"docker run --rm -v `pwd`:/config --device=/dev/ttyUSB0 -it {tag} {board}.yaml logs", pty=True) # device up? # nmap -Pn -p 3232,6053 10.2.0.21