# Bluetooth Audio
This repos supports incomming bt audio connections. It also sends the bt audio state via MQTT to smarthome.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678 |
- #!/bin/sh
- #
- BASEPATH=`realpath $(dirname $0)`
-
- python3 -m venv $BASEPATH/venv
- $BASEPATH/venv/bin/pip install --upgrade pip
- find $BASEPATH -name requirements.txt | xargs -L 1 $BASEPATH/venv/bin/pip install -r
- $BASEPATH/venv/bin/pip list --outdated --format=json | jq -r '.[] | .name'|xargs -n1 $BASEPATH/venv/bin/pip install -U
|