ungleich-tools/openwrt-add-temper.sh
2020-12-03 20:11:33 +01:00

40 lines
1.1 KiB
Bash
Executable file

#!/bin/sh
if [ $# -ne 1 ]; then
echo "$0 ip-address"
echo " ip-address: where to find the OpenWRT device"
exit 1
fi
my_ip=$1; shift
cat <<EOF | ssh -t "root@${my_ip}"
set -x
opkg update
opkg install libustream-openssl ca-bundle ca-certificates
opkg install kmod-usb-hid python3-pyserial
wget -O - https://files.pythonhosted.org/packages/cc/bb/2f676fdf64be88de068938be2193f091e76c53d277277e07f6153223cdda/temper-py-0.0.1.tar.gz | tar xz temper-py-0.0.1/temper.py
mv temper-py-0.0.1/temper.py /usr/bin
rmdir temper-py-0.0.1
chmod a+rx /usr/bin/temper.py
if ! grep -q temper /etc/crontabs/root; then
echo "*/5 * * * * /usr/bin/temper.py awk '{ print $7 " " $8 }' > /www/temperature.txt" >> /etc/crontabs/root
fi
EOF
exit 0
[ 2089.624343] hid-generic 0003:413D:2107.0001: input,hidraw0: USB HID v1.11 Keyboard [HID 413d:2107] on usb-101c0000.ehci-1.2/input0
[ 2089.826684] hid-generic 0003:413D:2107.0002: hiddev96,hidraw1: USB HID v1.10 Device [HID 413d:2107] on usb-101c0000.ehci-1.2/input1
root@viirb1:~/temper-py-0.0.1# python3 temper.py
Bus 002 Dev 023 413d:2107 TEMPerGold_V3.1 28.5C 83.3F - - - -