Browse Source

added timeout to example

Volker Tanger 7 months ago
parent
commit
6ce33375ed
1 changed files with 2 additions and 2 deletions
  1. 2 2
      moshel.example

+ 2 - 2
moshel.example

@@ -194,8 +194,8 @@ CheckValueUnder AirHumidity "cat $FN" '$0' 100 'Sensor broken?'
 
 
 # retrieve power usage/solar generation from a Shelly PM
-curl -s -u USER:PASSWORD --basic http://IPADDRESS/status | jq '.meters[0].power' > $FN
-CheckValueUnder Solarstrom-Shelly1pm "cat $FN" '{ print $0 }' 630 'Solar above allowed power of 600W'
+curl --max-time 5 -s -u USER:PASSWORD --basic http://IPADDRESS/status | jq '.meters[0].power' > $FN
+CheckValueUnder Solarstrom-Shelly1pm "cat $FN" '{ print $0 }' 6350 'Solar generation above 600W'
 
 rm $FN