mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-10-04 20:12:37 +02:00
more debug info
This commit is contained in:
@@ -57,9 +57,11 @@ for (( n=0; n<15; ++n )); do
|
|||||||
#echo "V -> ${voltFloat}/${voltInt}"
|
#echo "V -> ${voltFloat}/${voltInt}"
|
||||||
if [ ${voltInt} -lt 1200100 ] && [ ${powerWARN} -gt 0 ]; then
|
if [ ${voltInt} -lt 1200100 ] && [ ${powerWARN} -gt 0 ]; then
|
||||||
powerFAIL=1
|
powerFAIL=1
|
||||||
|
echo "--> Power FAIL detected" >&2
|
||||||
fi
|
fi
|
||||||
if [ ${voltInt} -lt 1250000 ]; then
|
if [ ${voltInt} -lt 1250000 ]; then
|
||||||
powerWARN=1
|
powerWARN=1
|
||||||
|
echo "--> Power WARN detected" >&2
|
||||||
fi
|
fi
|
||||||
if [ ${voltInt} -lt ${powerMIN} ]; then
|
if [ ${voltInt} -lt ${powerMIN} ]; then
|
||||||
powerMIN=${voltInt}
|
powerMIN=${voltInt}
|
||||||
@@ -71,9 +73,11 @@ for (( n=0; n<15; ++n )); do
|
|||||||
#echo "T -> ${tempFloat}/${tempInt}"
|
#echo "T -> ${tempFloat}/${tempInt}"
|
||||||
if [ ${tempInt} -gt 6999 ]; then
|
if [ ${tempInt} -gt 6999 ]; then
|
||||||
tempFAIL=1
|
tempFAIL=1
|
||||||
|
echo "--> Temp FAIL detected" >&2
|
||||||
fi
|
fi
|
||||||
if [ ${tempInt} -gt 6500 ]; then
|
if [ ${tempInt} -gt 6500 ]; then
|
||||||
tempWARN=1
|
tempWARN=1
|
||||||
|
echo "--> Temp WARN detected" >&2
|
||||||
fi
|
fi
|
||||||
if [ ${tempInt} -gt ${tempMAX} ]; then
|
if [ ${tempInt} -gt ${tempMAX} ]; then
|
||||||
tempMAX=${tempInt}
|
tempMAX=${tempInt}
|
||||||
|
Reference in New Issue
Block a user