Added litractl for controlling Litra Glow

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2022-04-01 16:11:01 +01:00
parent 1313900363
commit 6c7aee7b93
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
1 changed files with 41 additions and 0 deletions

41
home/.bin/litractl Executable file
View File

@ -0,0 +1,41 @@
#!/usr/bin/env bash
source .utils
set -e
if [ -z `which hidapitester` ]; then
bold "hidapitester command not found"
echo "Download from https://github.com/todbot/hidapitester"
exit 1
fi
print_usage() {
blue "litractl - Control Litra Glow"
echo " "
underline "Usage:"
echo "litractl [on / off]"
}
POS_ARGS=()
while test $# -gt 0; do
case "$1" in
-h|--help)
print_usage
exit 0
;;
*)
POS_ARGS+=(`echo $1`)
shift
;;
esac
done
if [[ "${POS_ARGS[0]}" == "on" ]]; then
italic "Turning Litra Glow on... "
hidapitester --vidpid 046D/C900 --open --length 20 --send-output 0x11,0xff,0x04,0x1c,0x01 &>/dev/null
elif [[ "${POS_ARGS[0]}" == "off" ]]; then
italic "Turning Litra Glow off... "
hidapitester --vidpid 046D/C900 --open --length 20 --send-output 0x11,0xff,0x04,0x1c &>/dev/null
else
print_usage
fi