Mercurial > code > home > repos > homeauto
view service/frontDoorLock/tasks.py @ 1684:c41af73a410f
rm old serv.n3
author | drewp@bigasterisk.com |
---|---|
date | Mon, 27 Sep 2021 23:15:33 -0700 |
parents | 437d7263b515 |
children | 6ee9a1c5a991 |
line wrap: on
line source
from invoke import Collection, task @task def program_board_over_usb(ctx): tag = 'esphome/esphome' ctx.run(f"docker pull {tag}") ctx.run(f"docker run --rm -v `pwd`:/config --device=/dev/ttyUSB0 -it {tag} door.yaml run", pty=True) @task def monitor_usb(ctx): tag = 'esphome/esphome' ctx.run(f"docker run --rm -v `pwd`:/config --device=/dev/ttyUSB0 -it {tag} door.yaml logs", pty=True) @task def tail_mqtt(ctx): ctx.run(f'mosquitto_sub -h bang -p 10210 -d -v -t \#') @task def mqtt_force_open(ctx): ctx.run(f'mosquitto_pub -h bang -p 10210 -t frontdoorlock/switch/strike/command -m ON') @task def mqtt_force_lock(ctx): ctx.run(f'mosquitto_pub -h bang -p 10210 -t frontdoorlock/switch/strike/command -m OFF')