add timeout on read to avoid haning on the ssh tunnel
parent
de23e91533
commit
d30d8bcd2b
|
@ -32,14 +32,18 @@ do
|
||||||
done
|
done
|
||||||
ocounter="$counter"
|
ocounter="$counter"
|
||||||
echo "peoplecounter" >&"${COPROC[1]}"
|
echo "peoplecounter" >&"${COPROC[1]}"
|
||||||
read counter <&"${COPROC[0]}"
|
read -t 1 counter <&"${COPROC[0]}"
|
||||||
|
if [ $? -ne 0 ]
|
||||||
|
then
|
||||||
|
counter=-1
|
||||||
|
fi
|
||||||
if [ "$counter" != "$ocounter" ]
|
if [ "$counter" != "$ocounter" ]
|
||||||
then
|
then
|
||||||
logger $0 peoplecounter=$counter
|
logger $0 peoplecounter=$counter
|
||||||
echo "neocounter=$counter" | ./redi.sh
|
echo "neocounter=$counter" | ./redi.sh
|
||||||
fi
|
fi
|
||||||
echo "spacestatus" >&"${COPROC[1]}"
|
echo "spacestatus" >&"${COPROC[1]}"
|
||||||
read status <&"${COPROC[0]}"
|
read -t 1 status <&"${COPROC[0]}"
|
||||||
if ! [ "$status" = "open" ]; then # do nothing if space is closed
|
if ! [ "$status" = "open" ]; then # do nothing if space is closed
|
||||||
continue
|
continue
|
||||||
else
|
else
|
||||||
|
|
|
@ -134,7 +134,8 @@ if __name__ == '__main__':
|
||||||
for j in range(0,60,5):
|
for j in range(0,60,5):
|
||||||
strip.setPixelColor(clockcalc(j), color)
|
strip.setPixelColor(clockcalc(j), color)
|
||||||
# put the current people count as magenta
|
# put the current people count as magenta
|
||||||
strip.setPixelColor(clockcalc(myredis.get('neocounter')),Color(10,0,10))
|
if myredis.get('neocounter') >= 0:
|
||||||
|
strip.setPixelColor(clockcalc(myredis.get('neocounter')),Color(10,0,10))
|
||||||
# put the minute hand as red
|
# put the minute hand as red
|
||||||
strip.setPixelColor(clockcalc(time.strftime('%M',time.localtime())),Color(30,0,0))
|
strip.setPixelColor(clockcalc(time.strftime('%M',time.localtime())),Color(30,0,0))
|
||||||
# put the seconds hand as green
|
# put the seconds hand as green
|
||||||
|
|
Loading…
Reference in New Issue