linkmeter alarming


 
Can you give a quick example for this line:

Alarm Indicator
$HMAL,LowProbe0,HighProbe0[,...] (L or H suffix indicates ringing, negative values indicated disabled alarms)
 
Now that I think about it, I wouldn't rely on the alarm code too much, as it hasn't been tested beyond the quick "Does it go off?" testing. But if you want to boldly go, what you're actually looking for is the /set?al= command:
Code:
/set?al=L,H[,L,H...] - Set probe alarms thresholds. 
-- Setting to a negative number will disable the alarm
-- Setting to 0 silences the alarm but leaves it enabled (it will ring again if the temperature is still outside the threshold)

Examples:
# Set the pit low alarm to 200F
/set?al=200

# Set the pit low alarm to 200F and the high alarm to 250F
/set?al=200,250

# Leave the pit alarms where they are and set the Food1 alarm high to 180F
/set?al=,,,180

# Disable the pit low alarm (the 200 doesn't really matter)
/set?al=-200

All of those can be set from the configuration page. The "/set?" is optional when used from that page.
 

 

Back
Top