diff --git a/scripts/getvoltage.sh b/scripts/getvoltage.sh index 9c656ea..95b98fc 100755 --- a/scripts/getvoltage.sh +++ b/scripts/getvoltage.sh @@ -4,5 +4,6 @@ command -v socat >/dev/null 2>&1 || { echo >&2 "I require socat but it's not ins [[ $RESPONSE == "{}" ]] && unset RESPONSE RESPONSE=`echo '{"command":"read_voltage"}' | socat -,ignoreeof ~/src/openaps-menu/socket-server.sock | sed -n 's/.*"response":\([^}]*\)}/\1/p'` -[[ $RESPONSE = *[![:space:]]* ]] && echo $RESPONSE +[[ $RESPONSE = *[![:space:]]* ]] && echo $RESPONSE || echo '{"batteryVoltage":3340,"battery":99}' +# the OR at the end of the above line uploads a fake voltage (3340) and percentage (99), to work around a problem with nighscout crashing when receiving a null value #./getvoltage.sh | sed -n 's/.*"response":\([^}]*\)}/\1/p'